
    /* --- CSS VARIABLES & RESET --- */
    :root {
      --primary-navy: #0a192f;
      --secondary-navy: #112240;
      --accent-gold: #d4af37;
      --light-gold: #f3e5ab;
      --text-grey: #8892b0;
      --white: #ffffff;
      --off-white: #f8f9fa;
      --shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
      --transition: all 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text-grey);
      background-color: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: 'Playfair Display', serif;
      color: var(--primary-navy);
      font-weight: 700;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    ul {
      list-style: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* --- UTILITIES --- */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section-padding {
      padding: 100px 0;
    }

    .text-center {
      text-align: center;
    }

    .gold-text {
      color: var(--accent-gold);
    }

    .btn {
      display: inline-block;
      padding: 12px 30px;
      border-radius: 4px;
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition);
      border: 1px solid var(--accent-gold);
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .btn-primary {
      background-color: var(--accent-gold);
      color: var(--primary-navy);
    }

    .btn-primary:hover {
      background-color: transparent;
      color: var(--accent-gold);
    }

    .btn-outline {
      background-color: transparent;
      color: var(--accent-gold);
    }

    .btn-outline:hover {
      background-color: rgba(212, 175, 55, 0.1);
    }

    /* Section Title */
    .section-title {
      font-size: 2.5rem;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background: var(--accent-gold);
      margin: 15px auto 0;
    }

    /* --- HEADER & NAVIGATION --- */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(10, 25, 47, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 15px 0;
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
      transition: var(--transition);
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: var(--white);
      font-weight: 700;
    }

    .logo span {
      color: var(--accent-gold);
    }

    .nav-links {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .nav-links a {
      color: var(--white);
      font-size: 0.9rem;
      position: relative;
    }

    .nav-links a:hover {
      color: var(--accent-gold);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: var(--accent-gold);
      transition: var(--transition);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .mobile-toggle {
      display: none;
      color: var(--white);
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* --- HERO SECTION --- */
    .hero {
      height: 100vh;
      background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.7)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white);
      position: relative;
    }

    .hero-content {
      max-width: 800px;
      padding: 0 20px;
      animation: fadeInUp 1s ease-out;
    }

    .hero h1 {
      font-size: 3.5rem;
      color: var(--white);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 40px;
      color: #cbd5e1;
    }

    .hero-btns {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    /* Floating Icons Animation */
    .floating-icon {
      position: absolute;
      color: rgba(212, 175, 55, 0.1);
      font-size: 3rem;
      animation: float 6s ease-in-out infinite;
    }

    .icon-1 {
      top: 20%;
      left: 10%;
      animation-delay: 0s;
    }

    .icon-2 {
      bottom: 20%;
      right: 10%;
      animation-delay: 2s;
    }

    /* --- ABOUT SECTION --- */
    .about {
      background-color: var(--white);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .about-img {
      position: relative;
    }

    .about-img img {
      border-radius: 5px;
      box-shadow: var(--shadow);
    }

    .about-text h2 {
      margin-bottom: 20px;
    }

    .about-text p {
      margin-bottom: 20px;
    }

    .features-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 30px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .feature-item i {
      color: var(--accent-gold);
      font-size: 1.2rem;
    }

    /* --- SERVICES SECTION --- */
    .services {
      background-color: var(--off-white);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .service-card {
      background: var(--white);
      padding: 40px 30px;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
      text-align: center;
      border-bottom: 3px solid transparent;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow);
      border-bottom: 3px solid var(--accent-gold);
    }

    .service-icon {
      font-size: 3rem;
      color: var(--primary-navy);
      margin-bottom: 20px;
    }

    .service-card h3 {
      margin-bottom: 15px;
      font-size: 1.5rem;
    }

    /* --- WHY CHOOSE US --- */
    .why-us {
      background-color: var(--primary-navy);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .why-us .section-title {
      color: var(--white);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-top: 50px;
      text-align: center;
    }

    .stat-item {
      padding: 20px;
    }

    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      color: var(--accent-gold);
      margin-bottom: 10px;
      display: block;
    }

    /* --- FEATURES SECTION --- */
    .features-list-alt {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .feature-box {
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .feature-box i {
      font-size: 1.5rem;
      color: var(--accent-gold);
      margin-top: 5px;
    }

    /* --- TESTIMONIALS --- */
    .testimonials {
      background-color: var(--off-white);
      text-align: center;
    }

    .testimonial-slider {
      max-width: 800px;
      margin: 50px auto 0;
      position: relative;
      overflow: hidden;
      min-height: 250px;
    }

    .testimonial-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
      padding: 20px;
    }

    .testimonial-slide.active {
      opacity: 1;
      position: relative;
    }

    .client-img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 20px;
      border: 3px solid var(--accent-gold);
    }

    .stars {
      color: var(--accent-gold);
      margin-bottom: 15px;
    }

    .client-name {
      font-weight: 600;
      color: var(--primary-navy);
      margin-top: 15px;
      display: block;
    }

    /* --- CONTACT SECTION --- */
    .contact {
      background: var(--white);
    }

    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 50px;
      margin-top: 50px;
      box-shadow: var(--shadow);
      border-radius: 10px;
      overflow: hidden;
    }

    .contact-info {
      background: var(--primary-navy);
      color: var(--white);
      padding: 40px;
    }

    .contact-info h3 {
      color: var(--accent-gold);
      margin-bottom: 20px;
    }

    .info-item {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
      gap: 15px;
    }

    .info-item i {
      color: var(--accent-gold);
      font-size: 1.2rem;
    }

    .contact-form {
      padding: 40px;
      background: var(--white);
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 15px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-family: 'Poppins', sans-serif;
      transition: var(--transition);
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--accent-gold);
      outline: none;
    }

    .map-placeholder {
      height: 200px;
      background: #ddd;
      margin-top: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #666;
      border-radius: 4px;
    }

    /* --- FOOTER --- */
    footer {
      background: var(--secondary-navy);
      color: var(--text-grey);
      padding: 60px 0 20px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-col h4 {
      color: var(--white);
      margin-bottom: 20px;
      font-size: 1.2rem;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul li a:hover {
      color: var(--accent-gold);
      padding-left: 5px;
    }

    .social-icons a {
      display: inline-block;
      width: 35px;
      height: 35px;
      background: rgba(255, 255, 255, 0.1);
      text-align: center;
      line-height: 35px;
      border-radius: 50%;
      margin-right: 10px;
      transition: var(--transition);
    }

    .social-icons a:hover {
      background: var(--accent-gold);
      color: var(--primary-navy);
    }

    .copyright {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.9rem;
    }

    .footer-links a {
      margin: 0 10px;
      font-size: 0.85rem;
    }

    .footer-links a:hover {
      color: var(--accent-gold);
      text-decoration: underline;
    }

    /* --- POPUP MODALS --- */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
    }

    .modal-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .modal-content {
      background: var(--white);
      padding: 40px;
      border-radius: 8px;
      max-width: 500px;
      width: 90%;
      position: relative;
      transform: translateY(-20px);
      transition: var(--transition);
      max-height: 80vh;
      overflow-y: auto;
    }

    .modal-overlay.open .modal-content {
      transform: translateY(0);
    }

    .close-modal {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--text-grey);
    }

    .modal-title {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: var(--primary-navy);
    }

    /* Success Message */
    .success-msg {
      background: #d4edda;
      color: #155724;
      padding: 15px;
      border-radius: 4px;
      margin-top: 15px;
      display: none;
      text-align: center;
      animation: fadeIn 0.5s ease;
    }

    /* --- ANIMATIONS --- */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes float {
      0% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-20px);
      }

      100% {
        transform: translateY(0px);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    /* Scroll Reveal Class */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* --- RESPONSIVE DESIGN --- */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 2.8rem;
      }

      .about-grid,
      .contact-wrapper {
        grid-template-columns: 1fr;
      }

      .contact-info {
        order: 2;
      }

      .contact-form {
        order: 1;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: var(--primary-navy);
        width: 250px;
        height: calc(100vh - 70px);
        padding: 40px;
        transition: var(--transition);
        align-items: flex-start;
      }

      .nav-links.active {
        right: 0;
      }

      .mobile-toggle {
        display: block;
      }

      .hero-btns {
        flex-direction: column;
      }

      .hero h1 {
        font-size: 2.2rem;
      }

      .section-title {
        font-size: 2rem;
      }
    }
  