/* ===================================
   CONTACT SECTION - CLEANFOLDZ
   Dark theme footer with brand info,
   contact details, and email subscription
   =================================== */

/* Logo Text Styles */
.navbar-logo a {
  font-size: 24px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}

.logo-clean {
  color: #29abe2;
}

.logo-foldz {
  color: #6aa82f;
}

.mobile-logo a {
  font-size: 24px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}

/* Contact Section */
.contact-section {
  background: #0B1C2C;
  color: #fff;
  padding: 60px 24px;
  font-family: 'Inter', sans-serif;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Footer Contact Section - 3 Column Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* Contact Form Section - 2 Column Layout */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-form-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
  }
}

/* Contact Column */
.contact-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Brand Info */
.brand-info {
  margin-bottom: 8px;
}

.contact-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.company-tagline {
  font-size: 12px;
  color: #9CA3AF;
  margin: 0;
}

.brand-description {
  font-size: 14px;
  color: #D1D5DB;
  line-height: 1.6;
  margin: 0;
}

/* Legal Links */
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-link {
  font-size: 14px;
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}

.legal-link:hover {
  color: #fff;
}

/* Copyright */
.copyright {
  font-size: 12px;
  color: #6B7280;
  margin: 0;
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 12px;
  color: #9CA3AF;
  margin: 0 0 4px 0;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-email {
  font-size: 14px;
  color: #6aa82f;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}

.contact-email:hover {
  color: #6B8E42;
}

.contact-phone {
  font-size: 14px;
  color: #29abe2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-phone:hover {
  color: #0088CC;
}

/* Subscription Section */
.subscription-header {
  margin-bottom: 8px;
}

.contact-heading-small {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.subscription-text {
  font-size: 14px;
  color: #D1D5DB;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.subscription-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Email Input */
.email-input {
  width: 100%;
  padding: 10px 16px;
  border-radius: 8px;
  background: #1F2937;
  border: 1px solid #374151;
  color: #fff;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
}

.email-input::placeholder {
  color: #6B7280;
}

.email-input:focus {
  outline: none;
  border-color: #29abe2;
  box-shadow: 0 0 0 1px #29abe2;
}

/* Subscribe Button */
.subscribe-button {
  width: 100%;
  padding: 10px 24px;
  background: #29abe2;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.subscribe-button:hover {
  background: #1D4ED8;
}

.subscribe-button:active {
  transform: scale(0.98);
}

.subscribe-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .contact-section {
    padding: 40px 20px;
  }
  
  .contact-grid {
    gap: 36px;
  }
  
  .contact-heading {
    font-size: 16px;
  }
  
  .contact-heading-small {
    font-size: 15px;
  }
}
