@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

.cs-footer {
  --bg-sand: #f2ebd9;
  --primary-dark: #2a2420;
  --primary-muted: #6e645a;
  --accent-gold: #c59b4e;
  --border-gold: rgba(197, 155, 78, 0.25);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  width: 100%;
  background: var(--bg-sand);
  border-top: 1px solid var(--border-gold);
  padding: 30px 60px 30px;
  position: relative;
  z-index: 10;
  font-family: var(--font-sans);
  text-align: left;
}
.cs-footer-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.cs-footer .footer-logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}
.cs-footer-about p {
  font-size: 15px;
  color: var(--primary-muted);
  max-width: 380px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.cs-footer .footer-tagline {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-gold);
  font-style: italic;
}
.cs-footer-links h5, .cs-footer-contact h5 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 20px;
  margin-top: 0;
}
.cs-footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.cs-footer-links a {
  text-decoration: none;
  font-size: 15px;
  color: var(--primary-muted);
  transition: var(--transition-smooth);
}
.cs-footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}
.cs-footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: var(--primary-muted);
}
.cs-footer-contact-details p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}
.cs-footer-contact-details i {
  color: var(--accent-gold);
  margin-top: 3px;
  font-size: 14px;
}
.cs-footer-bottom {
  max-width: 1440px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(110, 100, 90, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--primary-muted);
}
.cs-footer-legal-links {
  display: flex;
  gap: 24px;
}
.cs-footer-legal-links a {
  text-decoration: none;
  font-size: 14px;
  color: var(--primary-muted);
  transition: var(--transition-smooth);
}
.cs-footer-legal-links a:hover {
  color: var(--accent-gold);
}
.cs-footer-socials {
  display: flex;
  gap: 16px;
}
.cs-footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(110, 100, 90, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-muted);
  transition: var(--transition-smooth);
  text-decoration: none;
}
.cs-footer-socials a:hover {
  background: var(--accent-gold);
  color: white;
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.quick-links-col {
  display: none;
}

@media (min-width: 1400px) {
  .cs-footer-container {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  }
  .quick-links-col {
    display: block;
  }
}

@media (max-width: 768px) {
  .cs-footer {
    padding: 30px 24px;
  }
  .mobile-break {
    display: block;
    margin-top: 4px;
  }
  .cs-footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cs-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* --- CTA Consultation Section --- */
.cta-consultation-section {
  background: linear-gradient(135deg, #2a2420 0%, #1e1a17 100%);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(197, 155, 78, 0.2);
  border-bottom: 1px solid rgba(197, 155, 78, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  font-family: var(--font-sans);
  text-align: left;
}

/* Subtle background accent glow */
.cta-consultation-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 155, 78, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  transform: rotate(-15deg);
  pointer-events: none;
}

.cta-consultation-container {
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-consultation-content {
  max-width: 800px;
}

.cta-consultation-content .cta-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.cta-consultation-content .cta-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: #ffffff;
  margin: 0 0 15px 0;
  line-height: 1.3;
  font-weight: 600;
}

.cta-consultation-content .cta-description {
  font-size: 16px;
  color: #d1c7bd;
  line-height: 1.7;
  margin: 0;
}

.cta-consultation-actions {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.cta-consultation-actions .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.cta-consultation-actions .primary-cta {
  background-color: var(--accent-gold);
  color: #ffffff;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 4px 15px rgba(197, 155, 78, 0.2);
}

.cta-consultation-actions .primary-cta:hover {
  background-color: #dcb365;
  border-color: #dcb365;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197, 155, 78, 0.35);
}

.cta-consultation-actions .secondary-cta {
  background-color: transparent;
  color: var(--accent-gold);
  border: 1px solid rgba(197, 155, 78, 0.5);
}

.cta-consultation-actions .secondary-cta:hover {
  background-color: rgba(197, 155, 78, 0.1);
  border-color: var(--accent-gold);
  color: #ffffff;
  transform: translateY(-3px);
}

.cta-consultation-actions .secondary-cta i {
  margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .cta-consultation-section {
    padding: 60px 40px;
  }
  .cta-consultation-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .cta-consultation-content {
    text-align: center;
    max-width: 100%;
  }
  .cta-consultation-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .cta-consultation-section {
    padding: 50px 24px;
  }
}

@media (max-width: 576px) {
  .cta-consultation-content .cta-title {
    font-size: 1.8rem;
  }
  .cta-consultation-actions {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .cta-consultation-actions .cta-btn {
    width: 100%;
  }
}

