/* CSS reset and base */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --red-primary: #8B0000;
      --red-mid: #B22222;
      --red-dark: #5C0000;
      --red-shadow: #2C0000;
      --white: #FFFFFF;
      --off-white: #FDF5F5;
      --light-grey: #F4EEEE;
      --text-dark: #1A0000;
      --text-mid: #4A1010;
      --text-muted: #888888;
      --border: rgba(139,0,0,0.20);
      --red-glow: 0 4px 24px rgba(139,0,0,0.18);
      
      --font-heading: 'Cormorant Garamond', serif;
      --font-nav: 'Montserrat', sans-serif;
      --font-body: 'Lato', sans-serif;
    }
    body {
      font-family: var(--font-body);
      color: var(--text-dark);
      background-color: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      color: var(--red-primary);
    }
    a { text-decoration: none; }
    ul { list-style: none; }
    .btn {
      font-family: var(--font-nav);
      display: inline-block;
      text-align: center;
      cursor: pointer;
      border-radius: 6px;
      transition: all 0.3s ease;
      font-weight: 600;
      padding: 12px 24px;
      font-size: 13px;
      border: 1px solid transparent;
    }
    .btn-red-solid { background-color: var(--red-primary); color: var(--white); border-color: var(--red-primary); }
    .btn-red-solid:hover { background-color: var(--red-mid); border-color: var(--red-mid); }
    .btn-red-outline { background-color: transparent; color: var(--red-primary); border-color: var(--red-primary); }
    .btn-red-outline:hover { background-color: var(--red-primary); color: var(--white); }
    .btn-white-solid { background-color: var(--white); color: var(--red-primary); border-color: var(--white); }
    .btn-white-solid:hover { box-shadow: var(--red-glow); transform: translateY(-2px); }
    .btn-white-outline { background-color: transparent; color: var(--white); border-color: var(--white); }
    .btn-white-outline:hover { background-color: var(--white); color: var(--red-primary); }

    /* Common Section Styles */
    section { padding: 80px 5%; }
    .section-header { text-align: center; margin-bottom: 50px; }
    .section-title { font-size: 44px; font-weight: 700; margin-bottom: 20px; }
    .section-divider { width: 60px; height: 3px; background-color: var(--red-primary); margin: 0 auto; }

    /* Navigation */
    .navbar {
      position: fixed; top: 0; left: 0; width: 100%; background-color: var(--white);
      border-bottom: 2px solid var(--red-primary); z-index: 1000; transition: box-shadow 0.3s ease;
      display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; 
    }
    .navbar.scrolled { box-shadow: 0 2px 20px rgba(139,0,0,0.10); }
    .nav-logo { display: flex; flex-direction: column; align-items: flex-start; }
    .nav-logo img { height: auto; max-height: 120px; display: block; }
    .logo-text-1 { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--red-primary); line-height: 1; }
    .logo-text-2 { font-family: var(--font-nav); font-size: 11px; color: var(--red-dark); letter-spacing: 4px; }
    
    /* Navbar Logo Image */
    .nav-logo { display: flex; align-items: center; gap: 12px; }
    .nav-logo-img { width: 256px; height: auto; object-fit: contain; flex-shrink: 0; }
    .nav-logo-text { display: none; }
    @media (max-width: 768px) {
      .nav-logo-img { width: 144px; height: auto; }
    }

    .nav-links { display: flex; gap: 30px; }
    .nav-links a {
      font-family: var(--font-nav); font-size: 13px; text-transform: uppercase;
      letter-spacing: 1.5px; color: var(--text-dark); position: relative;
      font-weight: 500; padding-bottom: 5px; transition: color 0.3s ease;
    }
    .nav-links a::after {
      content: ''; position: absolute; width: 0; height: 2px;
      bottom: 0; left: 0; background-color: var(--red-primary); transition: width 0.3s ease;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--red-primary); }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-links a.active { font-weight: 700; }
    .nav-ctas { display: flex; gap: 15px; }
    .hamburger { display: none; font-size: 24px; color: var(--red-primary); cursor: pointer; }

    /* Mobile Nav */
    .mobile-nav-overlay {
      position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
      background-color: var(--white); z-index: 1001; display: flex;
      flex-direction: column; justify-content: center; align-items: center;
      transform: translateX(100%); transition: transform 0.4s ease;
    }
    .mobile-nav-overlay.open { transform: translateX(0); }
    .mobile-nav-overlay a { font-family: var(--font-nav); font-size: 20px; color: var(--red-primary); margin: 15px 0; text-transform: uppercase; letter-spacing: 2px; }
    .mobile-nav-close { position: absolute; top: 25px; right: 5%; font-size: 30px; color: var(--red-primary); cursor: pointer; }

    /* Section 1 - Page Hero */
    .gallery-hero {
      height: 40vh; min-height: 300px;
      margin-top: 100px; position: relative;
      display: flex; justify-content: center; align-items: center;
      text-align: center; overflow: hidden; padding: 0 5%;
    }
    .gh-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; background-size: cover; background-position: center; }
    .gh-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; background: rgba(0,0,0,0.6); }
    
    .gh-content { position: relative; z-index: 2; }
    .breadcrumb { font-family: var(--font-nav); font-size: 12px; color: rgba(255,255,255,0.60); margin-bottom: 15px; letter-spacing: 1px; }
    .breadcrumb a { color: var(--white); }
    .breadcrumb span { margin: 0 8px; }
    .gallery-hero h1 { font-size: 58px; color: var(--white); font-weight: 700; margin-bottom: 20px; line-height: 1.1; }
    .hero-divider { width: 80px; height: 3px; background-color: rgba(255,255,255,0.40); margin: 0 auto 20px auto; }
    .gallery-hero p { font-size: 18px; color: rgba(255,255,255,0.75); }

    /* Section 2 - Filter Pills */
    .filter-bar {
      position: sticky; top: 82px; background-color: var(--white); border-bottom: 2px solid var(--red-primary);
      box-shadow: 0 2px 12px rgba(0,0,0,0.08); z-index: 900; padding: 15px 5%; display: flex; align-items: center; gap: 20px; overflow-x: auto; white-space: nowrap; justify-content: center;
    }
    .filter-bar::-webkit-scrollbar { display: none; }
    .filter-bar { -ms-overflow-style: none; scrollbar-width: none; }
    
    .filter-pills { display: flex; gap: 10px; }
    .filter-pill {
      background-color: var(--white); color: var(--red-primary); border: 1px solid var(--red-primary);
      padding: 8px 16px; border-radius: 20px; font-family: var(--font-nav); font-size: 12px; cursor: pointer; transition: all 0.3s ease;
    }
    .filter-pill.active { background-color: var(--red-primary); color: var(--white); font-weight: 700; }

    /* Section 3 - Photo Grid */
    .gallery-section { background-color: var(--off-white); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .g-item {
      margin-bottom: 20px;
      background-color: var(--white);
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      position: relative;
      cursor: pointer;
      transition: transform 0.3s ease, opacity 0.4s ease;
    }
    .g-item:hover {
      transform: scale(1.02);
      box-shadow: var(--red-glow);
    }
    .g-image {
      height: 300px;
      background-size: cover;
      background-position: center;
      background-color: var(--light-grey);
    }
    .g-overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(139,0,0,0.75);
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
      text-align: center;
    }
    .g-item:hover .g-overlay { opacity: 1; }
    .g-overlay-name {
      font-family: var(--font-heading);
      font-size: 20px;
      color: var(--white);
      font-weight: 700;
      margin-bottom: 10px;
    }
    .g-overlay-pill {
      font-family: var(--font-nav);
      font-size: 10px;
      background-color: var(--white);
      color: var(--red-primary);
      padding: 3px 8px;
      border-radius: 12px;
      margin-bottom: 15px;
      font-weight: 600;
    }
    .g-overlay-action {
      font-family: var(--font-nav);
      font-size: 12px;
      color: var(--white);
    }

    /* Section 4 - Lightbox Modal */
    .lightbox {
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background-color: rgba(10,0,0,0.92);
      z-index: 2000;
      display: none;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .lightbox.open { display: flex; opacity: 1; }
    .lb-card {
      background-color: var(--white);
      border-radius: 8px;
      max-width: 700px;
      width: 90%;
      overflow: hidden;
      transform: scale(0.95);
      transition: transform 0.3s ease;
      position: relative;
    }
    .lightbox.open .lb-card { transform: scale(1); }
    .lb-close {
      position: absolute;
      top: 15px; right: 20px;
      font-family: var(--font-nav);
      font-size: 24px;
      color: var(--red-primary);
      cursor: pointer;
      z-index: 10;
      transition: transform 0.3s;
    }
    .lb-close:hover { transform: scale(1.2); }
    .lb-image {
      height: 400px;
      background-color: var(--light-grey);
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .lb-image-icon { font-size: 80px; opacity: 0.1; color: var(--red-primary); }
    .lb-info { padding: 25px 30px; position: relative; }
    .lb-name { font-size: 22px; color: var(--text-dark); margin-bottom: 5px; font-weight: 700; }
    .lb-desc { font-size: 14px; color: var(--text-muted); }
    .lb-cat {
      position: absolute;
      top: 25px; right: 30px;
      background-color: var(--red-primary);
      color: var(--white);
      font-family: var(--font-nav);
      font-size: 10px;
      padding: 4px 10px;
      border-radius: 12px;
      font-weight: 600;
      text-transform: uppercase;
    }
    .lb-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px; height: 48px;
      background-color: var(--red-primary);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 24px;
      cursor: pointer;
      transition: background-color 0.3s;
      z-index: 5;
    }
    .lb-nav:hover { background-color: var(--red-mid); }
    .lb-prev { left: 5%; }
    .lb-next { right: 5%; }

    /* Section 5 - Video Tours */
    .video-tours { background-color: var(--white); }
    .video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
    .video-card { background-color: var(--white); border: 1px solid var(--border); box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-radius: 8px; overflow: hidden; }
    .video-player { height: 240px; background-color: var(--text-dark); display: flex; flex-direction: column; justify-content: center; align-items: center; position: relative; }
    .play-btn { width: 60px; height: 60px; background-color: rgba(139,0,0,0.9); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--white); font-size: 20px; cursor: pointer; margin-bottom: 15px; transition: transform 0.3s; padding-left: 5px; }
    .video-card:hover .play-btn { transform: scale(1.1); }
    .v-label { font-family: var(--font-nav); font-size: 12px; color: var(--white); letter-spacing: 4px; }
    .video-info { padding: 20px; text-align: center; }
    .v-title { font-size: 20px; color: var(--text-dark); margin-bottom: 5px; font-weight: 700; }
    .v-duration { font-size: 13px; color: var(--text-muted); margin-bottom: 15px; display: block; }
    .video-info .btn { width: 100%; }

    /* Section 6 - Happy Clients Photo Wall */
    .client-wall { background-color: var(--off-white); }
    .client-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
    .client-card { background-color: var(--white); box-shadow: var(--red-glow); border-left: 4px solid var(--red-primary); border-radius: 6px; padding: 30px; }
    .client-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
    .client-avatar { width: 64px; height: 64px; background-color: var(--off-white); border: 2px solid var(--red-primary); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-family: var(--font-heading); font-size: 24px; color: var(--red-primary); font-weight: 700; }
    .client-meta { flex: 1; }
    .client-name { font-size: 20px; color: var(--text-dark); font-weight: 700; margin-bottom: 2px; line-height: 1.2; }
    .client-proj { font-family: var(--font-nav); font-size: 11px; color: var(--red-primary); }
    .client-stars { color: var(--red-mid); font-size: 16px; margin-bottom: 10px; }
    .client-quote { font-size: 14px; color: var(--text-mid); font-style: italic; line-height: 1.6; }

    /* CTA & Footer */
    .cta-banner { background-color: var(--red-dark); padding: 80px 5%; text-align: center; position: relative; overflow: hidden; }
    .cta-banner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 2px, transparent 2px, transparent 15px); }
    .cta-content { position: relative; z-index: 2; }
    .cta-banner h2 { font-size: 44px; color: var(--white); margin-bottom: 15px; }
    .cta-banner p { font-size: 16px; color: rgba(255,255,255,0.80); margin-bottom: 30px; }
    .cta-btns { display: flex; justify-content: center; gap: 15px; }

    .footer { background-color: var(--red-shadow); color: var(--white); border-top: 4px solid var(--red-primary); }
    .footer-top { padding: 60px 5%; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
    .footer-col h4 { font-family: var(--font-nav); font-size: 12px; color: var(--red-mid); letter-spacing: 3px; margin-bottom: 20px; }
    .footer-brand .logo-text-1 { color: var(--white); }
    .footer-brand .logo-text-2 { color: var(--red-mid); }
    .footer-tagline { font-family: var(--font-heading); font-size: 16px; font-style: italic; margin-top: 10px; margin-bottom: 15px; }
    .footer-desc { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 20px; line-height: 1.6; }
    .social-links { display: flex; gap: 15px; }
    .social-links a { color: var(--white); font-size: 13px; font-family: var(--font-nav); transition: color 0.3s; }
    .social-links a:hover { color: var(--red-mid); }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul a, .footer-col .contact-info p, .footer-col .contact-info a { font-size: 14px; color: var(--white); transition: color 0.3s; }
    .footer-col ul a:hover, .footer-col .contact-info a:hover { color: var(--red-mid); }
    .contact-info p { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
    .footer-bottom { background-color: var(--text-dark); padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom p { font-size: 12px; color: var(--text-muted); }
    .footer-links a { font-size: 12px; color: var(--red-mid); margin-left: 15px; }
    .footer-links a:hover { color: var(--white); }

    .fab-container { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 12px; z-index: 1000; }
    .fab { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 20px; box-shadow: 0 4px 16px rgba(139,0,0,0.40); transition: transform 0.3s ease; text-decoration: none; position: relative; }
    .fab:hover { transform: scale(1.10); }
    .fab-call { background-color: var(--red-primary); }
    .fab-wa { background-color: var(--red-mid); }
    .pulse-ring { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%; border: 2px solid var(--red-mid); animation: pulse 2s infinite; }
    @keyframes pulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.5); opacity: 0; } }

    /* Responsive */
    @media (max-width: 1024px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .video-grid { grid-template-columns: repeat(2, 1fr); }
      .client-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-ctas { display: none; }
      .hamburger { display: block; }
      .gallery-hero h1 { font-size: 44px; }
      .gallery-grid { grid-template-columns: 1fr; }
      .video-grid { grid-template-columns: 1fr; }
      .client-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .lb-nav { display: none; /* Hide arrows on mobile for simplicity, or make them smaller */ }
    }
    @media (max-width: 480px) {
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
      .cta-btns { flex-direction: column; }
      .lb-card { padding-top: 50px; }
      .lb-cat { top: 15px; left: 15px; right: auto; }
    }
