/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --color-primary: #2d3b60;       /* Dark Blue */
  --color-accent: #9d7d4f;        /* Golden */
  --color-accent-light: #f7f3ed;  /* Very Light Golden/Cream */
  --color-bg-primary: #ffffff;    /* Pure White */
  --color-bg-secondary: #f4f6f9;  /* Light slate blue tint */
  --color-text-dark: #1e2538;     /* Dark Slate Text */
  --color-text-muted: #626f8a;    /* Muted Text */
  --color-border: #e2e8f0;        /* Slate Border */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --shadow-sm: 0 1px 3px rgba(45, 59, 96, 0.05), 0 1px 2px rgba(45, 59, 96, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(45, 59, 96, 0.08), 0 2px 4px -1px rgba(45, 59, 96, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(45, 59, 96, 0.08), 0 4px 6px -2px rgba(45, 59, 96, 0.04);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
}

/* Reset and Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-primary);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--color-primary);
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--color-border);
}

.section-bg-alt {
  background-color: var(--color-bg-secondary);
}

/* Navigation Bar */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Typography-based Logo */
.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--color-primary);
  line-height: 1.1;
}

.logo-main span {
  color: var(--color-accent);
}

.logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}

.logo-meta {
  font-size: 0.6rem;
  color: var(--color-accent);
  font-weight: 600;
}

/* Nav Menu */
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-primary);
}

nav a:hover, nav a.active {
  color: var(--color-accent);
}

.btn-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e2846 100%);
  color: #fff !important;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.btn-cta:hover {
  background: linear-gradient(135deg, var(--color-accent) 0%, #856941 100%);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, var(--color-accent-light) 0%, var(--color-bg-primary) 100%);
  padding: 8rem 0 6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-title span {
  background: linear-gradient(120deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: #fff !important;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(157, 125, 79, 0.4);
}

.btn-primary:hover {
  background-color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(45, 59, 96, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--color-primary) !important;
  border: 2px solid var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 30px;
}

.btn-secondary:hover {
  background-color: rgba(45, 59, 96, 0.05);
  transform: translateY(-2px);
}

.hero-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px dashed rgba(157, 125, 79, 0.2);
  border-radius: 30px;
  z-index: -1;
  pointer-events: none;
}

.hero-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hero-card-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  margin-top: 1.5rem;
  padding-top: 1rem;
}

/* Service Cards Grid */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-light);
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-accent);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Contact Us Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-info-card {
  background-color: var(--color-primary);
  color: #fff;
  border-radius: var(--border-radius);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-info-card::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(157, 125, 79, 0.15);
  pointer-events: none;
}

.contact-info-card h3 {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-item-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
}

.contact-item-text strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-accent);
  margin-bottom: 0.2rem;
}

.contact-item-text p, .contact-item-text a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-item-text a:hover {
  color: var(--color-accent);
}

.legal-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: auto;
}

.legal-label span {
  color: var(--color-accent);
  font-weight: 600;
}

/* Contact Form Card */
.contact-form-card {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(157, 125, 79, 0.1);
}

.whatsapp-disclosure {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin: 1.25rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

.whatsapp-disclosure input {
  margin-top: 0.15rem;
}

.btn-submit {
  width: 100%;
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-submit:hover {
  background-color: var(--color-accent);
}

/* Legal Documents Section (Privacy Policy and Terms of Service) */
.legal-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.legal-tabs {
  position: sticky;
  top: 100px;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 1.5rem;
}

.legal-tab-btn {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.legal-tab-btn:last-child {
  margin-bottom: 0;
}

.legal-tab-btn.active {
  background-color: var(--color-accent);
  color: #fff;
}

.legal-tab-btn:hover:not(.active) {
  background-color: var(--color-accent-light);
  color: var(--color-accent);
}

.legal-content-card {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
}

.legal-pane {
  display: none;
}

.legal-pane.active {
  display: block;
}

.legal-pane h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-accent-light);
  padding-bottom: 1rem;
}

.legal-pane h3 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
}

.legal-pane p, .legal-pane ul {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  margin-bottom: 1.25rem;
}

.legal-pane ul {
  padding-left: 1.5rem;
}

.legal-pane li {
  margin-bottom: 0.5rem;
}

.highlight-box {
  background-color: var(--color-accent-light);
  border-left: 4px solid var(--color-accent);
  padding: 1.25rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.highlight-box strong {
  color: var(--color-primary);
}

/* Footer Styles */
footer {
  background-color: var(--color-primary);
  color: #fff;
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
}

.footer-brand h4 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact h4 {
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.75rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--color-accent);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .legal-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .legal-tabs {
    position: static;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.75rem;
  }

  .legal-tab-btn {
    margin-bottom: 0;
    white-space: nowrap;
    width: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0.5rem 0;
  }

  .header-container {
    height: auto;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }

  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .legal-content-card {
    padding: 2rem;
  }
}
