/* ============================================================
                   RESET & BASE
                ============================================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0a4b7a;
            --primary-dark: #062d4a;
            --primary-light: #1a6ba0;
            --secondary: #e8a838;
            --secondary-light: #f5c542;
            --light: #f4f9ff;
            --dark: #0f1a26;
            --gray: #6b7f94;
            --gray-light: #e8edf3;
            --white: #ffffff;
            --shadow: 0 20px 60px rgba(10, 75, 122, 0.10);
            --shadow-hover: 0 30px 80px rgba(10, 75, 122, 0.18);
            --radius: 20px;
            --radius-sm: 12px;
            --transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--light);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul {
            list-style: none;
        }

        .container {
            width: 92%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* ============================================================
                   BUTTONS
                ============================================================ */
        .btn {
            display: inline-block;
            padding: 14px 38px;
            background: var(--secondary);
            color: var(--dark);
            font-weight: 700;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            text-align: center;
            box-shadow: 0 4px 24px rgba(232, 168, 56, 0.40);
            letter-spacing: 0.3px;
            position: relative;
            overflow: hidden;
        }
        .btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.35);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        .btn:hover::after {
            width: 400px;
            height: 400px;
        }
        .btn:hover {
            background: var(--secondary-light);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 40px rgba(232, 168, 56, 0.55);
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 24px rgba(10, 75, 122, 0.35);
        }
        .btn-primary:hover {
            background: var(--primary-light);
            box-shadow: 0 8px 40px rgba(10, 75, 122, 0.50);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.35);
            box-shadow: none;
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.10);
            border-color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(255, 255, 255, 0.10);
        }

        /* ============================================================
                   TOP BAR
                ============================================================ */
        .top-bar {
            background: var(--primary-dark);
            color: var(--white);
            padding: 10px 0;
            font-size: 0.85rem;
            position: relative;
            z-index: 1001;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .top-bar .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 8px 20px;
        }
        .top-bar a {
            color: var(--secondary-light);
            transition: var(--transition);
        }
        .top-bar a:hover {
            color: var(--white);
        }
        .top-bar .contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 24px;
            font-size: 0.85rem;
        }
        .top-bar .contact-info span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .top-bar .social-links {
            display: flex;
            gap: 14px;
        }
        .top-bar .social-links a {
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            opacity: 0.8;
        }
        .top-bar .social-links a svg {
            width: 18px;
            height: 18px;
        }
        .top-bar .social-links a:hover {
            opacity: 1;
            color: var(--secondary-light);
            transform: scale(1.1);
        }

        /* ============================================================
                   HEADER
                ============================================================ */
        header {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 2px 40px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            transition: var(--transition);
        }
        header.scrolled {
            background: rgba(255, 255, 255, 0.97);
            box-shadow: 0 4px 50px rgba(0, 0, 0, 0.08);
        }
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
            padding-bottom: 12px;
            flex-wrap: wrap;
            gap: 12px 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0;
            font-weight: 800;
            flex-shrink: 0;
        }
        .logo-img {
            width: auto;
            height: 60px;
            border-radius: 0;
            background: none;
            display: flex;
            align-items: center;
        }
        .logo-img img {
            height: 60px;
            width: auto;
            display: block;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 6px 20px;
            flex-wrap: wrap;
        }
        nav a {
            font-weight: 500;
            font-size: 0.9rem;
            padding: 6px 4px;
            border-bottom: 2px solid transparent;
            transition: var(--transition);
            color: var(--dark);
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }
        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }
        nav a:hover,
        nav a.active {
            color: var(--primary);
        }

        .nav-cta {
            background: var(--secondary);
            color: var(--dark) !important;
            padding: 8px 28px !important;
            border-radius: 50px;
            border-bottom: none !important;
            font-weight: 700;
            box-shadow: 0 4px 16px rgba(232, 168, 56, 0.30);
            transition: var(--transition);
        }
        .nav-cta::after {
            display: none !important;
        }
        .nav-cta:hover {
            background: var(--secondary-light) !important;
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 28px rgba(232, 168, 56, 0.45);
            border-bottom: none !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 2.5px;
            background: var(--primary);
            border-radius: 3px;
            transition: var(--transition);
        }
        .hamburger.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ============================================================
                   PAGE BANNER
                ============================================================ */
        .page-banner {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
            color: var(--white);
            padding: 70px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(232, 168, 56, 0.10) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .page-banner::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(232, 168, 56, 0.07) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .page-banner .container {
            position: relative;
            z-index: 1;
        }
        .page-banner .badge {
            display: inline-block;
            background: rgba(232, 168, 56, 0.20);
            color: var(--secondary-light);
            padding: 6px 22px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 16px;
            border: 1px solid rgba(232, 168, 56, 0.20);
        }
        .page-banner h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 12px;
        }
        .page-banner h1 span {
            color: var(--secondary);
        }
        .page-banner p {
            opacity: 0.85;
            font-size: 1.15rem;
            max-width: 640px;
            margin: 0 auto;
            font-weight: 400;
        }

        /* ── Particles ── */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }
        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 50%;
            animation: floatParticle 20s infinite ease-in-out;
        }
        .particle:nth-child(1) {
            left: 10%;
            top: 20%;
            animation-duration: 18s;
            animation-delay: 0s;
        }
        .particle:nth-child(2) {
            left: 25%;
            top: 60%;
            animation-duration: 22s;
            animation-delay: 2s;
            width: 8px;
            height: 8px;
        }
        .particle:nth-child(3) {
            left: 50%;
            top: 15%;
            animation-duration: 16s;
            animation-delay: 4s;
            width: 4px;
            height: 4px;
        }
        .particle:nth-child(4) {
            left: 70%;
            top: 70%;
            animation-duration: 24s;
            animation-delay: 1s;
            width: 10px;
            height: 10px;
        }
        .particle:nth-child(5) {
            left: 85%;
            top: 30%;
            animation-duration: 20s;
            animation-delay: 3s;
            width: 5px;
            height: 5px;
        }
        .particle:nth-child(6) {
            left: 40%;
            top: 85%;
            animation-duration: 19s;
            animation-delay: 5s;
            width: 7px;
            height: 7px;
        }
        @keyframes floatParticle {
            0%,
            100% {
                transform: translateY(0) translateX(0) scale(1);
                opacity: 0.3;
            }
            25% {
                transform: translateY(-40px) translateX(20px) scale(1.2);
                opacity: 0.8;
            }
            50% {
                transform: translateY(-10px) translateX(-30px) scale(0.8);
                opacity: 0.4;
            }
            75% {
                transform: translateY(30px) translateX(10px) scale(1.1);
                opacity: 0.7;
            }
        }

        /* ============================================================
                   SECTION TITLES
                ============================================================ */
        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 8px;
            color: var(--primary);
            letter-spacing: -0.02em;
        }
        .section-title span {
            color: var(--secondary);
        }
        .section-subtitle {
            color: var(--gray);
            font-size: 1.1rem;
            margin-bottom: 48px;
            max-width: 640px;
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-white {
            background: var(--white);
        }
        .section-light {
            background: var(--light);
        }

        /* ============================================================
                   REVEAL ANIMATIONS
                ============================================================ */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger>* {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .stagger.visible>*:nth-child(1) {
            transition-delay: 0.03s;
        }
        .stagger.visible>*:nth-child(2) {
            transition-delay: 0.06s;
        }
        .stagger.visible>*:nth-child(3) {
            transition-delay: 0.09s;
        }
        .stagger.visible>*:nth-child(4) {
            transition-delay: 0.12s;
        }
        .stagger.visible>*:nth-child(5) {
            transition-delay: 0.15s;
        }
        .stagger.visible>*:nth-child(6) {
            transition-delay: 0.18s;
        }
        .stagger.visible>*:nth-child(7) {
            transition-delay: 0.21s;
        }
        .stagger.visible>*:nth-child(8) {
            transition-delay: 0.24s;
        }
        .stagger.visible>*:nth-child(9) {
            transition-delay: 0.27s;
        }
        .stagger.visible>*:nth-child(10) {
            transition-delay: 0.30s;
        }
        .stagger.visible>*:nth-child(11) {
            transition-delay: 0.33s;
        }
        .stagger.visible>*:nth-child(12) {
            transition-delay: 0.36s;
        }
        .stagger.visible>*:nth-child(13) {
            transition-delay: 0.39s;
        }
        .stagger.visible>*:nth-child(14) {
            transition-delay: 0.42s;
        }
        .stagger.visible>*:nth-child(15) {
            transition-delay: 0.45s;
        }
        .stagger.visible>*:nth-child(16) {
            transition-delay: 0.48s;
        }
        .stagger.visible>*:nth-child(17) {
            transition-delay: 0.51s;
        }
        .stagger.visible>*:nth-child(18) {
            transition-delay: 0.54s;
        }
        .stagger.visible>*:nth-child(19) {
            transition-delay: 0.57s;
        }
        .stagger.visible>*:nth-child(20) {
            transition-delay: 0.60s;
        }
        .stagger.visible>*:nth-child(21) {
            transition-delay: 0.63s;
        }
        .stagger.visible>*:nth-child(22) {
            transition-delay: 0.66s;
        }
        .stagger.visible>*:nth-child(23) {
            transition-delay: 0.69s;
        }
        .stagger.visible>*:nth-child(24) {
            transition-delay: 0.72s;
        }
        .stagger.visible>*:nth-child(25) {
            transition-delay: 0.75s;
        }
        .stagger.visible>*:nth-child(26) {
            transition-delay: 0.78s;
        }
        .stagger.visible>*:nth-child(27) {
            transition-delay: 0.81s;
        }
        .stagger.visible>*:nth-child(28) {
            transition-delay: 0.84s;
        }
        .stagger.visible>*:nth-child(29) {
            transition-delay: 0.87s;
        }
        .stagger.visible>*:nth-child(30) {
            transition-delay: 0.90s;
        }
        .stagger.visible>*:nth-child(31) {
            transition-delay: 0.93s;
        }
        .stagger.visible>*:nth-child(32) {
            transition-delay: 0.96s;
        }
        .stagger.visible>*:nth-child(33) {
            transition-delay: 0.99s;
        }
        .stagger.visible>*:nth-child(34) {
            transition-delay: 1.02s;
        }
        .stagger.visible>*:nth-child(35) {
            transition-delay: 1.05s;
        }
        .stagger.visible>*:nth-child(36) {
            transition-delay: 1.08s;
        }
        .stagger.visible>* {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================================
                   FILTER TABS
                ============================================================ */
        .filter-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
            justify-content: center;
        }
        .filter-tabs .tab {
            padding: 10px 28px;
            border-radius: 50px;
            border: 2px solid #e0e6ed;
            background: transparent;
            color: var(--gray);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
        }
        .filter-tabs .tab:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .filter-tabs .tab.active {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 20px rgba(10, 75, 122, 0.30);
        }

        /* ============================================================
                   GALLERY GRID - WITHOUT OVERLAY TEXT
                ============================================================ */
        .section-gallery {
            padding: 80px 0;
            background: var(--white);
            position: relative;
        }
        .section-gallery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 10% 20%, rgba(10, 75, 122, 0.02) 0%, transparent 70%);
            pointer-events: none;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }

        /* ── Gallery Item ── */
        .gallery-item {
            position: relative;
            border-radius: var(--radius-sm);
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 4/3;
            background: #e8edf3;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: scale(0.92) translateY(30px);
            transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.7s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.3s ease;
        }
        .gallery-item.visible {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-hover);
            z-index: 2;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .gallery-item:hover img {
            transform: scale(1.10);
        }

        /* ── No overlay text, only zoom icon on hover ── */
        .gallery-item .zoom-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.6);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--white);
            opacity: 0;
            transition: opacity 0.4s ease, transform 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.20);
            pointer-events: none;
        }
        .gallery-item:hover .zoom-icon {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        /* ============================================================
                   LIGHTBOX / MODAL
                ============================================================ */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.88);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
            padding: 40px 20px;
        }
        .lightbox.open {
            opacity: 1;
            visibility: visible;
        }
        .lightbox .close-btn {
            position: absolute;
            top: 24px;
            right: 32px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: var(--white);
            width: 52px;
            height: 52px;
            border-radius: 50%;
            font-size: 1.8rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 300;
        }
        .lightbox .close-btn:hover {
            background: rgba(255, 255, 255, 0.20);
            transform: rotate(90deg) scale(1.05);
        }
        .lightbox .lightbox-content {
            max-width: 900px;
            max-height: 80vh;
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.50);
            transform: scale(0.92);
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
        }
        .lightbox.open .lightbox-content {
            transform: scale(1);
        }
        .lightbox .lightbox-content img {
            width: 100%;
            height: 100%;
            max-height: 80vh;
            object-fit: contain;
            display: block;
        }
        .lightbox .nav-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
        }
        .lightbox .nav-arrows button {
            pointer-events: auto;
            background: rgba(255, 255, 255, 0.10);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: var(--white);
            width: 52px;
            height: 52px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .lightbox .nav-arrows button:hover {
            background: rgba(255, 255, 255, 0.20);
            transform: scale(1.05);
        }
        .lightbox .counter {
            position: absolute;
            top: 28px;
            left: 32px;
            color: rgba(255, 255, 255, 0.60);
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        /* ============================================================
                   CTA SECTION
                ============================================================ */
        .section-cta {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .section-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(232, 168, 56, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .section-cta .container {
            position: relative;
            z-index: 1;
        }
        .section-cta h2 {
            font-size: 2.6rem;
            font-weight: 800;
            margin-bottom: 12px;
        }
        .section-cta h2 span {
            color: var(--secondary);
        }
        .section-cta p {
            opacity: 0.85;
            font-size: 1.15rem;
            max-width: 560px;
            margin: 0 auto 32px;
        }
        .section-cta .btn-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }

        /* ============================================================
                   FOOTER
                ============================================================ */
        footer {
            background: var(--primary-dark);
            color: rgba(255, 255, 255, 0.85);
            padding: 50px 0 20px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }
        footer h4 {
            color: var(--white);
            font-size: 1.1rem;
            margin-bottom: 16px;
            font-weight: 600;
        }
        footer .footer-about p {
            font-size: 0.95rem;
            opacity: 0.85;
            margin-bottom: 12px;
        }
        footer .footer-about .logo-text {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 8px;
        }
        footer .footer-about .logo-text span {
            color: var(--secondary);
        }
        footer ul li {
            padding: 4px 0;
        }
        footer ul li a {
            opacity: 0.8;
            transition: var(--transition);
            font-size: 0.95rem;
        }
        footer ul li a:hover {
            opacity: 1;
            color: var(--secondary-light);
            padding-left: 6px;
        }
        footer .footer-contact li {
            display: flex;
            gap: 10px;
            align-items: baseline;
        }
        footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* ============================================================
                   RESPONSIVE
                ============================================================ */
        @media (max-width: 992px) {
            .page-banner h1 {
                font-size: 2.6rem;
            }
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            }
            footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .top-bar .container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .top-bar .contact-info {
                justify-content: center;
            }
            .logo {
                flex-shrink: 1;
                min-width: 0;
            }
            .logo-img {
                height: 52px;
                min-width: 0;
            }
            .logo-img img {
                height: 52px;
                width: auto;
                max-width: 100%;
            }
            .hamburger {
                display: flex;
                flex-shrink: 0;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 16px 0 8px;
                gap: 10px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                width: 100%;
                text-align: center;
                padding: 8px 0;
            }
            .nav-cta {
                width: 100%;
                text-align: center;
            }

            .page-banner {
                padding: 50px 0 40px;
            }
            .page-banner h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .section-padding {
                padding: 60px 0;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 16px;
            }
            .filter-tabs .tab {
                padding: 8px 18px;
                font-size: 0.8rem;
            }

            .lightbox .close-btn {
                top: 16px;
                right: 16px;
                width: 44px;
                height: 44px;
                font-size: 1.4rem;
            }
            .lightbox .nav-arrows button {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            .lightbox .counter {
                top: 20px;
                left: 20px;
                font-size: 0.8rem;
            }

            .gallery-item .zoom-icon {
                width: 44px;
                height: 44px;
                font-size: 1.1rem;
            }

            .section-cta h2 {
                font-size: 1.8rem;
            }

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

        @media (max-width: 480px) {
            .logo-img {
                height: 46px;
            }
            .logo-img img {
                height: 46px;
            }

            .page-banner h1 {
                font-size: 1.6rem;
            }
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .gallery-item .zoom-icon {
                width: 36px;
                height: 36px;
                font-size: 0.9rem;
            }
        }
