 :root {
      --navy: #0d1b2a;
      --navy-mid: #1b2d42;
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --cream: #f7f3ec;
      --white: #ffffff;
      --gray: #6b7280;
      --light-gray: #f0ede8;
      --green: #1a6b4a;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--navy);
      overflow-x: hidden;
    }

    /* TOP BAR */
    .top-bar {
      background: var(--navy);
      padding: 10px 0;
      border-bottom: 1px solid rgba(201,168,76,0.3);
    }
    .top-bar .inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }
    .top-bar .contacts {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
    }
    .top-bar .contact-item {
      display: flex;
      align-items: center;
      gap: 7px;
      color: rgba(255,255,255,0.75);
      font-size: 13px;
    }
    .top-bar .contact-item span.icon {
      color: var(--gold);
      font-size: 14px;
    }
    .top-bar .contact-item a { color: inherit; text-decoration: none; }
    .top-bar .socials { display: flex; gap: 14px; }
    .top-bar .socials a {
      color: rgba(255,255,255,0.5);
      font-size: 13px;
      text-decoration: none;
      transition: color 0.2s;
    }
    .top-bar .socials a:hover { color: var(--gold); }

    /* NAV */
    nav {
      background: var(--white);
      box-shadow: 0 2px 20px rgba(13,27,42,0.08);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    nav .inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--navy);
      text-decoration: none;
      letter-spacing: -0.5px;
    }
    .logo span { color: var(--gold); }
    nav ul {
      list-style: none;
      display: flex;
      gap: 8px;
      align-items: center;
    }
    nav ul li a {
      text-decoration: none;
      color: var(--navy);
      font-size: 14px;
      font-weight: 500;
      padding: 8px 14px;
      border-radius: 6px;
      transition: all 0.2s;
    }
    nav ul li a:hover { background: var(--light-gray); color: var(--gold); }
    .nav-cta {
      background: var(--gold) !important;
      color: var(--navy) !important;
      font-weight: 600 !important;
      padding: 10px 22px !important;
    }
    .nav-cta:hover { background: var(--gold-light) !important; }

    /* HERO */
    .hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3550 100%);
      min-height: 88vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -100px; left: -50px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero .grid-lines {
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }
    .hero .inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .hero-text .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201,168,76,0.15);
      border: 1px solid rgba(201,168,76,0.3);
      color: var(--gold-light);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 28px;
      animation: fadeUp 0.6s ease both;
    }
    .hero-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(38px, 5vw, 62px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 24px;
      animation: fadeUp 0.6s 0.1s ease both;
    }
    .hero-text h1 em {
      font-style: normal;
      color: var(--gold);
    }
    .hero-text p {
      color: rgba(255,255,255,0.65);
      font-size: 17px;
      line-height: 1.7;
      margin-bottom: 40px;
      animation: fadeUp 0.6s 0.2s ease both;
    }
    .hero-btns {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      animation: fadeUp 0.6s 0.3s ease both;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      border: none;
      padding: 14px 32px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.3);
      padding: 14px 32px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
    .hero-card {
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 20px;
      padding: 40px;
      animation: fadeUp 0.7s 0.2s ease both;
    }
    .hero-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 32px;
    }
    .stat-box {
      text-align: center;
      padding: 24px 16px;
      background: rgba(255,255,255,0.06);
      border-radius: 12px;
      border: 1px solid rgba(201,168,76,0.15);
    }
    .stat-box .num {
      font-family: 'Playfair Display', serif;
      font-size: 38px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      display: block;
    }
    .stat-box .label { color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 6px; }
    .hero-trust {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .trust-avatars { display: flex; }
    .trust-avatars .av {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 2px solid var(--navy-mid);
      background: linear-gradient(135deg, var(--gold) 0%, #8b6914 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      margin-left: -10px;
    }
    .trust-avatars .av:first-child { margin-left: 0; }
    .trust-text { color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.4; }
    .trust-text strong { color: var(--gold-light); }

    /* STATS BAR */
    .stats-bar {
      background: var(--white);
      border-bottom: 1px solid #e8e2d9;
      padding: 32px 0;
    }
    .stats-bar .inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .stats-bar .item {
      text-align: center;
      padding: 0 20px;
      border-right: 1px solid #e8e2d9;
    }
    .stats-bar .item:last-child { border-right: none; }
    .stats-bar .item .num {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--navy);
    }
    .stats-bar .item .lbl { font-size: 13px; color: var(--gray); margin-top: 4px; }

    /* SECTION STYLES */
    section { padding: 90px 0; }
    .inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 4vw, 46px);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .section-sub {
      color: var(--gray);
      font-size: 16px;
      line-height: 1.7;
      max-width: 540px;
    }

    /* SERVICES */
    .services { background: var(--cream); }
    .services .header { margin-bottom: 56px; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .service-card {
      background: var(--white);
      border-radius: 16px;
      padding: 36px 32px;
      border: 1px solid #e8e2d9;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,27,42,0.1); border-color: transparent; }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      width: 54px; height: 54px;
      background: var(--light-gray);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 24px;
      transition: background 0.3s;
    }
    .service-card:hover .service-icon { background: rgba(201,168,76,0.15); }
    .service-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 12px;
    }
    .service-card p { color: var(--gray); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
    .service-link {
      color: var(--gold);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .service-link:hover { gap: 10px; }

    /* ABOUT */
    .about { background: var(--white); }
    .about .inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about-visual {
      position: relative;
    }
    .about-big-box {
      background: var(--navy);
      border-radius: 20px;
      padding: 50px 40px;
      color: white;
      position: relative;
      overflow: hidden;
    }
    .about-big-box::after {
      content: '§';
      position: absolute;
      bottom: -20px; right: 20px;
      font-size: 160px;
      color: rgba(201,168,76,0.08);
      font-family: 'Playfair Display', serif;
    }
    .about-big-box .big-num {
      font-family: 'Playfair Display', serif;
      font-size: 72px;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }
    .about-big-box p { color: rgba(255,255,255,0.7); margin-top: 8px; font-size: 15px; }
    .about-mini-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 16px;
    }
    .mini-card {
      background: var(--light-gray);
      border-radius: 14px;
      padding: 22px 18px;
      border: 1px solid #e8e2d9;
    }
    .mini-card .icon { font-size: 22px; margin-bottom: 10px; }
    .mini-card h4 { font-size: 14px; font-weight: 600; color: var(--navy); }
    .mini-card span { font-size: 12px; color: var(--gray); }
    .about-content .section-sub { margin-bottom: 32px; }
    .feature-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 15px;
      color: var(--navy);
    }
    .feature-list li .check {
      width: 22px; height: 22px;
      background: rgba(26,107,74,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--green);
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* PROCESS */
    .process { background: var(--navy); }
    .process .section-title { color: var(--white); }
    .process .section-sub { color: rgba(255,255,255,0.55); }
    .process .header { margin-bottom: 56px; }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 32px;
      left: 12.5%;
      right: 12.5%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), rgba(201,168,76,0.4), transparent);
    }
    .step {
      text-align: center;
      padding: 0 20px;
      position: relative;
    }
    .step-num {
      width: 64px; height: 64px;
      border-radius: 50%;
      border: 2px solid rgba(201,168,76,0.4);
      background: var(--navy-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--gold);
      margin: 0 auto 24px;
      position: relative;
      z-index: 1;
    }
    .step h4 {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 10px;
    }
    .step p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

    /* PRICING */
    .pricing { background: var(--cream); }
    .pricing .header { margin-bottom: 56px; }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: start;
    }
    .pricing-card {
      background: var(--white);
      border-radius: 20px;
      padding: 40px 32px;
      border: 1px solid #e8e2d9;
      transition: all 0.3s;
    }
    .pricing-card.featured {
      background: var(--navy);
      border-color: var(--gold);
      transform: scale(1.04);
      box-shadow: 0 24px 60px rgba(13,27,42,0.2);
    }
    .pricing-card:not(.featured):hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,27,42,0.08); }
    .plan-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .featured .plan-label { color: var(--gold-light); }
    .plan-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 8px;
    }
    .plan-price .currency { font-size: 20px; color: var(--gray); font-weight: 500; }
    .plan-price .amount {
      font-family: 'Playfair Display', serif;
      font-size: 52px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
    }
    .featured .plan-price .amount { color: var(--white); }
    .featured .plan-price .currency { color: rgba(255,255,255,0.5); }
    .plan-period { font-size: 13px; color: var(--gray); margin-bottom: 28px; }
    .featured .plan-period { color: rgba(255,255,255,0.5); }
    .plan-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
    .plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--navy); }
    .featured .plan-features li { color: rgba(255,255,255,0.75); }
    .plan-features li::before { content: '✓'; color: var(--green); font-weight: 700; }
    .featured .plan-features li::before { color: var(--gold); }
    .btn-plan {
      display: block;
      text-align: center;
      padding: 14px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
      border: 1.5px solid var(--navy);
      color: var(--navy);
      background: transparent;
    }
    .btn-plan:hover { background: var(--navy); color: var(--white); }
    .featured .btn-plan { background: var(--gold); color: var(--navy); border-color: var(--gold); }
    .featured .btn-plan:hover { background: var(--gold-light); border-color: var(--gold-light); }

    /* TEAM */
    .team { background: var(--white); }
    .team .header { margin-bottom: 56px; }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .team-card {
      text-align: center;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid #e8e2d9;
      transition: all 0.3s;
    }
    .team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(13,27,42,0.1); }
    .team-avatar {
      height: 180px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 52px;
      font-weight: 700;
      color: var(--gold);
      position: relative;
    }
    .team-card-info { padding: 20px 16px; }
    .team-card-info h4 {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
    }
    .team-card-info .role { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
    .team-card-info .meta { font-size: 12px; color: var(--gray); margin-top: 10px; }

    /* TESTIMONIALS */
    .testimonials { background: var(--light-gray); }
    .testimonials .header { margin-bottom: 56px; }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testi-card {
      background: var(--white);
      border-radius: 16px;
      padding: 32px;
      border: 1px solid #e8e2d9;
      transition: all 0.3s;
    }
    .testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,27,42,0.08); }
    .stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
    .testi-card p { font-size: 15px; color: var(--navy); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-av {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--navy) 0%, var(--gold) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
    }
    .testi-author h5 { font-size: 14px; font-weight: 600; color: var(--navy); }
    .testi-author span { font-size: 12px; color: var(--gray); }

    /* BLOG */
    .blog { background: var(--cream); }
    .blog .header { margin-bottom: 56px; }
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .blog-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid #e8e2d9;
      transition: all 0.3s;
    }
    .blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,27,42,0.08); }
    .blog-img {
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 52px;
    }
    .blog-img.b1 { background: linear-gradient(135deg, #0d3b2a, #1a6b4a); }
    .blog-img.b2 { background: linear-gradient(135deg, #0d1b2a, #1b2d42); }
    .blog-img.b3 { background: linear-gradient(135deg, #2a1a0d, #4a3010); }
    .blog-content { padding: 24px; }
    .blog-meta { font-size: 12px; color: var(--gray); margin-bottom: 10px; }
    .blog-meta a { color: var(--gold); text-decoration: none; }
    .blog-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.4;
      margin-bottom: 16px;
    }
    .blog-link { color: var(--gold); font-size: 13px; font-weight: 600; text-decoration: none; }

    /* CTA BAND */
    .cta-band {
      background: linear-gradient(135deg, var(--gold) 0%, #a07828 100%);
      padding: 70px 0;
    }
    .cta-band .inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
    .cta-band h2 {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--navy);
    }
    .cta-band p { color: rgba(13,27,42,0.7); font-size: 16px; margin-top: 8px; }
    .btn-dark {
      background: var(--navy);
      color: var(--white);
      border: none;
      padding: 16px 36px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
      white-space: nowrap;
    }
    .btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,27,42,0.3); }

    /* NEWSLETTER */
    .newsletter { background: var(--white); padding: 70px 0; }
    .newsletter .inner { text-align: center; max-width: 560px; margin: 0 auto; padding: 0 24px; }
    .newsletter h2 {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .newsletter p { color: var(--gray); font-size: 15px; margin-bottom: 28px; }
    .sub-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
    .sub-form input {
      flex: 1;
      min-width: 260px;
      padding: 14px 20px;
      border: 1.5px solid #e8e2d9;
      border-radius: 10px;
      font-size: 15px;
      font-family: 'DM Sans', sans-serif;
      color: var(--navy);
      background: var(--cream);
      outline: none;
      transition: border-color 0.2s;
    }
    .sub-form input:focus { border-color: var(--gold); }
    .sub-form button {
      background: var(--gold);
      color: var(--navy);
      border: none;
      padding: 14px 28px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      transition: all 0.2s;
    }
    .sub-form button:hover { background: var(--gold-light); }

    /* FOOTER */
    footer {
      background: var(--navy);
      padding: 70px 0 0;
    }
    footer .grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 48px;
      padding-bottom: 50px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    footer .logo { color: var(--white); display: block; margin-bottom: 16px; }
    footer .logo span { color: var(--gold); }
    footer .foot-desc { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
    .foot-socials { display: flex; gap: 12px; }
    .foot-socials a {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      font-size: 14px;
      transition: all 0.2s;
    }
    .foot-socials a:hover { border-color: var(--gold); color: var(--gold); }
    footer h5 {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    footer ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.2s; }
    footer ul li a:hover { color: var(--gold-light); }
    .foot-contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
    .foot-contact-item .icon { color: var(--gold); font-size: 14px; margin-top: 2px; }
    .foot-contact-item h6 { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 400; margin-bottom: 2px; }
    .foot-contact-item p { font-size: 14px; color: rgba(255,255,255,0.7); }
    .foot-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 0;
      flex-wrap: wrap;
      gap: 12px;
    }
    .foot-bottom p { color: rgba(255,255,255,0.35); font-size: 13px; }
    .foot-bottom ul { list-style: none; display: flex; gap: 20px; }
    .foot-bottom ul li a { color: rgba(255,255,255,0.35); font-size: 13px; text-decoration: none; }
    .foot-bottom ul li a:hover { color: var(--gold); }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 900px) {
      .hero .inner { grid-template-columns: 1fr; gap: 40px; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .about .inner { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
      .process-steps::before { display: none; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
      .pricing-card.featured { transform: none; }
      .team-grid { grid-template-columns: 1fr 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr 1fr; }
      footer .grid { grid-template-columns: 1fr 1fr; }
      .stats-bar .inner { grid-template-columns: 1fr 1fr; }
      nav ul { display: none; }
    }

    @media (max-width: 600px) {
      .services-grid { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: 1fr 1fr; }
      footer .grid { grid-template-columns: 1fr; }
      .stats-bar .item { border-right: none; border-bottom: 1px solid #e8e2d9; padding-bottom: 20px; }
    }

    .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    display: block;
}
.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    width: 40px;
    height: 40px;
    /* background: #25D366; */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.socials a:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.socials i {
    font-size: 18px;
}