/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 22-Feb-2026, 7:27:51 PM
    Author     : Acer
*/

:root {
    --sand: #F5EFE0;
    --deep: #1A1209;
    --gold: #C8973A;
    --gold-light: #E8B95A;
    --teal: #1D6A6A;
    --teal-light: #2A8F8F;
    --cream: #FAF6EE;
    --text: #2D2416;
    --muted: #7A6E5F;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(250,246,238,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200,151,58,0.2);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 900;
    color: var(--deep);
    letter-spacing: -0.5px;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--text);
    font-size: 0.9rem; font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--teal); color: white;
    padding: 0.6rem 1.4rem; border-radius: 6px;
    text-decoration: none; font-size: 0.9rem; font-weight: 600;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--teal-light); }

  /* DROPDOWN */
  .nav-links li { position: relative; }
  .nav-links li .dropdown {
    display: none;
    position: absolute; top: calc(100% + 12px); left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid rgba(200,151,58,0.2);
    border-radius: 10px;
    padding: 0.5rem 0;
    min-width: 180px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateX(-50%) translateY(-6px);
  }
  .nav-links li:hover .dropdown,
  .nav-links li .dropdown.open {
    display: block;
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }
  .nav-links li .dropdown::before {
    content: '';
    position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(200,151,58,0.2);
  }
  .nav-links li .dropdown a {
    display: block; padding: 0.55rem 1.2rem;
    font-size: 0.88rem; color: var(--text);
    text-decoration: none; transition: background 0.15s, color 0.15s;
    white-space: nowrap;
  }
  .nav-links li .dropdown a:hover { background: var(--cream); color: var(--gold); }
  .has-dropdown > a { display: flex; align-items: center; gap: 0.3rem; cursor: pointer; }
  .has-dropdown > a::after { content: '▾'; font-size: 0.7rem; opacity: 0.6; }

  /* HAMBURGER */
  .hamburger {
    display: none;
    flex-direction: column; gap: 5px; cursor: pointer;
    padding: 4px; background: none; border: none;
    z-index: 1001;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--deep); border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* MOBILE NAV OVERLAY */
  .mobile-nav {
    display: none;
    position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
    background: rgba(250,246,238,0.98);
    backdrop-filter: blur(16px);
    z-index: 999;
    padding: 2rem 8%;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav a {
    display: block; text-decoration: none;
    color: var(--text); font-size: 1.2rem; font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(200,151,58,0.12);
    transition: color 0.2s;
  }
  .mobile-nav a:hover { color: var(--gold); }
  .mobile-nav .mobile-sub {
    padding-left: 1.2rem;
  }
  .mobile-nav .mobile-sub a {
    font-size: 1rem; color: var(--muted);
    padding: 0.65rem 0;
  }
  .mobile-nav .mobile-group-label {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px;
    color: var(--gold); font-weight: 600;
    padding: 1.2rem 0 0.4rem; border-bottom: none;
    pointer-events: none;
  }
  .mobile-nav .nav-cta-mobile {
    margin-top: 2rem;
    background: var(--teal); color: white !important;
    text-align: center; border-radius: 10px;
    padding: 1rem !important; font-weight: 700 !important;
    border-bottom: none !important;
    font-size: 1rem !important;
  }
  .mobile-nav .nav-cta-mobile:hover { background: var(--teal-light) !important; color: white !important; }

  /* HERO */
  #home {
    min-height: 100vh;
    background: var(--deep);
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 8% 80px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(29,106,106,0.3) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(200,151,58,0.15) 0%, transparent 50%);
  }
  .hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(200,151,58,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .hero-content { position: relative; z-index: 1; max-width: 680px; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(200,151,58,0.15);
    border: 1px solid rgba(200,151,58,0.3);
    color: var(--gold-light);
    padding: 0.4rem 1rem; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeUp 0.6s ease both;
  }
  .hero-badge::before { content: '✦'; }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900; line-height: 1.05;
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.7s ease 0.1s both;
  }
  .hero-title em { color: var(--gold); font-style: normal; }
  .hero-sub {
    font-size: 1.15rem; color: rgba(255,255,255,0.65);
    line-height: 1.7; margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeUp 0.7s ease 0.2s both;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.7s ease 0.3s both; }
  .btn-primary {
    background: var(--gold); color: var(--deep);
    padding: 0.85rem 2rem; border-radius: 8px;
    text-decoration: none; font-weight: 700; font-size: 1rem;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(200,151,58,0.4);
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline {
    border: 1px solid rgba(255,255,255,0.3); color: white;
    padding: 0.85rem 2rem; border-radius: 8px;
    text-decoration: none; font-weight: 500; font-size: 1rem;
    transition: all 0.2s;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .hero-stats {
    display: flex; gap: 3rem; margin-top: 4rem;
    animation: fadeUp 0.7s ease 0.4s both;
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 900; color: var(--gold);
  }
  .stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

  /* SECTIONS */
  section { padding: 100px 8%; }
  .section-tag {
    display: inline-block;
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
    color: var(--gold); margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900; line-height: 1.15;
    color: var(--deep); margin-bottom: 1.2rem;
  }
  .section-sub {
    font-size: 1.05rem; color: var(--muted);
    line-height: 1.7; max-width: 580px;
  }

  /* FEATURES */
  #features { background: white; }
  .features-header { text-align: center; margin-bottom: 70px; }
  .features-header .section-sub { margin: 0 auto; }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  .feature-card {
    background: var(--cream);
    border: 1px solid rgba(200,151,58,0.15);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden;
  }
  .feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    opacity: 0; transition: opacity 0.3s;
  }
  .feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
  .feature-card:hover::before { opacity: 1; }
  .feature-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 1.5rem;
  }
  .feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; margin-bottom: 0.8rem; color: var(--deep);
  }
  .feature-card p { color: var(--muted); line-height: 1.65; font-size: 0.95rem; }

  /* HOW IT WORKS */
  #about { background: var(--cream); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
  .steps { display: flex; flex-direction: column; gap: 2rem; }
  .step { display: flex; gap: 1.5rem; align-items: flex-start; }
  .step-num {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--teal); color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
    font-family: 'Playfair Display', serif;
  }
  .step-text h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--deep); }
  .step-text p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
  .about-visual {
    background: var(--deep);
    border-radius: 24px;
    padding: 3rem;
    position: relative; overflow: hidden;
  }
  .about-visual::before {
    content: '';
    position: absolute; top: -50%; right: -30%;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(29,106,106,0.4), transparent);
  }
  .mock-ui { position: relative; z-index: 1; }
  .mock-header { background: rgba(255,255,255,0.08); border-radius: 10px; padding: 1rem 1.2rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.8rem; }
  .mock-dot { width: 8px; height: 8px; border-radius: 50%; }
  .mock-title { color: rgba(255,255,255,0.7); font-size: 0.8rem; }
  .mock-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 1rem 1.2rem; margin-bottom: 0.8rem; }
  .mock-card-top { display: flex; justify-content: space-between; margin-bottom: 0.5rem; }
  .mock-tag { font-size: 0.7rem; color: var(--gold-light); background: rgba(200,151,58,0.15); padding: 0.2rem 0.6rem; border-radius: 20px; }
  .mock-label { color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500; }
  .mock-bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-top: 0.5rem; }
  .mock-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--gold), var(--teal-light)); }

  /* PRICING */
  #plans { background: white; }
  .plans-header { text-align: center; margin-bottom: 60px; }
  .plans-header .section-sub { margin: 0 auto; }
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem; max-width: 1000px; margin: 0 auto;
  }
  .plan-card {
    border: 1.5px solid rgba(200,151,58,0.2);
    border-radius: 20px; padding: 2.5rem;
    position: relative; transition: transform 0.3s;
    background: var(--cream);
  }
  .plan-card:hover { transform: translateY(-6px); }
  .plan-card.popular {
    border-color: var(--teal);
    background: var(--deep);
    transform: scale(1.03);
  }
  .plan-card.popular:hover { transform: scale(1.03) translateY(-6px); }
  .popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: var(--deep);
    font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 0.3rem 1rem; border-radius: 20px;
  }
  .plan-name { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; color: var(--gold); margin-bottom: 0.5rem; }
  .plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 900; line-height: 1;
    color: var(--deep); margin-bottom: 0.3rem;
  }
  .plan-card.popular .plan-price { color: white; }
  .plan-price span { font-size: 1rem; font-weight: 400; font-family: 'DM Sans', sans-serif; color: var(--muted); }
  .plan-card.popular .plan-price span { color: rgba(255,255,255,0.5); }
  .plan-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 2rem; }
  .plan-card.popular .plan-desc { color: rgba(255,255,255,0.55); }
  .plan-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
  .plan-features li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.9rem; color: var(--text); }
  .plan-card.popular .plan-features li { color: rgba(255,255,255,0.8); }
  .plan-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
  .plan-card.popular .plan-features li::before { color: var(--gold); }
  .plan-btn {
    display: block; text-align: center;
    background: var(--teal); color: white;
    padding: 0.85rem; border-radius: 10px;
    text-decoration: none; font-weight: 600;
    transition: background 0.2s;
  }
  .plan-btn:hover { background: var(--teal-light); }
  .plan-card.popular .plan-btn { background: var(--gold); color: var(--deep); }
  .plan-card.popular .plan-btn:hover { background: var(--gold-light); }

  /* TERMS & POLICY combined */
  .legal-section { background: var(--cream); }
  .legal-section:nth-of-type(even) { background: white; }
  .legal-content { max-width: 780px; }
  .legal-content h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin: 2rem 0 0.6rem; color: var(--deep); }
  .legal-content p { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; font-size: 0.95rem; }
  .legal-content ul { margin: 0.5rem 0 1rem 1.5rem; color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

  /* CONTACT */
  #contact { background: var(--deep); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .contact-info .section-title { color: white; }
  .contact-info .section-sub { color: rgba(255,255,255,0.5); }
  .contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
  .contact-item { display: flex; align-items: center; gap: 1rem; }
  .contact-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
  .contact-item span { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
  .contact-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2.5rem; }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; font-weight: 500; }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px; padding: 0.8rem 1rem;
    color: white; font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
    outline: none; transition: border-color 0.2s;
  }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
  .form-group select option { background: var(--deep); }
  .form-group textarea { height: 120px; resize: vertical; }
  .form-submit {
    width: 100%; background: var(--gold); color: var(--deep);
    border: none; padding: 0.9rem; border-radius: 10px;
    font-weight: 700; font-size: 1rem; cursor: pointer;
    transition: background 0.2s;
    font-family: 'DM Sans', sans-serif;
  }
  .form-submit:hover { background: var(--gold-light); }

  /* FOOTER */
  footer {
    background: #0F0C06;
    padding: 60px 8% 30px;
  }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.9rem; line-height: 1.7; margin-top: 1rem; max-width: 260px; }
  .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900; color: white; }
  .footer-logo span { color: var(--gold); }
  .footer-col h4 { color: white; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.2rem; }
  .footer-col a { display: block; color: rgba(255,255,255,0.45); font-size: 0.9rem; text-decoration: none; margin-bottom: 0.7rem; transition: color 0.2s; }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom { padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.85rem; }

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

  /* Mobile */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: flex; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 2rem; }
    .plan-card.popular { transform: scale(1); }
  }

  /* Divider */
  .divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    border-radius: 2px; margin: 1rem 0 1.5rem;
  }
