    :root {
      --bg-dark: #1a1a2e;
      --bg-darker: #0f0f1e;
      --bg-card: #16213e;
      --gold: #d4af37;
      --rose-gold: #b76e79;
      --text-white: #ffffff;
      --text-gray: #e4e4e4;
      --text-muted: #a0a0a0;
      --whatsapp: #25d366;
    }

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

    body {
      font-family: 'Lato', sans-serif;
      background-color: var(--bg-dark);
      color: var(--text-gray);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: 'Cormorant Garamond', serif;
      color: var(--text-white);
      font-weight: 600;
    }

    .subheading {
      font-family: 'Raleway', sans-serif;
      text-transform: uppercase;
      letter-spacing: 3px;
      font-size: 0.9rem;
      color: var(--gold);
      margin-bottom: 1rem;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.4s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 20px 0;
      transition: all 0.5s ease;
      background: linear-gradient(to bottom, rgba(15, 15, 30, 0.9), transparent);
    }

    header.scrolled {
      background-color: var(--bg-darker);
      padding: 15px 0;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo img {
      height: 50px;
      /* Make logo natural colors instead of white */
    }

    .nav-links {
      display: flex;
      gap: 40px;
    }

    .nav-links a {
      font-family: 'Raleway', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--text-white);
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 1px;
      background-color: var(--gold);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .header-cta {
      border: 1px solid var(--gold);
      padding: 8px 20px;
      color: var(--gold) !important;
      border-radius: 0;
    }

    .header-cta:hover {
      background-color: var(--gold);
      color: var(--bg-dark) !important;
    }

    .header-cta::after {
      display: none;
    }

    /* Hamburger Menu */
    .hamburger {
      display: none;
      cursor: pointer;
      font-size: 1.8rem;
      color: var(--text-white);
      background: none;
      border: none;
      padding: 5px;
    }

    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      right: -100%;
      width: 300px;
      height: 100vh;
      background-color: var(--bg-darker);
      z-index: 1001;
      flex-direction: column;
      padding: 80px 40px;
      box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
      transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-nav.open {
      right: 0;
    }

    .mobile-nav a {
      font-family: 'Raleway', sans-serif;
      font-size: 1.2rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-white);
      margin-bottom: 25px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding-bottom: 15px;
    }

    .mobile-nav a:hover {
      color: var(--gold);
    }

    .mobile-nav-close {
      position: absolute;
      top: 30px;
      right: 30px;
      font-size: 2rem;
      color: var(--text-white);
      cursor: pointer;
      background: none;
      border: none;
    }

    /* Overlay */
    .nav-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 1000;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .nav-overlay.open {
      display: block;
      opacity: 1;
    }

    /* Hero Section */
    .hero {
      height: 100vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      z-index: 1;
      /* Establish stacking context to fix Webkit negative z-index bug */
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      z-index: -1;
      /* EZ Advisory styling: Darker base, high contrast */
      filter: brightness(0.65) contrast(1.15) saturate(1.1);
      transform: scale(1.05);
      /* Base scale to prevent edge clipping */
      will-change: transform;
    }

    /* Animation Keyframes */
    @keyframes elegantKenBurns {
      0% {
        transform: scale(1) translate(0px, 0px);
      }

      50% {
        transform: scale(1.05) translate(10px, 10px);
      }

      100% {
        transform: scale(1.1) translate(-10px, -20px);
      }
    }

    @keyframes zoomin {
      from {
        transform: scale(1) translate(0, 0);
      }

      to {
        transform: scale(1.2) translate(0, 0);
      }
    }

    @keyframes zoomout {
      from {
        transform: scale(1.2) translate(0, 0);
      }

      to {
        transform: scale(1) translate(0, 0);
      }
    }

    @keyframes fade {

      0%,
      100% {
        opacity: 0.6;
      }

      50% {
        opacity: 1;
      }
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* EZ Advisory styling: Dark radial/linear gradient blend */
      background: linear-gradient(to bottom, rgba(15, 15, 30, 0.4), rgba(15, 15, 30, 0.85));
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 0 20px;
    }

    .hero-tagline {
      font-family: 'Raleway', sans-serif;
      letter-spacing: 5px;
      font-size: 1rem;
      color: var(--gold);
      margin-bottom: 20px;
      text-transform: uppercase;
      display: block;
      animation: fadeInDown 1s ease-out;
    }

    .hero h1 {
      font-size: 5rem;
      line-height: 1.1;
      margin-bottom: 30px;
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
      animation: fadeInUp 1s ease-out 0.3s backwards;
    }

    .hero p {
      font-size: 1.2rem;
      font-weight: 300;
      margin-bottom: 50px;
      color: var(--text-gray);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      animation: fadeInUp 1s ease-out 0.6s backwards;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      animation: bounce 2s infinite;
      color: var(--text-white);
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      opacity: 0.7;
    }

    .scroll-line {
      width: 1px;
      height: 60px;
      background-color: var(--gold);
    }

    @keyframes bounce {

      0%,
      20%,
      50%,
      80%,
      100% {
        transform: translateY(0) translateX(-50%);
      }

      40% {
        transform: translateY(-10px) translateX(-50%);
      }

      60% {
        transform: translateY(-5px) translateX(-50%);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Buttons */
    .btn {
      display: inline-block;
      padding: 15px 40px;
      font-family: 'Raleway', sans-serif;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 0.8rem;
      font-weight: 600;
      transition: all 0.4s ease;
      cursor: pointer;
      border: 1px solid var(--gold);
    }

    .btn-gold {
      background-color: var(--gold);
      color: var(--bg-darker);
    }

    .btn-gold:hover {
      background-color: transparent;
      color: var(--gold);
    }

    .btn-outline {
      background-color: transparent;
      color: var(--gold);
    }

    .btn-outline:hover {
      background-color: var(--gold);
      color: var(--bg-darker);
    }

    /* Featured Projects - Asymmetric Grid */
    .section {
      padding: 100px 0;
      position: relative;
    }

    .featured-projects {
      background-color: var(--bg-darker);
    }

    .section-header {
      text-align: center;
      margin-bottom: 70px;
    }

    .section-header h2 {
      font-size: 3.5rem;
      margin-bottom: 15px;
      color: var(--text-white);
    }

    .grid-container {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(2, 400px);
      gap: 20px;
    }

    .grid-item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .grid-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
      filter: grayscale(20%);
    }

    .grid-item:hover img {
      transform: scale(1.1);
      filter: grayscale(0);
    }

    .project-info {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 30px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.4s ease;
    }

    .grid-item:hover .project-info {
      transform: translateY(0);
      opacity: 1;
    }

    .project-info h3 {
      font-size: 1.5rem;
      margin-bottom: 5px;
      color: var(--gold);
    }

    .project-info p {
      font-family: 'Raleway', sans-serif;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .item-1 {
      grid-column: 1 / 8;
      grid-row: 1 / 2;
    }

    .item-2 {
      grid-column: 8 / 13;
      grid-row: 1 / 2;
    }

    .item-3 {
      grid-column: 1 / 6;
      grid-row: 2 / 3;
    }

    .item-4 {
      grid-column: 6 / 13;
      grid-row: 2 / 3;
    }

    /* About Section */
    .about-section {
      background-color: var(--bg-dark);
      padding: 120px 0;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-quote {
      position: relative;
      padding-left: 40px;
      border-left: 2px solid var(--gold);
    }

    .about-quote h2 {
      font-size: 3rem;
      line-height: 1.2;
      font-style: italic;
      color: var(--text-white);
    }

    .about-quote span {
      display: block;
      margin-top: 30px;
      font-family: 'Raleway', sans-serif;
      font-size: 0.9rem;
      letter-spacing: 2px;
      color: var(--gold);
      text-transform: uppercase;
    }

    .about-text p {
      margin-bottom: 25px;
      font-size: 1.1rem;
      font-weight: 300;
      color: var(--text-gray);
    }

    .signature {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      color: var(--gold);
      margin-top: 30px;
      font-style: italic;
    }

    /* Services - Alternating */
    .services-section {
      padding: 0;
    }

    .service-row {
      display: flex;
      min-height: 500px;
    }

    .service-content {
      flex: 1;
      padding: 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-color: var(--bg-card);
    }

    .service-image {
      flex: 1;
      position: relative;
      overflow: hidden;
    }

    .service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }

    .service-row:hover .service-image img {
      transform: scale(1.05);
    }

    .service-content h3 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--gold);
    }

    .service-content p {
      margin-bottom: 30px;
      font-weight: 300;
      max-width: 500px;
    }

    .service-list {
      list-style: none;
    }

    .service-list li {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 15px;
      font-family: 'Raleway', sans-serif;
      font-size: 0.9rem;
      letter-spacing: 1px;
    }

    .service-list li::before {
      content: '';
      width: 6px;
      height: 6px;
      background-color: var(--gold);
      border-radius: 50%;
    }

    .row-reverse {
      flex-direction: row-reverse;
    }

    .row-reverse .service-content {
      background-color: var(--bg-darker);
      align-items: flex-end;
      text-align: right;
    }

    .row-reverse .service-list li {
      flex-direction: row-reverse;
    }

    /* Testimonials - Carousel */
    .testimonials {
      background-color: var(--bg-dark);
      text-align: center;
      position: relative;
      padding: 100px 0;
    }

    .carousel-container {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
      padding: 20px;
    }

    .carousel-track {
      display: flex;
      width: 100%;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .testimonial-item {
      width: 100%;
      flex-shrink: 0;
      box-sizing: border-box;
      padding: 50px;
      border: 1px solid rgba(212, 175, 55, 0.2);
      background: rgba(22, 33, 62, 0.5);
      border-radius: 12px;
      backdrop-filter: blur(5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      text-align: center;
      opacity: 0.5;
      transform: scale(0.9);
      transition: all 0.6s ease;
    }

    .testimonial-item.active {
      opacity: 1;
      transform: scale(1);
      border-color: rgba(212, 175, 55, 0.5);
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 30px;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.2);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .dot.active {
      background-color: var(--gold);
      transform: scale(1.3);
    }

    .quote-icon {
      font-size: 4rem;
      color: var(--gold);
      opacity: 0.3;
      margin-bottom: 20px;
      font-family: serif;
    }

    .testimonial-text {
      font-size: 1.2rem;
      font-style: italic;
      font-family: 'Cormorant Garamond', serif;
      margin-bottom: 30px;
      line-height: 1.6;
      color: var(--text-gray);
    }

    .client-name {
      font-family: 'Raleway', sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--gold);
      font-size: 0.9rem;
    }

    .stars {
      color: var(--gold);
      margin-top: 10px;
      font-size: 0.8rem;
    }

    /* Portfolio Masonry */
    .portfolio-section {
      background-color: var(--bg-darker);
      padding-bottom: 0;
    }

    .masonry-grid {
      column-count: 3;
      column-gap: 20px;
      padding: 20px 0;
    }

    .masonry-item {
      break-inside: avoid;
      margin-bottom: 20px;
      position: relative;
      cursor: pointer;
    }

    .masonry-item img {
      width: 100%;
      border-radius: 2px;
      transition: opacity 0.3s;
    }

    .masonry-item:hover img {
      opacity: 0.8;
    }

    /* CTA Section */
    .cta-section {
      background:
        linear-gradient(rgba(15, 15, 30, 0.85), rgba(15, 15, 30, 0.85)),
        var(--cta-bg);
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      text-align: center;
      padding: 150px 0;
    }

    .cta-content h2 {
      font-size: 4rem;
      margin-bottom: 20px;
    }

    .cta-content p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto 50px;
      color: var(--text-gray);
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    /* Footer */
    footer {
      background-color: var(--bg-darker);
      padding: 80px 0 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
      gap: 50px;
      margin-bottom: 60px;
    }

    .footer-col h4 {
      font-size: 1.2rem;
      color: var(--gold);
      margin-bottom: 30px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .footer-logo {
      width: 250px;
      max-width: 100%;
      margin-bottom: 25px;
    }

    .footer-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 20px;
      line-height: 1.8;
    }

    .footer-links li {
      list-style: none;
      margin-bottom: 12px;
    }

    .footer-links a {
      font-size: 0.9rem;
      color: var(--text-muted);
      font-family: 'Raleway', sans-serif;
    }

    .footer-links a:hover {
      color: var(--gold);
      padding-left: 5px;
    }

    .contact-info li {
      list-style: none;
      margin-bottom: 15px;
      display: flex;
      gap: 15px;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .contact-info i {
      color: var(--gold);
      margin-top: 5px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      font-size: 0.8rem;
      color: var(--text-muted);
      font-family: 'Raleway', sans-serif;
    }

    /* Floating WhatsApp */
    .floating-wa {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 15px;
    }

    .wa-main-btn {
      width: 60px;
      height: 60px;
      background-color: var(--whatsapp);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      font-size: 30px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
      cursor: pointer;
      transition: transform 0.3s;
    }

    .wa-main-btn:hover {
      transform: scale(1.1);
    }

    .wa-menu {
      background-color: #ffffff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
      display: none;
      flex-direction: column;
      gap: 10px;
      min-width: 200px;
    }

    .floating-wa:hover .wa-menu,
    .floating-wa.active .wa-menu {
      display: flex;
      animation: fadeIn 0.3s;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .wa-link {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--bg-dark);
      font-family: 'Raleway', sans-serif;
      font-weight: 600;
      padding: 8px;
      border-radius: 4px;
      transition: background 0.2s;
    }

    .wa-link:hover {
      background-color: #f0f0f0;
    }

    .wa-link i {
      color: var(--whatsapp);
      font-size: 1.2rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 3.5rem;
      }

      .grid-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .item-1,
      .item-2,
      .item-3,
      .item-4 {
        grid-column: span 1;
        grid-row: auto;
        height: 300px;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .service-row,
      .row-reverse {
        flex-direction: column;
      }

      .service-image {
        height: 300px;
      }

      .service-content {
        padding: 50px 30px;
      }

      .masonry-grid {
        column-count: 2;
      }

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

      .nav-links {
        display: none;
      }

      .hamburger {
        display: block;
      }

      .mobile-nav {
        display: flex;
      }

      .header-cta {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .testimonial-item {
        width: 85%;
        padding: 30px;
      }

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

      .grid-container {
        grid-template-columns: 1fr;
      }

      .item-1,
      .item-2,
      .item-3,
      .item-4 {
        grid-column: span 1;
      }

      .masonry-grid {
        column-count: 1;
      }

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

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .cta-content h2 {
        font-size: 2.5rem;
      }

      .about-quote h2 {
        font-size: 2rem;
      }
    }