:root {
            --primary-text: #333333;
            --secondary-text: #777777;
            --accent-color: #bfa09e;
            --bg-color: #ffffff;
            --font-serif: 'Cormorant Garamond', serif;
            --font-sans: 'Montserrat', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-sans);
            background-color: #f9f9f9;
            color: var(--primary-text);
            overflow-x: hidden;
        }

        /* --- Header --- */
        header {
            background-color: var(--bg-color);
            padding: 15px 40px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }

        .social-icons {
            display: flex;
            gap: 20px;
            flex: 1;
        }

        .social-icons a {
            color: var(--accent-color);
            font-size: 1.1rem;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-icons a:hover {
            color: var(--primary-text);
        }

        .social-icons svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 2;
            position: relative;
        }

        .main-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links li a {
            text-decoration: none;
            color: var(--primary-text);
            font-size: 0.85rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        .nav-links li a:hover,
        .nav-links li a.active-link {
            color: var(--accent-color);
        }

        .nav-links li a:hover::after,
        .nav-links li a.active-link::after {
            width: 100%;
        }

        .logo-container {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .logo-img {
            height: 60px;
            width: auto;
            display: block;
        }

        .utilities {
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 1;
            justify-content: flex-end;
        }

        .icon-btn {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--primary-text);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease;
        }

        .icon-btn:hover {
            color: var(--accent-color);
            transform: scale(1.1);
        }

        .icon-btn svg {
            width: 22px;
            height: 22px;
            stroke: currentColor;
            stroke-width: 1.5;
            fill: none;
        }

        .cart-wrapper {
            position: relative;
        }

        .cart-badge {
            position: absolute;
            top: -5px;
            right: -8px;
            background-color: var(--accent-color);
            color: white;
            font-size: 0.7rem;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            z-index: 1001;
        }

        .bar {
            width: 25px;
            height: 2px;
            background-color: var(--primary-text);
            transition: all 0.3s ease;
        }

        /* --- Mobile Menu --- */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 300px;
            height: 100vh;
            background-color: white;
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-nav-links {
            list-style: none;
            text-align: center;
        }

        .mobile-nav-links li {
            margin: 25px 0;
        }

        .mobile-nav-links a {
            font-family: var(--font-serif);
            font-size: 1.8rem;
            color: var(--primary-text);
            text-decoration: none;
            font-style: italic;
            transition: color 0.3s ease;
        }

        .mobile-socials {
            margin-top: 40px;
            display: flex;
            gap: 20px;
        }

        .mobile-socials a {
            color: var(--accent-color);
        }

        .mobile-socials svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(0,0,0,0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1000;
        }

        .close-btn svg {
            width: 24px;
            height: 24px;
            stroke: var(--primary-text);
            stroke-width: 2;
            fill: none;
        }

        /* --- Full Screen Carousel --- */
        .carousel-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .carousel {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-track {
            display: flex;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-slide::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
            pointer-events: none;
        }

        .slide-content {
            position: absolute;
            bottom: 15%;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: white;
            z-index: 10;
            padding: 0 20px;
            max-width: 800px;
            width: 100%;
        }

        .slide-content h3 {
            font-family: var(--font-serif);
            font-size: 4rem;
            font-style: italic;
            font-weight: 400;
            margin-bottom: 15px;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease 0.3s;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .slide-content p {
            font-size: 1.2rem;
            font-weight: 300;
            letter-spacing: 2px;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease 0.5s;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
        }

        .carousel-slide.active .slide-content h3,
        .carousel-slide.active .slide-content p {
            opacity: 1;
            transform: translateY(0);
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2);
            border: 1px solid rgba(255,255,255,0.3);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 20;
            backdrop-filter: blur(10px);
        }

        .carousel-arrow:hover {
            background: rgba(255,255,255,0.4);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-arrow svg {
            width: 28px;
            height: 28px;
            stroke: white;
            stroke-width: 2;
            fill: none;
        }

        .carousel-arrow.prev { left: 40px; }
        .carousel-arrow.next { right: 40px; }

        .carousel-dots {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 20;
        }

        .carousel-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            border: 2px solid white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: white;
            transform: scale(1.3);
        }

        .carousel-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: var(--accent-color);
            width: 0%;
            transition: width 0.1s linear;
            z-index: 20;
        }

        /* --- Section Styles --- */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            color: var(--accent-color);
            font-style: italic;
            display: block;
            margin-bottom: 5px;
        }

        .section-title {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-text);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 1px;
            background: var(--accent-color);
        }

        /* --- Horizontal Couple Scroll Section --- */
        .couple-scroll-section {
            padding: 80px 0;
            background: white;
            overflow: hidden;
        }

        .couple-scroll-container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
        }

        .couple-scroll-track {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 20px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .couple-scroll-track::-webkit-scrollbar {
            display: none;
        }

        .couple-card {
            min-width: 280px;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .couple-card:hover {
            transform: translateY(-10px);
        }

        .couple-image {
            width: 100%;
            height: 400px;
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .couple-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .couple-card:hover .couple-image img {
            transform: scale(1.1);
        }

        .couple-info {
            text-align: center;
        }

        .couple-names {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            color: var(--primary-text);
            font-style: italic;
            margin-bottom: 5px;
        }

        .couple-date {
            font-size: 0.85rem;
            color: var(--secondary-text);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .couple-scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: white;
            border: 1px solid var(--accent-color);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .couple-scroll-btn:hover {
            background: var(--accent-color);
        }

        .couple-scroll-btn:hover svg {
            stroke: white;
        }

        .couple-scroll-btn svg {
            width: 24px;
            height: 24px;
            stroke: var(--accent-color);
            stroke-width: 2;
            fill: none;
        }

        .couple-scroll-btn.prev { left: 0; }
        .couple-scroll-btn.next { right: 0; }

        /* --- Services Section --- */
        .services-section {
            padding: 100px 20px;
            background: #f9f9f9;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            text-align: center;
            padding: 40px 30px;
            background: white;
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-color);
            border-radius: 50%;
        }

        .service-icon svg {
            width: 40px;
            height: 40px;
            stroke: white;
            stroke-width: 1.5;
            fill: none;
        }

        .service-card h3 {
            font-family: var(--font-serif);
            font-size: 1.8rem;
            color: var(--primary-text);
            margin-bottom: 15px;
            font-style: italic;
        }

        .service-card p {
            color: var(--secondary-text);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        /* --- Pricing Section --- */
        .pricing-section {
            padding: 100px 20px;
            background: white;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background: #f9f9f9;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .pricing-card.featured {
            border: 2px solid var(--accent-color);
            transform: scale(1.05);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-color);
            color: white;
            padding: 8px 25px;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 20px;
        }

        .pricing-card h3 {
            font-family: var(--font-serif);
            font-size: 2rem;
            color: var(--primary-text);
            margin-bottom: 20px;
            font-style: italic;
        }

        .pricing-price {
            font-size: 3rem;
            color: var(--accent-color);
            font-weight: 300;
            margin-bottom: 10px;
        }

        .pricing-price span {
            font-size: 1rem;
            color: var(--secondary-text);
        }

        .pricing-features {
            list-style: none;
            margin: 30px 0;
            text-align: left;
        }

        .pricing-features li {
            padding: 12px 0;
            border-bottom: 1px solid #e0e0e0;
            color: var(--secondary-text);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pricing-features li::before {
            content: '✓';
            color: var(--accent-color);
            font-weight: bold;
        }

        .pricing-btn {
            display: inline-block;
            padding: 15px 40px;
            background: transparent;
            border: 2px solid var(--accent-color);
            color: var(--accent-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .pricing-btn:hover {
            background: var(--accent-color);
            color: white;
        }

        .pricing-card.featured .pricing-btn {
            background: var(--accent-color);
            color: white;
        }

        .pricing-card.featured .pricing-btn:hover {
            background: transparent;
            color: var(--accent-color);
        }

        /* --- Gallery Section --- */
        .gallery-section {
            padding: 100px 20px;
            background: #f9f9f9;
        }

        .gallery-filter {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .gallery-filter button {
            background: none;
            border: none;
            font-family: var(--font-sans);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--secondary-text);
            cursor: pointer;
            padding: 10px 20px;
            transition: all 0.3s ease;
            position: relative;
        }

        .gallery-filter button::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }

        .gallery-filter button:hover,
        .gallery-filter button.active {
            color: var(--accent-color);
        }

        .gallery-filter button.active::after {
            width: 100%;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 1;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(191, 160, 158, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay svg {
            width: 40px;
            height: 40px;
            stroke: white;
            stroke-width: 2;
            fill: none;
        }

        /* --- Gallery Lightbox --- */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 8px;
        }

        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
        }

        .lightbox-close svg {
            width: 30px;
            height: 30px;
            stroke: white;
            stroke-width: 2;
            fill: none;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .lightbox-nav:hover {
            background: rgba(255,255,255,0.4);
        }

        .lightbox-nav svg {
            width: 24px;
            height: 24px;
            stroke: white;
            stroke-width: 2;
            fill: none;
        }

        .lightbox-prev { left: -80px; }
        .lightbox-next { right: -80px; }

        .lightbox-caption {
            text-align: center;
            color: white;
            margin-top: 20px;
            font-family: var(--font-serif);
            font-size: 1.2rem;
            font-style: italic;
        }

        /* --- Video Section --- */
        .video-section {
            padding: 100px 20px;
            background: #1a1a1a;
            color: white;
        }

        .video-section .section-subtitle {
            color: var(--accent-color);
        }

        .video-section .section-title {
            color: white;
        }

        .video-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            background: #000;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* --- Instagram Section --- */
        .instagram-section {
            padding: 100px 20px;
            background: white;
        }

        .instagram-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .instagram-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .instagram-id {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888, #8a3ab9);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 500;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .instagram-id:hover {
            transform: scale(1.05);
        }

        .instagram-id svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
        }

        .instagram-item {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
        }

        .instagram-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .instagram-item:hover img {
            transform: scale(1.1);
        }

        .instagram-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(191, 160, 158, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .instagram-item:hover .instagram-overlay {
            opacity: 1;
        }

        .instagram-overlay span {
            color: white;
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 500;
        }

        .instagram-overlay svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        /* --- Reviews Section --- */
        .reviews-section {
            padding: 100px 20px;
            background: #f9f9f9;
            overflow: hidden;
        }

        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .reviews-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }

        .review-card {
            min-width: 350px;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
        }

        .review-stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 20px;
        }

        .review-stars svg {
            width: 20px;
            height: 20px;
            fill: #fbbf24;
        }

        .review-text {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--secondary-text);
            margin-bottom: 25px;
            font-style: italic;
        }

        .review-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .review-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .review-author-info h4 {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            color: var(--primary-text);
            font-style: italic;
        }

        .review-author-info span {
            font-size: 0.85rem;
            color: var(--secondary-text);
        }

        .reviews-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .reviews-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .reviews-dot.active {
            background: var(--accent-color);
            transform: scale(1.2);
        }

        /* --- Testimonial Section --- */
        .testimonial-section {
            padding: 100px 20px;
            background: white;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .testimonial-container {
            max-width: 1200px;
            width: 100%;
            display: flex;
            background: white;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            position: relative;
        }

        .testimonial-image {
            flex: 1;
            position: relative;
            min-height: 500px;
        }

        .testimonial-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        .testimonial-card {
            flex: 1;
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            border: 1px solid #f0f0f0;
            margin: 40px;
            position: relative;
        }

        .testimonial-card::before, .testimonial-card::after {
            content: '';
            position: absolute;
            background: #f0f0f0;
        }
        .testimonial-card::before {
            width: 1px;
            height: 100px;
            top: -50px;
            left: 50%;
            transform: translateX(-50%);
        }
        .testimonial-card::after {
            width: 1px;
            height: 100px;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
        }

        .quote-icon {
            font-size: 4rem;
            color: var(--accent-color);
            font-family: var(--font-serif);
            line-height: 1;
            margin-bottom: 20px;
            opacity: 0.6;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--primary-text);
            margin-bottom: 30px;
            font-style: italic;
        }

        .testimonial-names {
            font-family: var(--font-serif);
            font-size: 2rem;
            color: var(--accent-color);
            font-style: italic;
            margin-bottom: 5px;
        }

        .testimonial-date {
            font-size: 0.9rem;
            color: var(--secondary-text);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- Wedding Story Section --- */
        .wedding-story-section {
            padding: 100px 20px;
            background: white;
            text-align: center;
        }

        .story-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .story-item {
            position: relative;
        }

        .story-image-wrapper {
            overflow: hidden;
            margin-bottom: 20px;
            position: relative;
        }

        .story-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
        }
        
        .story-item:nth-child(1) .story-image-wrapper { height: 500px; }
        .story-item:nth-child(2) .story-image-wrapper { height: 300px; }
        .story-item:nth-child(3) .story-image-wrapper { height: 300px; }
        .story-item:nth-child(4) .story-image-wrapper { height: 500px; }

        .story-item:hover .story-image-wrapper img {
            transform: scale(1.05);
        }

        .story-names {
            font-family: var(--font-serif);
            font-size: 2rem;
            color: var(--primary-text);
            font-style: italic;
            margin-bottom: 5px;
        }

        .story-meta {
            font-size: 0.85rem;
            color: var(--secondary-text);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- Shop Section --- */
        .shop-section {
            padding: 100px 20px;
            background: #f9f9f9;
            text-align: center;
        }

        .shop-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
            align-items: center;
        }

        .shop-item {
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .shop-image-wrapper {
            width: 100%;
            height: 400px;
            overflow: hidden;
            margin-bottom: 15px;
            position: relative;
        }

        .shop-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .shop-item:hover .shop-image-wrapper img {
            transform: scale(1.05);
        }

        .connector-line {
            width: 1px;
            height: 30px;
            background: var(--accent-color);
            margin: 0 auto;
            opacity: 0.5;
        }

        .shop-info {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .shop-item.text-top .shop-info {
            order: -1;
            margin-bottom: 15px;
        }
        
        .shop-item.text-bottom .shop-info {
            order: 1;
            margin-top: 15px;
        }

        .shop-name {
            font-size: 1rem;
            color: var(--primary-text);
            font-weight: 500;
        }

        .shop-price {
            font-size: 0.9rem;
            color: var(--secondary-text);
        }

        .shop-price .original {
            text-decoration: line-through;
            margin-right: 5px;
            opacity: 0.6;
        }

        .shop-price .sale {
            color: var(--accent-color);
            font-weight: 600;
        }

        /* --- Contact Section --- */
        .contact-section {
            padding: 100px 20px;
            background: white;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .contact-info h3 {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            color: var(--primary-text);
            font-style: italic;
            margin-bottom: 20px;
        }

        .contact-info p {
            color: var(--secondary-text);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-item svg {
            width: 24px;
            height: 24px;
            stroke: var(--accent-color);
            stroke-width: 1.5;
            fill: none;
        }

        .contact-item span {
            color: var(--primary-text);
            font-size: 0.95rem;
        }

        .contact-form {
            background: #f9f9f9;
            padding: 50px;
            border-radius: 10px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--primary-text);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: 1px solid #e0e0e0;
            font-family: var(--font-sans);
            font-size: 0.95rem;
            transition: border-color 0.3s ease;
            border-radius: 5px;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: var(--accent-color);
            color: white;
            border: none;
            font-family: var(--font-sans);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 5px;
        }

        .submit-btn:hover {
            background: #a88b89;
            transform: translateY(-2px);
        }

        /* --- Footer --- */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 80px 20px 30px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-col h4 {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            color: var(--accent-color);
            font-style: italic;
            margin-bottom: 25px;
        }

        .footer-col p {
            color: #999;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        .footer-socials {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-socials a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .footer-socials a:hover {
            background: var(--accent-color);
        }

        .footer-socials svg {
            width: 18px;
            height: 18px;
            fill: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            color: #666;
            font-size: 0.9rem;
        }

        /* --- Scroll to Top --- */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: #a88b89;
            transform: translateY(-5px);
        }

        .scroll-top svg {
            width: 24px;
            height: 24px;
            stroke: white;
            stroke-width: 2;
            fill: none;
        }

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .social-icons { display: none; }
            .nav-links { gap: 20px; }
            .nav-links li a { font-size: 0.75rem; }
            
            .services-grid,
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-card.featured {
                transform: none;
            }

            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }

            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .instagram-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .shop-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonial-container {
                flex-direction: column;
                margin: 0 20px;
            }
            .testimonial-image {
                min-height: 400px;
                width: 100%;
            }
            .testimonial-card {
                margin: 0;
                padding: 40px 20px;
            }
            .testimonial-card::before, .testimonial-card::after {
                display: none;
            }

            .story-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
            }
            .story-item:nth-child(n) .story-image-wrapper {
                height: 400px !important;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .lightbox-nav {
                display: none;
            }
        }

        @media (max-width: 768px) {
            header { padding: 12px 20px; }
            .desktop-only { display: none; }
            .mobile-toggle { display: flex; }
            .nav-wrapper { justify-content: flex-start; }
            .logo-container { position: static; transform: none; margin-right: auto; }
            .logo-img { height: 40px; }
            .utilities { margin-left: 15px; }
            .cart-wrapper { display: none; }

            .carousel-arrow {
                width: 45px;
                height: 45px;
            }
            .carousel-arrow.prev { left: 20px; }
            .carousel-arrow.next { right: 20px; }
            .slide-content h3 { font-size: 2.2rem; }
            .slide-content p { font-size: 1rem; }

            .services-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .instagram-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .shop-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
            
            .shop-item.text-top .shop-info {
                order: 1;
                margin-bottom: 0;
                margin-top: 15px;
            }
            .shop-item.text-bottom .shop-info {
                order: 1;
                margin-top: 15px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-socials {
                justify-content: center;
            }

            .couple-scroll-btn {
                display: none;
            }

            .review-card {
                min-width: 300px;
                padding: 30px;
            }
        }

        @media (max-width: 480px) {
            .carousel-arrow { display: none; }
            .slide-content h3 { font-size: 1.8rem; }
            .section-subtitle { font-size: 2rem; }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .instagram-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-form {
                padding: 30px 20px;
            }

            .testimonial-names {
                font-size: 1.5rem;
            }

            .lightbox-close {
                top: 10px;
                right: 10px;
            }
        }

/* ==========================================================================
   Adapted Page-Specific Styles from Reference
   ========================================================================== */

/* ==========================================================================
   Styles from about.html
   ========================================================================== */

/* ========== CSS VARIABLES ========== */
        :root {
            --lux-gold: var(--accent-color);
            --lux-gold-light: var(--accent-color);
            --lux-gold-dark: var(--accent-color);
            --lux-dark: #ffffff;
            --lux-dark-soft: #f9f9f9;
            --lux-dark-card: #ffffff;
            --lux-cream: #f5f0eb;
            --lux-text: #333333;
            --lux-text-muted: #777777;
            --lux-white: #111111;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-sans);
            background-color: #ffffff;
            color: var(--primary-text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: #ffffff; }
        ::-webkit-scrollbar-thumb { background: var(--accent-color); border-radius: 3px; }

        /* ========== ABOUT HEADER ========== */
        .about-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 50px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .about-header.scrolled {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            padding: 12px 50px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .about-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .about-logo-text {
            font-family: var(--font-serif);
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--lux-white);
            letter-spacing: 3px;
        }

        .about-logo-text span { color: var(--accent-color); }

        .about-nav {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }

        .about-nav a {
            text-decoration: none;
            color: var(--primary-text);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s ease;
        }

        .about-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent-color);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-nav a:hover { color: var(--accent-color); }
        .about-nav a:hover::after { width: 100%; }

        .about-nav a.active-link { color: var(--accent-color); }
        .about-nav a.active-link::after { width: 100%; }

        .about-nav-cta {
            padding: 10px 28px !important;
            border: 1px solid var(--accent-color) !important;
            color: var(--accent-color) !important;
            letter-spacing: 2px !important;
            transition: all 0.3s ease !important;
        }

        .about-nav-cta:hover {
            background: var(--accent-color) !important;
            color: var(--lux-dark) !important;
        }

        .about-nav-cta::after { display: none !important; }

        .about-mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .about-mobile-toggle .line {
            width: 28px;
            height: 1.5px;
            background: var(--lux-white);
            transition: all 0.3s ease;
        }

        .about-mobile-toggle.active .line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .about-mobile-toggle.active .line:nth-child(2) { opacity: 0; }
        .about-mobile-toggle.active .line:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .about-mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(30px);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
            transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        }

        .about-mobile-menu.active { transform: translateX(0); }

        .about-mobile-menu a {
            text-decoration: none;
            color: var(--lux-white);
            font-family: var(--font-serif);
            font-size: 2rem;
            font-style: italic;
            transition: color 0.3s ease;
        }

        .about-mobile-menu a:hover { color: var(--accent-color); }

        /* ========== ABOUT HERO ========== */
        .about-hero-section {
            position: relative;
            height: 80vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .about-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://image.qwenlm.ai/public_source/67e46500-fb37-4f42-9d53-e2c51c4fe0b1/1a99f7412-c2a6-4786-b3fb-55528ea6ee6e.png');
            background-size: cover;
            background-position: center;
            transform: scale(1.1);
            transition: transform 0.3s ease;
        }

        .about-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.85) 100%);
        }

        .about-hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 900px;
            padding: 0 30px;
        }

        .about-hero-label {
            font-family: var(--font-serif);
            font-size: 1rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: var(--accent-color);
            margin-bottom: 20px;
            display: block;
            opacity: 0;
            transform: translateY(30px);
            animation: aboutFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
        }

        .about-hero-title {
            font-family: var(--font-serif);
            font-size: 4.5rem;
            font-weight: 400;
            line-height: 1.1;
            color: var(--lux-white);
            margin-bottom: 25px;
            opacity: 0;
            transform: translateY(30px);
            animation: aboutFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
        }

        .about-hero-title em {
            font-style: italic;
            color: var(--accent-color);
        }

        .about-hero-desc {
            font-size: 1.05rem;
            font-weight: 300;
            color: var(--secondary-text);
            letter-spacing: 1px;
            line-height: 1.9;
            max-width: 650px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            animation: aboutFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
        }

        .about-hero-scroll-line {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            animation: aboutBounce 2s infinite;
        }

        .about-hero-scroll-line span {
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--secondary-text);
        }

        .about-hero-scroll-line .sline {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--accent-color), transparent);
        }

        @keyframes aboutFadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes aboutBounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        /* ========== OUR STORY ========== */
        .about-story-section {
            padding: 140px 50px;
            background: #ffffff;
        }

        .about-story-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-story-images {
            position: relative;
            height: 650px;
        }

        .about-story-img-main {
            width: 75%;
            height: 500px;
            object-fit: cover;
            border: 1px solid #f0f0f0;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 2;
        }

        .about-story-img-secondary {
            width: 55%;
            height: 350px;
            object-fit: cover;
            border: 1px solid #f0f0f0;
            position: absolute;
            bottom: 0;
            right: 0;
            z-index: 3;
        }

        .about-story-decoration {
            position: absolute;
            top: 30px;
            left: 30px;
            right: -20px;
            bottom: -20px;
            border: 1px solid var(--accent-color);
            opacity: 0.3;
            z-index: 1;
        }

        .about-story-accent-box {
            position: absolute;
            bottom: 80px;
            left: -15px;
            background: var(--accent-color);
            padding: 25px 30px;
            z-index: 4;
        }

        .about-story-accent-box .acb-number {
            font-family: var(--font-serif);
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--lux-dark);
            line-height: 1;
        }

        .about-story-accent-box .acb-text {
            font-size: 0.65rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--lux-dark);
            font-weight: 600;
            margin-top: 5px;
        }

        .about-story-text .as-label {
            font-family: var(--font-serif);
            font-size: 1rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--accent-color);
            margin-bottom: 15px;
            display: block;
        }

        .about-story-text h2 {
            font-family: var(--font-serif);
            font-size: 3rem;
            font-weight: 400;
            line-height: 1.2;
            color: var(--lux-white);
            margin-bottom: 30px;
        }

        .about-story-text h2 em {
            font-style: italic;
            color: var(--accent-color);
        }

        .about-story-text p {
            font-size: 0.95rem;
            line-height: 1.9;
            color: var(--secondary-text);
            font-weight: 300;
            margin-bottom: 20px;
        }

        .about-story-text .as-signature {
            margin-top: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .about-story-text .as-signature img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--accent-color);
        }

        .about-story-text .as-signature .sig-info h4 {
            font-family: var(--font-serif);
            font-size: 1.1rem;
            color: var(--lux-white);
        }

        .about-story-text .as-signature .sig-info span {
            font-size: 0.8rem;
            color: var(--accent-color);
            letter-spacing: 1px;
        }

        /* ========== PHILOSOPHY ========== */
        .about-philosophy-section {
            padding: 120px 50px;
            background: #f9f9f9;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .about-philosophy-section::before {
            content: '"';
            position: absolute;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            font-family: var(--font-serif);
            font-size: 15rem;
            color: var(--accent-color);
            opacity: 0.05;
            line-height: 1;
        }

        .about-philosophy-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .about-philosophy-content .ap-label {
            font-family: var(--font-serif);
            font-size: 1rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--accent-color);
            margin-bottom: 20px;
            display: block;
        }

        .about-philosophy-content blockquote {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            font-style: italic;
            font-weight: 400;
            color: var(--lux-white);
            line-height: 1.5;
            margin-bottom: 30px;
        }

        .about-philosophy-content .ap-author {
            font-family: var(--font-sans);
            font-size: 0.85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent-color);
            font-style: normal;
            display: block;
        }

        /* ========== VALUES ========== */
        .about-values-section {
            padding: 140px 50px;
            background: #ffffff;
        }

        .about-values-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .about-values-header .avh-label {
            font-family: var(--font-serif);
            font-size: 1rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--accent-color);
            margin-bottom: 15px;
            display: block;
        }

        .about-values-header h2 {
            font-family: var(--font-serif);
            font-size: 3rem;
            font-weight: 400;
            color: var(--lux-white);
        }

        .about-values-header h2 em {
            font-style: italic;
            color: var(--accent-color);
        }

        .about-values-header .avh-divider {
            width: 60px;
            height: 1px;
            background: var(--accent-color);
            margin: 25px auto 0;
        }

        .about-values-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .about-value-card {
            background: #ffffff;
            padding: 50px 30px;
            border: 1px solid rgba(201, 169, 110, 0.1);
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--accent-color);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .about-value-card:hover::before { transform: scaleX(1); }

        .about-value-card:hover {
            transform: translateY(-10px);
            border-color: rgba(201, 169, 110, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .about-value-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--accent-color);
            border-radius: 50%;
            transition: all 0.4s ease;
        }

        .about-value-card:hover .about-value-icon {
            background: var(--accent-color);
        }

        .about-value-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--accent-color);
            fill: none;
            stroke-width: 1.5;
            transition: stroke 0.4s ease;
        }

        .about-value-card:hover .about-value-icon svg { stroke: var(--lux-dark); }

        .about-value-card h3 {
            font-family: var(--font-serif);
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--lux-white);
            margin-bottom: 15px;
        }

        .about-value-card p {
            font-size: 0.85rem;
            line-height: 1.8;
            color: var(--secondary-text);
            font-weight: 300;
        }

        /* ========== TIMELINE ========== */
        .about-timeline-section {
            padding: 140px 50px;
            background: #f9f9f9;
            position: relative;
        }

        .about-timeline-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .about-timeline-header .ath-label {
            font-family: var(--font-serif);
            font-size: 1rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--accent-color);
            margin-bottom: 15px;
            display: block;
        }

        .about-timeline-header h2 {
            font-family: var(--font-serif);
            font-size: 3rem;
            font-weight: 400;
            color: var(--lux-white);
        }

        .about-timeline-header h2 em {
            font-style: italic;
            color: var(--accent-color);
        }

        .about-timeline-header .ath-divider {
            width: 60px;
            height: 1px;
            background: var(--accent-color);
            margin: 25px auto 0;
        }

        .about-timeline-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .about-timeline-line {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
        }

        .about-timeline-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 60px;
            position: relative;
        }

        .about-timeline-item:nth-child(odd) {
            flex-direction: row;
            text-align: right;
        }

        .about-timeline-item:nth-child(even) {
            flex-direction: row-reverse;
            text-align: left;
        }

        .about-timeline-item .ati-content {
            width: 45%;
            padding: 30px;
            background: #ffffff;
            border: 1px solid rgba(201, 169, 110, 0.1);
            transition: all 0.4s ease;
        }

        .about-timeline-item .ati-content:hover {
            border-color: rgba(201, 169, 110, 0.3);
            transform: translateY(-5px);
        }

        .about-timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background: var(--accent-color);
            border-radius: 50%;
            border: 3px solid var(--lux-dark-soft);
            z-index: 2;
            top: 35px;
        }

        .about-timeline-item .ati-year {
            font-family: var(--font-serif);
            font-size: 1.8rem;
            color: var(--accent-color);
            margin-bottom: 10px;
        }

        .about-timeline-item .ati-title {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            color: var(--lux-white);
            margin-bottom: 10px;
        }

        .about-timeline-item .ati-desc {
            font-size: 0.85rem;
            line-height: 1.7;
            color: var(--secondary-text);
            font-weight: 300;
        }

        /* ========== TEAM ========== */
        .about-team-section {
            padding: 140px 50px;
            background: #ffffff;
            text-align: center;
        }

        .about-team-header {
            margin-bottom: 80px;
        }

        .about-team-header .ath-label {
            font-family: var(--font-serif);
            font-size: 1rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--accent-color);
            margin-bottom: 15px;
            display: block;
        }

        .about-team-header h2 {
            font-family: var(--font-serif);
            font-size: 3rem;
            font-weight: 400;
            color: var(--lux-white);
        }

        .about-team-header h2 em {
            font-style: italic;
            color: var(--accent-color);
        }

        .about-team-header .ath-divider {
            width: 60px;
            height: 1px;
            background: var(--accent-color);
            margin: 25px auto 0;
        }

        .about-team-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .about-team-member {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            group: team;
        }

        .about-team-member .atm-image {
            width: 100%;
            height: 420px;
            overflow: hidden;
        }

        .about-team-member .atm-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            filter: grayscale(30%);
        }

        .about-team-member:hover .atm-image img {
            transform: scale(1.05);
            filter: grayscale(0%);
        }

        .about-team-member .atm-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px 20px;
            background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%);
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.5s ease;
        }

        .about-team-member:hover .atm-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .about-team-member .atm-overlay h3 {
            font-family: var(--font-serif);
            font-size: 1.3rem;
            color: var(--lux-white);
            margin-bottom: 5px;
        }

        .about-team-member .atm-overlay p {
            font-size: 0.75rem;
            color: var(--accent-color);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .about-team-member .atm-overlay .atm-socials {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 15px;
        }

        .about-team-member .atm-overlay .atm-socials a {
            width: 32px;
            height: 32px;
            border: 1px solid rgba(201, 169, 110, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .about-team-member .atm-overlay .atm-socials a:hover {
            background: var(--accent-color);
            border-color: var(--accent-color);
        }

        .about-team-member .atm-overlay .atm-socials a svg {
            width: 14px;
            height: 14px;
            fill: var(--lux-text-muted);
            transition: fill 0.3s ease;
        }

        .about-team-member .atm-overlay .atm-socials a:hover svg { fill: var(--lux-dark); }

        /* ========== AWARDS ========== */
        .about-awards-section {
            padding: 100px 50px;
            background: #f9f9f9;
        }

        .about-awards-track {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .about-award-item {
            text-align: center;
            padding: 30px;
            transition: transform 0.4s ease;
        }

        .about-award-item:hover { transform: translateY(-5px); }

        .about-award-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-award-icon svg {
            width: 50px;
            height: 50px;
            fill: var(--accent-color);
        }

        .about-award-item h4 {
            font-family: var(--font-serif);
            font-size: 1rem;
            color: var(--lux-white);
            margin-bottom: 5px;
        }

        .about-award-item span {
            font-size: 0.75rem;
            color: var(--secondary-text);
            letter-spacing: 1px;
        }

        /* ========== PROCESS ========== */
        .about-process-section {
            padding: 140px 50px;
            background: #ffffff;
        }

        .about-process-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .about-process-header .aph-label {
            font-family: var(--font-serif);
            font-size: 1rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--accent-color);
            margin-bottom: 15px;
            display: block;
        }

        .about-process-header h2 {
            font-family: var(--font-serif);
            font-size: 3rem;
            font-weight: 400;
            color: var(--lux-white);
        }

        .about-process-header h2 em {
            font-style: italic;
            color: var(--accent-color);
        }

        .about-process-header .aph-divider {
            width: 60px;
            height: 1px;
            background: var(--accent-color);
            margin: 25px auto 0;
        }

        .about-process-steps {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
        }

        .about-process-steps::before {
            content: '';
            position: absolute;
            top: 55px;
            left: 12.5%;
            right: 12.5%;
            height: 1px;
            background: rgba(201, 169, 110, 0.2);
        }

        .about-process-step {
            text-align: center;
            position: relative;
        }

        .about-process-step .aps-number {
            width: 50px;
            height: 50px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--accent-color);
            border-radius: 50%;
            font-family: var(--font-serif);
            font-size: 1.2rem;
            color: var(--accent-color);
            background: #ffffff;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .about-process-step:hover .aps-number {
            background: var(--accent-color);
            color: var(--lux-dark);
        }

        .about-process-step h3 {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            color: var(--lux-white);
            margin-bottom: 12px;
        }

        .about-process-step p {
            font-size: 0.85rem;
            line-height: 1.7;
            color: var(--secondary-text);
            font-weight: 300;
        }

        /* ========== CTA PARALLAX ========== */
        .about-cta-section {
            position: relative;
            height: 60vh;
            min-height: 400px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-cta-bg {
            position: absolute;
            top: -15%;
            left: 0;
            width: 100%;
            height: 130%;
            background-image: url('https://image.qwenlm.ai/public_source/67e46500-fb37-4f42-9d53-e2c51c4fe0b1/1cdd48e70-beb3-4717-8001-5c5509271f76.png');
            background-size: cover;
            background-position: center;
            will-change: transform;
        }

        .about-cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.8) 100%);
        }

        .about-cta-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 700px;
            padding: 0 30px;
        }

        .about-cta-content h2 {
            font-family: var(--font-serif);
            font-size: 3rem;
            font-weight: 400;
            color: var(--lux-white);
            margin-bottom: 20px;
        }

        .about-cta-content h2 em {
            font-style: italic;
            color: var(--accent-color);
        }

        .about-cta-content p {
            font-size: 1rem;
            color: var(--secondary-text);
            font-weight: 300;
            margin-bottom: 40px;
            letter-spacing: 1px;
        }

        .about-btn-primary {
            display: inline-block;
            padding: 16px 50px;
            background: var(--accent-color);
            color: var(--lux-dark);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .about-btn-primary:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(201, 169, 110, 0.3);
        }

        .about-btn-outline {
            display: inline-block;
            padding: 16px 50px;
            border: 1px solid var(--accent-color);
            color: var(--accent-color);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            margin-left: 15px;
        }

        .about-btn-outline:hover {
            background: var(--accent-color);
            color: var(--lux-dark);
        }

        /* ========== STATS BAR ========== */
        .about-stats-section {
            padding: 80px 50px;
            background: var(--accent-color);
        }

        .about-stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .about-stat-item .asi-number {
            font-family: var(--font-serif);
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--lux-dark);
            line-height: 1;
        }

        .about-stat-item .asi-label {
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--lux-dark);
            font-weight: 600;
            margin-top: 10px;
            opacity: 0.7;
        }

        /* ========== FOOTER ========== */
        .about-footer {
            background: #ffffff;
            padding: 80px 50px 30px;
            border-top: 1px solid rgba(201, 169, 110, 0.1);
        }

        .about-footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .about-footer-brand .afb-logo {
            font-family: var(--font-serif);
            font-size: 1.4rem;
            color: var(--lux-white);
            letter-spacing: 3px;
            margin-bottom: 20px;
            display: block;
        }

        .about-footer-brand .afb-logo span { color: var(--accent-color); }

        .about-footer-brand p {
            font-size: 0.9rem;
            color: var(--secondary-text);
            line-height: 1.8;
            font-weight: 300;
        }

        .about-footer-socials {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }

        .about-footer-socials a {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(201, 169, 110, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .about-footer-socials a:hover {
            background: var(--accent-color);
            border-color: var(--accent-color);
        }

        .about-footer-socials svg {
            width: 16px;
            height: 16px;
            fill: var(--lux-text-muted);
            transition: fill 0.3s ease;
        }

        .about-footer-socials a:hover svg { fill: var(--lux-dark); }

        .about-footer-col h4 {
            font-family: var(--font-serif);
            font-size: 1.1rem;
            color: var(--lux-white);
            margin-bottom: 25px;
        }

        .about-footer-col ul { list-style: none; }
        .about-footer-col ul li { margin-bottom: 12px; }

        .about-footer-col ul a {
            text-decoration: none;
            color: var(--secondary-text);
            font-size: 0.85rem;
            font-weight: 300;
            transition: color 0.3s ease;
        }

        .about-footer-col ul a:hover { color: var(--accent-color); }

        .about-footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .about-footer-bottom p {
            font-size: 0.8rem;
            color: var(--secondary-text);
            font-weight: 300;
        }

        /* ========== SCROLL ANIMATIONS ========== */
        .about-reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about-reveal-d1 { transition-delay: 0.1s; }
        .about-reveal-d2 { transition-delay: 0.2s; }
        .about-reveal-d3 { transition-delay: 0.3s; }
        .about-reveal-d4 { transition-delay: 0.4s; }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .about-hero-title { font-size: 3.5rem; }
            .about-story-container { grid-template-columns: 1fr; gap: 50px; }
            .about-story-images { height: 500px; }
            .about-values-grid { grid-template-columns: repeat(2, 1fr); }
            .about-timeline-item:nth-child(odd),
            .about-timeline-item:nth-child(even) {
                flex-direction: column;
                text-align: left;
                padding-left: 40px;
            }
            .about-timeline-item .ati-content { width: 100%; }
            .about-timeline-line { left: 15px; }
            .about-timeline-dot { left: 15px; }
            .about-team-grid { grid-template-columns: repeat(2, 1fr); }
            .about-process-steps { grid-template-columns: repeat(2, 1fr); }
            .about-process-steps::before { display: none; }
            .about-stats-container { grid-template-columns: repeat(2, 1fr); }
            .about-footer-container { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .about-header { padding: 15px 25px; }
            .about-header.scrolled { padding: 10px 25px; }
            .about-nav { display: none; }
            .about-mobile-toggle { display: flex; }
            .about-hero-section { height: 70vh; min-height: 500px; }
            .about-hero-title { font-size: 2.5rem; }
            .about-hero-desc { font-size: 0.9rem; }
            .about-story-section { padding: 80px 25px; }
            .about-story-images { height: 400px; }
            .about-story-text h2 { font-size: 2.2rem; }
            .about-story-img-main { width: 80%; height: 350px; }
            .about-story-img-secondary { width: 60%; height: 250px; }
            .about-philosophy-section { padding: 80px 25px; }
            .about-philosophy-content blockquote { font-size: 1.6rem; }
            .about-values-section { padding: 80px 25px; }
            .about-values-grid { grid-template-columns: 1fr; }
            .about-values-header h2 { font-size: 2.2rem; }
            .about-timeline-section { padding: 80px 25px; }
            .about-team-section { padding: 80px 25px; }
            .about-team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
            .about-team-member .atm-image { height: 350px; }
            .about-awards-section { padding: 60px 25px; }
            .about-awards-track { gap: 20px; }
            .about-process-section { padding: 80px 25px; }
            .about-process-steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
            .about-cta-section { height: 50vh; }
            .about-cta-content h2 { font-size: 2rem; }
            .about-btn-outline { margin-left: 0; margin-top: 15px; display: block; }
            .about-stats-section { padding: 60px 25px; }
            .about-stats-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .about-stat-item .asi-number { font-size: 2.5rem; }
            .about-footer { padding: 60px 25px 20px; }
            .about-footer-container { grid-template-columns: 1fr; gap: 40px; }
            .about-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
        }

        @media (max-width: 480px) {
            .about-hero-title { font-size: 2rem; }
            .about-story-images { height: 350px; }
            .about-story-img-main { width: 85%; height: 280px; }
            .about-story-img-secondary { width: 70%; height: 200px; }
        }

/* ==========================================================================
   Styles from contact.html
   ========================================================================== */

/* ========== CSS VARIABLES ========== */
        :root {
            --cnt-gold: var(--accent-color);
            --cnt-gold-light: var(--accent-color);
            --cnt-gold-dark: var(--accent-color);
            --cnt-dark: #ffffff;
            --cnt-dark-soft: #f9f9f9;
            --cnt-dark-card: #ffffff;
            --cnt-cream: #f5f0eb;
            --cnt-text: #333333;
            --cnt-text-muted: #777777;
            --cnt-white: #111111;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-sans);
            background-color: var(--cnt-dark);
            color: var(--cnt-text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--cnt-dark); }
        ::-webkit-scrollbar-thumb { background: var(--cnt-gold); border-radius: 3px; }

        /* ========== HEADER ========== */
        .cnt-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 50px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .cnt-header.scrolled {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            padding: 12px 50px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .cnt-logo {
            text-decoration: none;
            font-family: var(--font-serif);
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--cnt-white);
            letter-spacing: 3px;
        }

        .cnt-logo span { color: var(--cnt-gold); }

        .cnt-nav {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }

        .cnt-nav a {
            text-decoration: none;
            color: var(--cnt-text);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s ease;
        }

        .cnt-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--cnt-gold);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .cnt-nav a:hover { color: var(--cnt-gold); }
        .cnt-nav a:hover::after { width: 100%; }
        .cnt-nav a.cnt-active-link { color: var(--cnt-gold); }
        .cnt-nav a.cnt-active-link::after { width: 100%; }

        .cnt-nav-cta {
            padding: 10px 28px !important;
            border: 1px solid var(--cnt-gold) !important;
            color: var(--cnt-gold) !important;
            letter-spacing: 2px !important;
            transition: all 0.3s ease !important;
        }

        .cnt-nav-cta:hover {
            background: var(--cnt-gold) !important;
            color: var(--cnt-dark) !important;
        }

        .cnt-nav-cta::after { display: none !important; }

        .cnt-mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .cnt-mobile-toggle .cnt-line {
            width: 28px;
            height: 1.5px;
            background: var(--cnt-white);
            transition: all 0.3s ease;
        }

        .cnt-mobile-toggle.active .cnt-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .cnt-mobile-toggle.active .cnt-line:nth-child(2) { opacity: 0; }
        .cnt-mobile-toggle.active .cnt-line:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .cnt-mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(30px);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
            transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        }

        .cnt-mobile-menu.active { transform: translateX(0); }

        .cnt-mobile-menu a {
            text-decoration: none;
            color: var(--cnt-white);
            font-family: var(--font-serif);
            font-size: 2rem;
            font-style: italic;
            transition: color 0.3s ease;
        }

        .cnt-mobile-menu a:hover { color: var(--cnt-gold); }

        /* ========== CONTACT HERO ========== */
        .cnt-hero {
            position: relative;
            height: 70vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .cnt-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://image.qwenlm.ai/public_source/67e46500-fb37-4f42-9d53-e2c51c4fe0b1/18c549c43-4b63-48d0-bcaa-e15741f5be23.png');
            background-size: cover;
            background-position: center;
            transform: scale(1.1);
        }

        .cnt-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.9) 100%);
        }

        .cnt-hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 800px;
            padding: 0 30px;
        }

        .cnt-hero-label {
            font-family: var(--font-serif);
            font-size: 1rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: var(--cnt-gold);
            margin-bottom: 20px;
            display: block;
            opacity: 0;
            transform: translateY(30px);
            animation: cntFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
        }

        .cnt-hero-title {
            font-family: var(--font-serif);
            font-size: 4rem;
            font-weight: 400;
            line-height: 1.1;
            color: var(--cnt-white);
            margin-bottom: 25px;
            opacity: 0;
            transform: translateY(30px);
            animation: cntFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
        }

        .cnt-hero-title em {
            font-style: italic;
            color: var(--cnt-gold);
        }

        .cnt-hero-desc {
            font-size: 1.05rem;
            font-weight: 300;
            color: var(--cnt-text-muted);
            letter-spacing: 1px;
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            animation: cntFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
        }

        .cnt-hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            animation: cntBounce 2s infinite;
        }

        .cnt-hero-scroll span {
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--cnt-text-muted);
        }

        .cnt-hero-scroll .cnt-sline {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--cnt-gold), transparent);
        }

        @keyframes cntFadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes cntBounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        /* ========== CONTACT INFO CARDS ========== */
        .cnt-info-section {
            padding: 100px 50px;
            background: var(--cnt-dark);
        }

        .cnt-info-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .cnt-info-card {
            background: var(--cnt-dark-card);
            padding: 40px 30px;
            border: 1px solid rgba(201, 169, 110, 0.1);
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .cnt-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--cnt-gold);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .cnt-info-card:hover::before { transform: scaleX(1); }

        .cnt-info-card:hover {
            transform: translateY(-8px);
            border-color: rgba(201, 169, 110, 0.3);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .cnt-info-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--cnt-gold);
            border-radius: 50%;
            transition: all 0.4s ease;
        }

        .cnt-info-card:hover .cnt-info-icon {
            background: var(--cnt-gold);
        }

        .cnt-info-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--cnt-gold);
            fill: none;
            stroke-width: 1.5;
            transition: stroke 0.4s ease;
        }

        .cnt-info-card:hover .cnt-info-icon svg { stroke: var(--cnt-dark); }

        .cnt-info-card h3 {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            color: var(--cnt-white);
            margin-bottom: 10px;
        }

        .cnt-info-card p {
            font-size: 0.9rem;
            color: var(--cnt-text-muted);
            font-weight: 300;
            line-height: 1.7;
        }

        .cnt-info-card a {
            color: var(--cnt-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .cnt-info-card a:hover { color: var(--cnt-gold-light); }

        /* ========== MAIN CONTACT ========== */
        .cnt-main-section {
            padding: 140px 50px;
            background: var(--cnt-dark-soft);
        }

        .cnt-main-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: start;
        }

        /* Left Side */
        .cnt-left h2 {
            font-family: var(--font-serif);
            font-size: 2.8rem;
            font-weight: 400;
            color: var(--cnt-white);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .cnt-left h2 em {
            font-style: italic;
            color: var(--cnt-gold);
        }

        .cnt-left > p {
            font-size: 0.95rem;
            color: var(--cnt-text-muted);
            line-height: 1.8;
            font-weight: 300;
            margin-bottom: 40px;
        }

        .cnt-contact-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 50px;
        }

        .cnt-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .cnt-contact-item .cci-icon {
            width: 55px;
            height: 55px;
            border: 1px solid var(--cnt-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .cnt-contact-item:hover .cci-icon {
            background: var(--cnt-gold);
        }

        .cnt-contact-item .cci-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--cnt-gold);
            fill: none;
            stroke-width: 1.5;
            transition: stroke 0.3s ease;
        }

        .cnt-contact-item:hover .cci-icon svg { stroke: var(--cnt-dark); }

        .cnt-contact-item .cci-info h4 {
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--cnt-gold);
            margin-bottom: 6px;
        }

        .cnt-contact-item .cci-info span {
            font-size: 0.95rem;
            color: var(--cnt-text);
            font-weight: 300;
        }

        .cnt-social-links {
            display: flex;
            gap: 12px;
        }

        .cnt-social-links a {
            width: 45px;
            height: 45px;
            border: 1px solid rgba(201, 169, 110, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .cnt-social-links a:hover {
            background: var(--cnt-gold);
            border-color: var(--cnt-gold);
        }

        .cnt-social-links a svg {
            width: 18px;
            height: 18px;
            fill: var(--cnt-text-muted);
            transition: fill 0.3s ease;
        }

        .cnt-social-links a:hover svg { fill: var(--cnt-dark); }

        /* Right Side - Form */
        .cnt-form-wrapper {
            background: var(--cnt-dark-card);
            padding: 50px;
            border: 1px solid rgba(201, 169, 110, 0.1);
            position: relative;
        }

        .cnt-form-wrapper::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 20%;
            right: 20%;
            height: 2px;
            background: var(--cnt-gold);
        }

        .cnt-form-title {
            font-family: var(--font-serif);
            font-size: 1.6rem;
            color: var(--cnt-white);
            margin-bottom: 30px;
        }

        .cnt-form-title em {
            font-style: italic;
            color: var(--cnt-gold);
        }

        .cnt-form-group {
            margin-bottom: 25px;
        }

        .cnt-form-group label {
            display: block;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--cnt-text-muted);
            margin-bottom: 10px;
        }

        .cnt-form-group input,
        .cnt-form-group textarea,
        .cnt-form-group select {
            width: 100%;
            padding: 15px 20px;
            background: var(--cnt-dark-soft);
            border: 1px solid rgba(201, 169, 110, 0.15);
            color: var(--cnt-text);
            font-family: var(--font-sans);
            font-size: 0.9rem;
            transition: border-color 0.3s ease;
            outline: none;
            border-radius: 0;
        }

        .cnt-form-group input:focus,
        .cnt-form-group textarea:focus,
        .cnt-form-group select:focus {
            border-color: var(--cnt-gold);
        }

        .cnt-form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .cnt-form-group select {
            appearance: none;
            background-image: url("image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            padding-right: 40px;
            cursor: pointer;
        }

        .cnt-form-group select option {
            background: var(--cnt-dark-soft);
            color: var(--cnt-text);
        }

        .cnt-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .cnt-submit-btn {
            width: 100%;
            padding: 18px;
            background: var(--cnt-gold);
            color: var(--cnt-dark);
            border: none;
            font-family: var(--font-sans);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            position: relative;
            overflow: hidden;
        }

        .cnt-submit-btn:hover {
            background: var(--cnt-gold-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
        }

        .cnt-submit-btn:active {
            transform: translateY(0);
        }

        .cnt-form-note {
            font-size: 0.8rem;
            color: var(--cnt-text-muted);
            font-weight: 300;
            margin-top: 15px;
            text-align: center;
        }

        /* ========== MAP SECTION ========== */
        .cnt-map-section {
            position: relative;
            height: 500px;
            overflow: hidden;
        }

        .cnt-map-frame {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(100%) brightness(0.5) contrast(1.2);
            transition: filter 0.5s ease;
        }

        .cnt-map-section:hover .cnt-map-frame {
            filter: grayscale(60%) brightness(0.6) contrast(1.1);
        }

        .cnt-map-overlay-card {
            position: absolute;
            top: 50%;
            left: 80px;
            transform: translateY(-50%);
            background: var(--cnt-dark-card);
            padding: 40px;
            border: 1px solid #f0f0f0;
            max-width: 380px;
            z-index: 10;
        }

        .cnt-map-overlay-card h3 {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            color: var(--cnt-white);
            margin-bottom: 15px;
        }

        .cnt-map-overlay-card p {
            font-size: 0.9rem;
            color: var(--cnt-text-muted);
            font-weight: 300;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .cnt-map-btn {
            display: inline-block;
            padding: 12px 30px;
            border: 1px solid var(--cnt-gold);
            color: var(--cnt-gold);
            text-decoration: none;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .cnt-map-btn:hover {
            background: var(--cnt-gold);
            color: var(--cnt-dark);
        }

        /* ========== FAQ SECTION ========== */
        .cnt-faq-section {
            padding: 140px 50px;
            background: var(--cnt-dark);
        }

        .cnt-faq-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .cnt-faq-header .cfh-label {
            font-family: var(--font-serif);
            font-size: 1rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--cnt-gold);
            margin-bottom: 15px;
            display: block;
        }

        .cnt-faq-header h2 {
            font-family: var(--font-serif);
            font-size: 3rem;
            font-weight: 400;
            color: var(--cnt-white);
        }

        .cnt-faq-header h2 em {
            font-style: italic;
            color: var(--cnt-gold);
        }

        .cnt-faq-header .cfh-divider {
            width: 60px;
            height: 1px;
            background: var(--cnt-gold);
            margin: 25px auto 0;
        }

        .cnt-faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .cnt-faq-item {
            border-bottom: 1px solid rgba(201, 169, 110, 0.1);
            overflow: hidden;
        }

        .cnt-faq-question {
            width: 100%;
            padding: 25px 0;
            background: none;
            border: none;
            color: var(--cnt-white);
            font-family: var(--font-serif);
            font-size: 1.15rem;
            font-weight: 500;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            transition: color 0.3s ease;
        }

        .cnt-faq-question:hover { color: var(--cnt-gold); }

        .cnt-faq-icon {
            width: 30px;
            height: 30px;
            border: 1px solid var(--cnt-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .cnt-faq-question.active .cnt-faq-icon {
            background: var(--cnt-gold);
        }

        .cnt-faq-icon svg {
            width: 14px;
            height: 14px;
            stroke: var(--cnt-gold);
            fill: none;
            stroke-width: 2;
            transition: all 0.3s ease;
        }

        .cnt-faq-question.active .cnt-faq-icon svg {
            stroke: var(--cnt-dark);
            transform: rotate(45deg);
        }

        .cnt-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
        }

        .cnt-faq-answer.open {
            max-height: 300px;
            padding-bottom: 25px;
        }

        .cnt-faq-answer p {
            font-size: 0.9rem;
            line-height: 1.8;
            color: var(--cnt-text-muted);
            font-weight: 300;
        }

        /* ========== CTA SECTION ========== */
        .cnt-cta-section {
            position: relative;
            height: 60vh;
            min-height: 400px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cnt-cta-bg {
            position: absolute;
            top: -15%;
            left: 0;
            width: 100%;
            height: 130%;
            background-image: url('https://image.qwenlm.ai/public_source/67e46500-fb37-4f42-9d53-e2c51c4fe0b1/1cdd48e70-beb3-4717-8001-5c5509271f76.png');
            background-size: cover;
            background-position: center;
            will-change: transform;
        }

        .cnt-cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.85) 100%);
        }

        .cnt-cta-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 700px;
            padding: 0 30px;
        }

        .cnt-cta-content h2 {
            font-family: var(--font-serif);
            font-size: 3rem;
            font-weight: 400;
            color: var(--cnt-white);
            margin-bottom: 20px;
        }

        .cnt-cta-content h2 em {
            font-style: italic;
            color: var(--cnt-gold);
        }

        .cnt-cta-content p {
            font-size: 1rem;
            color: var(--cnt-text-muted);
            font-weight: 300;
            margin-bottom: 40px;
            letter-spacing: 1px;
        }

        .cnt-btn-primary {
            display: inline-block;
            padding: 16px 50px;
            background: var(--cnt-gold);
            color: var(--cnt-dark);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: all 0.4s ease;
        }

        .cnt-btn-primary:hover {
            background: var(--cnt-gold-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(201, 169, 110, 0.3);
        }

        /* ========== SUCCESS MODAL ========== */
        .cnt-success-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 3000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .cnt-success-modal.active { opacity: 1; visibility: visible; }

        .cnt-success-card {
            background: var(--cnt-dark-card);
            padding: 60px 50px;
            border: 1px solid #f0f0f0;
            text-align: center;
            max-width: 500px;
            transform: scale(0.8);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .cnt-success-modal.active .cnt-success-card { transform: scale(1); }

        .cnt-success-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            border: 2px solid var(--cnt-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cnt-success-icon svg {
            width: 40px;
            height: 40px;
            stroke: var(--cnt-gold);
            fill: none;
            stroke-width: 2;
        }

        .cnt-success-card h3 {
            font-family: var(--font-serif);
            font-size: 2rem;
            color: var(--cnt-white);
            margin-bottom: 15px;
        }

        .cnt-success-card p {
            font-size: 0.95rem;
            color: var(--cnt-text-muted);
            font-weight: 300;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .cnt-success-close {
            padding: 14px 40px;
            background: var(--cnt-gold);
            color: var(--cnt-dark);
            border: none;
            font-family: var(--font-sans);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cnt-success-close:hover {
            background: var(--cnt-gold-light);
        }

        /* ========== FOOTER ========== */
        .cnt-footer {
            background: var(--cnt-dark);
            padding: 80px 50px 30px;
            border-top: 1px solid rgba(201, 169, 110, 0.1);
        }

        .cnt-footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .cnt-footer-brand .cfb-logo {
            font-family: var(--font-serif);
            font-size: 1.4rem;
            color: var(--cnt-white);
            letter-spacing: 3px;
            margin-bottom: 20px;
            display: block;
        }

        .cnt-footer-brand .cfb-logo span { color: var(--cnt-gold); }

        .cnt-footer-brand p {
            font-size: 0.9rem;
            color: var(--cnt-text-muted);
            line-height: 1.8;
            font-weight: 300;
        }

        .cnt-footer-socials {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }

        .cnt-footer-socials a {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(201, 169, 110, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .cnt-footer-socials a:hover {
            background: var(--cnt-gold);
            border-color: var(--cnt-gold);
        }

        .cnt-footer-socials svg {
            width: 16px;
            height: 16px;
            fill: var(--cnt-text-muted);
            transition: fill 0.3s ease;
        }

        .cnt-footer-socials a:hover svg { fill: var(--cnt-dark); }

        .cnt-footer-col h4 {
            font-family: var(--font-serif);
            font-size: 1.1rem;
            color: var(--cnt-white);
            margin-bottom: 25px;
        }

        .cnt-footer-col ul { list-style: none; }
        .cnt-footer-col ul li { margin-bottom: 12px; }

        .cnt-footer-col ul a {
            text-decoration: none;
            color: var(--cnt-text-muted);
            font-size: 0.85rem;
            font-weight: 300;
            transition: color 0.3s ease;
        }

        .cnt-footer-col ul a:hover { color: var(--cnt-gold); }

        .cnt-footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cnt-footer-bottom p {
            font-size: 0.8rem;
            color: var(--cnt-text-muted);
            font-weight: 300;
        }

        /* ========== SCROLL REVEAL ========== */
        .cnt-reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .cnt-reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .cnt-reveal-d1 { transition-delay: 0.1s; }
        .cnt-reveal-d2 { transition-delay: 0.2s; }
        .cnt-reveal-d3 { transition-delay: 0.3s; }
        .cnt-reveal-d4 { transition-delay: 0.4s; }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .cnt-hero-title { font-size: 3rem; }
            .cnt-info-container { grid-template-columns: repeat(2, 1fr); }
            .cnt-main-container { grid-template-columns: 1fr; gap: 60px; }
            .cnt-map-overlay-card { left: 40px; max-width: 320px; }
            .cnt-footer-container { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .cnt-header { padding: 15px 25px; }
            .cnt-header.scrolled { padding: 10px 25px; }
            .cnt-nav { display: none; }
            .cnt-mobile-toggle { display: flex; }
            .cnt-hero { height: 60vh; min-height: 400px; }
            .cnt-hero-title { font-size: 2.2rem; }
            .cnt-hero-desc { font-size: 0.9rem; }
            .cnt-info-section { padding: 60px 25px; }
            .cnt-info-container { grid-template-columns: 1fr; }
            .cnt-main-section { padding: 80px 25px; }
            .cnt-left h2 { font-size: 2rem; }
            .cnt-form-wrapper { padding: 30px; }
            .cnt-form-row { grid-template-columns: 1fr; }
            .cnt-map-section { height: 400px; }
            .cnt-map-overlay-card {
                position: relative;
                top: auto;
                left: auto;
                transform: none;
                max-width: 100%;
                margin: 0;
            }
            .cnt-faq-section { padding: 80px 25px; }
            .cnt-faq-header h2 { font-size: 2.2rem; }
            .cnt-cta-section { height: 50vh; }
            .cnt-cta-content h2 { font-size: 2rem; }
            .cnt-footer { padding: 60px 25px 20px; }
            .cnt-footer-container { grid-template-columns: 1fr; gap: 40px; }
            .cnt-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
            .cnt-success-card { padding: 40px 30px; }
        }

        @media (max-width: 480px) {
            .cnt-hero-title { font-size: 1.8rem; }
        }

/* ==========================================================================
   Styles from index.html
   ========================================================================== */

:root {
            --gold: var(--accent-color);
            --gold-light: var(--accent-color);
            --dark: #ffffff;
            --dark-soft: #f9f9f9;
            --dark-card: #ffffff;
            --cream: #f5f0eb;
            --text-light: #333333;
            --text-muted: #777777;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--dark);
            color: var(--text-light);
            overflow-x: hidden;
        }

        /* Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--dark); }
        ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

        /* ========== HEADER ========== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 50px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header.scrolled {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            padding: 12px 50px;
            box-shadow: 0 4px 30px rgba(0,0,0,0.3);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon svg {
            width: 100%;
            height: 100%;
        }

        .logo-text {
            font-family: var(--font-serif);
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--white);
            letter-spacing: 3px;
        }

        .logo-text span {
            color: var(--gold);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover { color: var(--gold); }
        .nav-links a:hover::after { width: 100%; }

        .nav-links a.active-link { color: var(--gold); }
        .nav-links a.active-link::after { width: 100%; }

        .nav-cta {
            padding: 10px 28px !important;
            border: 1px solid var(--gold) !important;
            color: var(--gold) !important;
            letter-spacing: 2px !important;
            transition: all 0.3s ease !important;
        }

        .nav-cta:hover {
            background: var(--gold) !important;
            color: var(--dark) !important;
        }

        .nav-cta::after { display: none !important; }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .mobile-toggle .line {
            width: 28px;
            height: 1.5px;
            background: var(--white);
            transition: all 0.3s ease;
        }

        .mobile-toggle.active .line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .mobile-toggle.active .line:nth-child(2) { opacity: 0; }
        .mobile-toggle.active .line:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(30px);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
            transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        }

        .mobile-menu.active { transform: translateX(0); }

        .mobile-menu a {
            text-decoration: none;
            color: var(--white);
            font-family: var(--font-serif);
            font-size: 2rem;
            font-style: italic;
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover { color: var(--gold); }

        /* ========== PARALLAX SECTIONS ========== */
        .parallax-section {
            position: relative;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .parallax-bg {
            position: absolute;
            top: -20%;
            left: 0;
            width: 100%;
            height: 140%;
            background-size: cover;
            background-position: center;
            will-change: transform;
        }

        .parallax-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.65) 100%);
        }

        .parallax-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 900px;
            padding: 0 30px;
        }

        .parallax-content .subtitle {
            font-family: var(--font-serif);
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 12px;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
        }

        .parallax-content h1 {
            font-family: var(--font-serif);
            font-size: 3.5rem;
            font-weight: 400;
            line-height: 1.1;
            color: var(--white);
            margin-bottom: 18px;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
        }

        .parallax-content h1 em {
            font-style: italic;
            color: var(--gold);
        }

        .parallax-content p {
            font-size: 0.9rem;
            font-weight: 300;
            color: var(--text-muted);
            letter-spacing: 1px;
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto 30px;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
        }

        .parallax-content.visible .subtitle,
        .parallax-content.visible h1,
        .parallax-content.visible p {
            opacity: 1;
            transform: translateY(0);
        }

        .btn-primary {
            display: inline-block;
            padding: 16px 50px;
            background: var(--gold);
            color: var(--dark);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
        }

        .btn-primary.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .btn-primary:hover {
            background: var(--gold-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(201, 169, 110, 0.3);
        }

        /* Hero Section (#home) specific overrides */
        #home.parallax-section {
            align-items: flex-end;
            padding-bottom: 150px;
        }

        #home .parallax-overlay {
            background: linear-gradient(to bottom, rgba(10,10,10,0) 30%, rgba(10,10,10,0.3) 60%, rgba(10,10,10,0.85) 100%);
        }

        #home .parallax-content {
            max-width: 800px;
        }

        #home .parallax-content .subtitle {
            font-size: 0.85rem;
            letter-spacing: 4px;
            margin-bottom: 8px;
        }

        #home .parallax-content h1 {
            font-size: 2.6rem;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }

        #home .parallax-content p {
            font-size: 0.85rem;
            margin-bottom: 24px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        #home .btn-primary {
            padding: 12px 40px;
            font-size: 0.75rem;
            letter-spacing: 2px;
        }

        @media (max-width: 768px) {
            #home.parallax-section {
                padding-bottom: 120px;
            }
            #home .parallax-content h1 {
                font-size: 1.8rem;
                margin-bottom: 8px;
            }
            #home .parallax-content p {
                font-size: 0.8rem;
                margin-bottom: 20px;
            }
            #home .btn-primary {
                padding: 10px 30px;
                font-size: 0.7rem;
            }
        }

        .btn-outline {
            display: inline-block;
            padding: 16px 50px;
            border: 1px solid var(--gold);
            color: var(--gold);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: all 0.4s ease;
        }

        .btn-outline:hover {
            background: var(--gold);
            color: var(--dark);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            animation: bounce 2s infinite;
        }

        .scroll-indicator span {
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .scroll-indicator .line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--gold), transparent);
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        /* ========== ABOUT SECTION ========== */
        .about-section {
            padding: 140px 50px;
            background: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-container {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            filter: brightness(0.9);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: 20px;
            bottom: 20px;
            border: 1px solid var(--gold);
            z-index: -1;
            transition: all 0.5s ease;
        }

        .about-image:hover::before {
            top: -10px;
            left: -10px;
        }

        .about-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 120px;
            height: 120px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--dark);
        }

        .about-badge .number {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1;
        }

        .about-badge .text {
            font-size: 0.6rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .about-content .section-label {
            font-family: var(--font-serif);
            font-size: 1rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 15px;
        }

        .about-content h2 {
            font-family: var(--font-serif);
            font-size: 3.2rem;
            font-weight: 400;
            line-height: 1.2;
            color: var(--white);
            margin-bottom: 25px;
        }

        .about-content h2 em {
            font-style: italic;
            color: var(--gold);
        }

        .about-content p {
            font-size: 0.95rem;
            line-height: 1.9;
            color: var(--text-muted);
            margin-bottom: 15px;
            font-weight: 300;
        }

        .about-stats {
            display: flex;
            gap: 40px;
            margin-top: 40px;
            padding-top: 40px;
            border-top: 1px solid rgba(201, 169, 110, 0.2);
        }

        .stat-item .stat-number {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            color: var(--gold);
            font-weight: 600;
        }

        .stat-item .stat-label {
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-top: 5px;
        }

        /* ========== SERVICES ========== */
        .services-section {
            padding: 140px 50px;
            background: var(--dark-soft);
            text-align: center;
        }

        .section-header {
            margin-bottom: 70px;
        }

        .section-header .label {
            font-family: var(--font-serif);
            font-size: 1rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 15px;
            display: block;
        }

        .section-header h2 {
            font-family: var(--font-serif);
            font-size: 3.2rem;
            font-weight: 400;
            color: var(--white);
        }

        .section-header h2 em {
            font-style: italic;
            color: var(--gold);
        }

        .section-header .divider {
            width: 60px;
            height: 1px;
            background: var(--gold);
            margin: 25px auto 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--dark-card);
            padding: 50px 35px;
            border: 1px solid rgba(201, 169, 110, 0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .service-card:hover::before { transform: scaleX(1); }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(201, 169, 110, 0.3);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--gold);
            border-radius: 50%;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            background: var(--gold);
        }

        .service-icon svg {
            width: 30px;
            height: 30px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.5;
            transition: stroke 0.4s ease;
            stroke: var(--dark);
        }

        .service-card:hover .service-icon svg { stroke: var(--dark); }

        .service-card h3 {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--white);
            margin-bottom: 15px;
        }

        .service-card p {
            font-size: 0.9rem;
            line-height: 1.8;
            color: var(--text-muted);
            font-weight: 300;
        }

        /* ========== PARALLAX QUOTE ========== */
        .quote-section {
            position: relative;
            height: 80vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quote-section .parallax-bg {
            top: -15%;
            height: 130%;
        }

        .quote-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 800px;
            padding: 0 30px;
        }

        .quote-content .quote-mark {
            font-family: var(--font-serif);
            font-size: 6rem;
            color: var(--gold);
            line-height: 1;
            opacity: 0.6;
            margin-bottom: -20px;
        }

        .quote-content blockquote {
            font-family: var(--font-serif);
            font-size: 2.2rem;
            font-style: italic;
            font-weight: 400;
            color: var(--white);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .quote-content cite {
            font-family: var(--font-sans);
            font-size: 0.85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            font-style: normal;
        }

        /* ========== HORIZONTAL SCROLL SECTION ========== */
        .horizontal-section {
            padding: 140px 0;
            background: var(--dark);
            overflow: hidden;
        }

        .horizontal-section .section-header {
            padding: 0 50px;
            margin-bottom: 60px;
        }

        .horizontal-track-wrapper {
            position: relative;
        }

        .horizontal-track {
            display: flex;
            gap: 25px;
            padding: 0 50px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            scroll-snap-type: x mandatory;
        }

        .horizontal-track::-webkit-scrollbar { display: none; }

        .portfolio-card {
            min-width: 400px;
            scroll-snap-align: start;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            group: portfolio;
        }

        .portfolio-card .card-image {
            width: 100%;
            height: 500px;
            overflow: hidden;
            position: relative;
        }

        .portfolio-card .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .portfolio-card:hover .card-image img {
            transform: scale(1.08);
        }

        .portfolio-card .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 30px;
            background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%);
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s ease;
        }

        .portfolio-card:hover .card-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .card-overlay h3 {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 5px;
        }

        .card-overlay p {
            font-size: 0.8rem;
            color: var(--gold);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .horizontal-nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 50px;
        }

        .horizontal-nav button {
            width: 60px;
            height: 60px;
            border: 1px solid var(--gold);
            background: transparent;
            color: var(--gold);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .horizontal-nav button:hover {
            background: var(--gold);
            color: var(--dark);
        }

        .horizontal-nav button svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }

        /* ========== GALLERY ========== */
        .gallery-section {
            padding: 140px 50px;
            background: var(--dark-soft);
        }

        .gallery-filters {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 30px;
            background: transparent;
            border: 1px solid rgba(201, 169, 110, 0.3);
            color: var(--text-muted);
            font-family: var(--font-sans);
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--dark);
        }

        .gallery-masonry {
            max-width: 1400px;
            margin: 0 auto;
            columns: 4;
            column-gap: 15px;
        }

        .gallery-item {
            break-inside: avoid;
            margin-bottom: 15px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            display: block;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-item:hover img { transform: scale(1.05); }

        .gallery-item .item-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 10, 10, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-item:hover .item-overlay { opacity: 1; }

        .item-overlay svg {
            width: 40px;
            height: 40px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.5;
            transform: scale(0.5);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .item-overlay svg { transform: scale(1); }

        /* Lightbox */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.97);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .lightbox.active { opacity: 1; visibility: visible; }

        .lightbox-img {
            max-width: 85%;
            max-height: 85vh;
            object-fit: contain;
            border: 3px solid var(--gold);
        }

        .lightbox-close {
            position: absolute;
            top: 30px;
            right: 30px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .lightbox-close svg {
            width: 30px;
            height: 30px;
            stroke: var(--white);
            fill: none;
            stroke-width: 2;
        }

        .lightbox-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: 1px solid rgba(255,255,255,0.3);
            width: 55px;
            height: 55px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .lightbox-nav-btn:hover {
            border-color: var(--gold);
            background: rgba(201, 169, 110, 0.1);
        }

        .lightbox-nav-btn svg {
            width: 22px;
            height: 22px;
            stroke: var(--white);
            fill: none;
            stroke-width: 2;
        }

        .lightbox-prev { left: 30px; }
        .lightbox-next { right: 30px; }

        /* ========== VIDEO SECTION ========== */
        .video-section {
            position: relative;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-section .parallax-bg {
            top: -15%;
            height: 130%;
        }

        .video-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 700px;
            padding: 0 30px;
        }

        .play-btn {
            width: 100px;
            height: 100px;
            border: 2px solid var(--gold);
            border-radius: 50%;
            background: rgba(201, 169, 110, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            margin: 0 auto 30px;
            transition: all 0.4s ease;
            position: relative;
        }

        .play-btn::before {
            content: '';
            position: absolute;
            width: 130px;
            height: 130px;
            border: 1px solid rgba(201, 169, 110, 0.3);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        .play-btn:hover {
            background: var(--gold);
            transform: scale(1.1);
        }

        .play-btn svg {
            width: 30px;
            height: 30px;
            fill: var(--gold);
            margin-left: 5px;
            transition: fill 0.3s ease;
        }

        .play-btn:hover svg { fill: var(--dark); }

        .video-content h2 {
            font-family: var(--font-serif);
            font-size: 3rem;
            font-weight: 400;
            color: var(--white);
            margin-bottom: 15px;
        }

        .video-content h2 em {
            font-style: italic;
            color: var(--gold);
        }

        .video-content p {
            font-size: 0.95rem;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.8;
        }

        /* Video Modal */
        .video-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .video-modal.active { opacity: 1; visibility: visible; }

        .video-modal-content {
            width: 80%;
            max-width: 1000px;
            position: relative;
        }

        .video-modal-content iframe {
            width: 100%;
            aspect-ratio: 16/9;
            border: 2px solid var(--gold);
        }

        .video-modal-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: none;
            border: none;
            cursor: pointer;
        }

        .video-modal-close svg {
            width: 28px;
            height: 28px;
            stroke: var(--white);
            fill: none;
            stroke-width: 2;
        }

        /* ========== TESTIMONIALS ========== */
        .testimonials-section {
            padding: 140px 50px;
            background: var(--dark);
            text-align: center;
        }

        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .testimonial-item {
            min-width: 100%;
            padding: 0 20px;
        }

        .testimonial-stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 30px;
        }

        .testimonial-stars svg {
            width: 18px;
            height: 18px;
            fill: var(--gold);
        }

        .testimonial-text {
            font-family: var(--font-serif);
            font-size: 1.6rem;
            font-style: italic;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 35px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--gold);
        }

        .testimonial-author-info h4 {
            font-family: var(--font-serif);
            font-size: 1.1rem;
            color: var(--white);
        }

        .testimonial-author-info span {
            font-size: 0.8rem;
            color: var(--gold);
            letter-spacing: 1px;
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .testimonial-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(201, 169, 110, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background: var(--gold);
            transform: scale(1.3);
        }

        /* ========== PARALLAX CTA ========== */
        .cta-section {
            position: relative;
            height: 70vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cta-section .parallax-bg {
            top: -15%;
            height: 130%;
        }

        .cta-content {
            position: relative;
            z-index: 10;
            text-align: center;
        }

        .cta-content h2 {
            font-family: var(--font-serif);
            font-size: 3.5rem;
            font-weight: 400;
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta-content h2 em {
            font-style: italic;
            color: var(--gold);
        }

        .cta-content p {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 300;
            margin-bottom: 40px;
            letter-spacing: 1px;
        }

        /* ========== CONTACT ========== */
        .contact-section {
            padding: 140px 50px;
            background: var(--dark-soft);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }

        .contact-info h2 {
            font-family: var(--font-serif);
            font-size: 3rem;
            font-weight: 400;
            color: var(--white);
            margin-bottom: 20px;
        }

        .contact-info h2 em {
            font-style: italic;
            color: var(--gold);
        }

        .contact-info > p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.8;
            font-weight: 300;
            margin-bottom: 40px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-detail-item {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .contact-detail-item .icon {
            width: 50px;
            height: 50px;
            border: 1px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-detail-item .icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.5;
        }

        .contact-detail-item .info h4 {
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 5px;
        }

        .contact-detail-item .info span {
            font-size: 0.95rem;
            color: var(--text-light);
            font-weight: 300;
        }

        .contact-form {
            background: var(--dark-card);
            padding: 50px;
            border: 1px solid rgba(201, 169, 110, 0.1);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px 20px;
            background: var(--dark-soft);
            border: 1px solid rgba(201, 169, 110, 0.15);
            color: var(--text-light);
            font-family: var(--font-sans);
            font-size: 0.9rem;
            transition: border-color 0.3s ease;
            outline: none;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--gold);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: var(--gold);
            color: var(--dark);
            border: none;
            font-family: var(--font-sans);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
        }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--dark);
            padding: 80px 50px 30px;
            border-top: 1px solid rgba(201, 169, 110, 0.1);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .footer-brand .logo-text {
            font-size: 1.4rem;
            margin-bottom: 20px;
            display: block;
        }

        .footer-brand p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.8;
            font-weight: 300;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }

        .footer-socials a {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(201, 169, 110, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .footer-socials a:hover {
            background: var(--gold);
            border-color: var(--gold);
        }

        .footer-socials svg {
            width: 16px;
            height: 16px;
            fill: var(--text-muted);
            transition: fill 0.3s ease;
        }

        .footer-socials a:hover svg { fill: var(--dark); }

        .footer-col h4 {
            font-family: var(--font-serif);
            font-size: 1.1rem;
            color: var(--white);
            margin-bottom: 25px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul a {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.85rem;
            font-weight: 300;
            transition: color 0.3s ease;
        }

        .footer-col ul a:hover { color: var(--gold); }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 300;
        }

        /* ========== SCROLL ANIMATIONS ========== */
        .reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .parallax-content h1 { font-size: 3.5rem; }
            .about-container { grid-template-columns: 1fr; gap: 50px; }
            .about-image img { height: 400px; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .gallery-masonry { columns: 3; }
            .portfolio-card { min-width: 320px; }
            .contact-container { grid-template-columns: 1fr; }
            .footer-container { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .header { padding: 15px 25px; }
            .header.scrolled { padding: 10px 25px; }
            .nav-links { display: none; }
            .mobile-toggle { display: flex; }
            .parallax-content h1 { font-size: 2.5rem; }
            .parallax-content p { font-size: 0.9rem; }
            .about-section { padding: 80px 25px; }
            .about-content h2 { font-size: 2.2rem; }
            .about-stats { flex-direction: column; gap: 20px; }
            .services-section { padding: 80px 25px; }
            .services-grid { grid-template-columns: 1fr; }
            .section-header h2 { font-size: 2.2rem; }
            .gallery-section { padding: 80px 25px; }
            .gallery-masonry { columns: 2; }
            .horizontal-section { padding: 80px 0; }
            .horizontal-section .section-header { padding: 0 25px; }
            .horizontal-track { padding: 0 25px; }
            .portfolio-card { min-width: 280px; }
            .portfolio-card .card-image { height: 380px; }
            .video-section { height: 70vh; }
            .video-content h2 { font-size: 2rem; }
            .testimonials-section { padding: 80px 25px; }
            .testimonial-text { font-size: 1.2rem; }
            .cta-content h2 { font-size: 2.2rem; }
            .contact-section { padding: 80px 25px; }
            .contact-form { padding: 30px; }
            .form-row { grid-template-columns: 1fr; }
            .footer { padding: 60px 25px 20px; }
            .footer-container { grid-template-columns: 1fr; gap: 40px; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
            .quote-content blockquote { font-size: 1.5rem; }
            .about-badge { width: 90px; height: 90px; bottom: -15px; right: -15px; }
            .about-badge .number { font-size: 1.8rem; }
        }

        @media (max-width: 480px) {
            .parallax-content h1 { font-size: 2rem; }
            .gallery-masonry { columns: 1; }
            .gallery-filters { gap: 8px; }
            .filter-btn { padding: 8px 16px; font-size: 0.65rem; }
            .play-btn { width: 70px; height: 70px; }
            .play-btn::before { width: 100px; height: 100px; }
        }

/* ==========================================================================
   Styles from privacy-policy.html
   ========================================================================== */

:root {
            --pp-gold: var(--accent-color);
            --pp-gold-light: var(--accent-color);
            --pp-dark: #ffffff;
            --pp-dark-soft: #f9f9f9;
            --pp-dark-card: #ffffff;
            --pp-text: #333333;
            --pp-text-muted: #777777;
            --pp-white: #111111;
            --pp-border: rgba(191, 160, 158, 0.15);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-sans);
            background-color: var(--pp-dark);
            color: var(--pp-text);
            overflow-x: hidden;
            line-height: 1.7;
        }

        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--pp-dark); }
        ::-webkit-scrollbar-thumb { background: var(--pp-gold); border-radius: 3px; }

        /* ========== HEADER ========== */
        .pp-header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 20px 50px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .pp-header.scrolled {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            padding: 12px 50px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .pp-logo {
            text-decoration: none;
            font-family: var(--font-serif);
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--pp-white);
            letter-spacing: 3px;
        }

        .pp-logo span { color: var(--pp-gold); }

        .pp-nav {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }

        .pp-nav a {
            text-decoration: none;
            color: var(--pp-text);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s ease;
        }

        .pp-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px; left: 0;
            width: 0; height: 1px;
            background: var(--pp-gold);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .pp-nav a:hover { color: var(--pp-gold); }
        .pp-nav a:hover::after { width: 100%; }

        .pp-nav-cta {
            padding: 10px 28px !important;
            border: 1px solid var(--pp-gold) !important;
            color: var(--pp-gold) !important;
            letter-spacing: 2px !important;
            transition: all 0.3s ease !important;
        }

        .pp-nav-cta:hover {
            background: var(--pp-gold) !important;
            color: var(--pp-dark) !important;
        }

        .pp-nav-cta::after { display: none !important; }

        .pp-mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none; border: none;
            cursor: pointer; padding: 5px; z-index: 1001;
        }

        .pp-mobile-toggle .pp-line {
            width: 28px; height: 1.5px;
            background: var(--pp-white);
            transition: all 0.3s ease;
        }

        .pp-mobile-toggle.active .pp-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .pp-mobile-toggle.active .pp-line:nth-child(2) { opacity: 0; }
        .pp-mobile-toggle.active .pp-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        .pp-mobile-menu {
            position: fixed; top: 0; right: 0;
            width: 100%; height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(30px);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
            transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        }

        .pp-mobile-menu.active { transform: translateX(0); }

        .pp-mobile-menu a {
            text-decoration: none;
            color: var(--pp-white);
            font-family: var(--font-serif);
            font-size: 2rem;
            font-style: italic;
            transition: color 0.3s ease;
        }

        .pp-mobile-menu a:hover { color: var(--pp-gold); }

        /* ========== HERO ========== */
        .pp-hero {
            position: relative;
            height: 50vh;
            min-height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, var(--pp-dark) 0%, var(--pp-dark-soft) 100%);
        }

        .pp-hero-pattern {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-image: radial-gradient(circle at 20% 50%, rgba(201, 169, 110, 0.03) 0%, transparent 50%),
                              radial-gradient(circle at 80% 20%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
                              radial-gradient(circle at 50% 80%, rgba(201, 169, 110, 0.03) 0%, transparent 50%);
        }

        .pp-hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 0 30px;
        }

        .pp-hero-icon {
            width: 70px; height: 70px;
            margin: 0 auto 25px;
            border: 1px solid var(--pp-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(30px);
            animation: ppFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
        }

        .pp-hero-icon svg {
            width: 32px; height: 32px;
            stroke: var(--pp-gold);
            fill: none;
            stroke-width: 1.5;
        }

        .pp-hero-label {
            font-family: var(--font-serif);
            font-size: 1rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: var(--pp-gold);
            margin-bottom: 20px;
            display: block;
            opacity: 0;
            transform: translateY(30px);
            animation: ppFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
        }

        .pp-hero-title {
            font-family: var(--font-serif);
            font-size: 3.5rem;
            font-weight: 400;
            color: var(--pp-white);
            margin-bottom: 15px;
            opacity: 0;
            transform: translateY(30px);
            animation: ppFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
        }

        .pp-hero-title em { font-style: italic; color: var(--pp-gold); }

        .pp-hero-updated {
            font-size: 0.85rem;
            color: var(--pp-text-muted);
            font-weight: 300;
            opacity: 0;
            transform: translateY(30px);
            animation: ppFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
        }

        @keyframes ppFadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        /* ========== MAIN CONTENT ========== */
        .pp-main {
            padding: 80px 50px;
            background: var(--pp-dark);
        }

        .pp-main-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 60px;
            align-items: start;
        }

        /* Sidebar TOC */
        .pp-sidebar {
            position: sticky;
            top: 120px;
        }

        .pp-toc {
            background: var(--pp-dark-card);
            border: 1px solid var(--pp-border);
            padding: 30px;
        }

        .pp-toc h3 {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            color: var(--pp-white);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--pp-border);
        }

        .pp-toc ul {
            list-style: none;
        }

        .pp-toc li {
            margin-bottom: 4px;
        }

        .pp-toc a {
            display: block;
            padding: 8px 12px;
            font-size: 0.82rem;
            color: var(--pp-text-muted);
            text-decoration: none;
            font-weight: 400;
            line-height: 1.5;
            border-left: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .pp-toc a:hover,
        .pp-toc a.active-toc {
            color: var(--pp-gold);
            border-left-color: var(--pp-gold);
            background: rgba(201, 169, 110, 0.05);
        }

        /* Content */
        .pp-content {
            max-width: 780px;
        }

        .pp-section {
            margin-bottom: 60px;
            scroll-margin-top: 100px;
        }

        .pp-section-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--pp-border);
        }

        .pp-section-number {
            width: 45px; height: 45px;
            background: var(--pp-dark-card);
            border: 1px solid var(--pp-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-serif);
            font-size: 1rem;
            color: var(--pp-gold);
            flex-shrink: 0;
        }

        .pp-section h2 {
            font-family: var(--font-serif);
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--pp-white);
        }

        .pp-section h3 {
            font-family: var(--font-serif);
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--pp-white);
            margin: 30px 0 15px;
        }

        .pp-section p {
            font-size: 0.92rem;
            line-height: 1.9;
            color: var(--pp-text-muted);
            font-weight: 300;
            margin-bottom: 15px;
        }

        .pp-section ul, .pp-section ol {
            padding-left: 20px;
            margin-bottom: 15px;
        }

        .pp-section li {
            font-size: 0.92rem;
            line-height: 1.9;
            color: var(--pp-text-muted);
            font-weight: 300;
            margin-bottom: 8px;
            padding-left: 10px;
        }

        .pp-section li::marker {
            color: var(--pp-gold);
        }

        .pp-highlight-box {
            background: var(--pp-dark-card);
            border: 1px solid var(--pp-border);
            border-left: 3px solid var(--pp-gold);
            padding: 25px 30px;
            margin: 25px 0;
        }

        .pp-highlight-box p {
            color: var(--pp-text);
            font-weight: 400;
            margin-bottom: 0;
        }

        .pp-highlight-box strong {
            color: var(--pp-gold);
        }

        .pp-data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.88rem;
        }

        .pp-data-table th {
            background: var(--pp-dark-card);
            padding: 14px 18px;
            text-align: left;
            font-size: 0.8rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--pp-gold);
            border-bottom: 1px solid var(--pp-gold);
            font-weight: 500;
        }

        .pp-data-table td {
            padding: 14px 18px;
            color: var(--pp-text-muted);
            font-weight: 300;
            border-bottom: 1px solid var(--pp-border);
        }

        .pp-data-table tr:hover td {
            background: rgba(201, 169, 110, 0.03);
        }

        .pp-contact-card {
            background: var(--pp-dark-card);
            border: 1px solid var(--pp-border);
            padding: 30px;
            margin: 25px 0;
            text-align: center;
        }

        .pp-contact-card h4 {
            font-family: var(--font-serif);
            font-size: 1.3rem;
            color: var(--pp-white);
            margin-bottom: 15px;
        }

        .pp-contact-card p {
            color: var(--pp-text-muted);
            font-size: 0.9rem;
            font-weight: 300;
            margin-bottom: 20px;
        }

        .pp-contact-card .pp-cc-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .pp-contact-card .pp-cc-links a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--pp-gold);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .pp-contact-card .pp-cc-links a:hover { color: var(--pp-gold-light); }

        .pp-contact-card .pp-cc-links a svg {
            width: 18px; height: 18px;
            stroke: var(--pp-gold);
            fill: none;
            stroke-width: 1.5;
        }

        /* ========== BACK TO TOP ========== */
        .pp-back-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--pp-dark-card);
            border: 1px solid var(--pp-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 900;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .pp-back-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .pp-back-top:hover {
            background: var(--pp-gold);
        }

        .pp-back-top svg {
            width: 20px; height: 20px;
            stroke: var(--pp-gold);
            fill: none;
            stroke-width: 2;
            transition: stroke 0.3s ease;
        }

        .pp-back-top:hover svg { stroke: var(--pp-dark); }

        /* ========== FOOTER ========== */
        .pp-footer {
            background: var(--pp-dark);
            padding: 80px 50px 30px;
            border-top: 1px solid var(--pp-border);
        }

        .pp-footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .pp-footer-brand .ppfb-logo {
            font-family: var(--font-serif);
            font-size: 1.4rem;
            color: var(--pp-white);
            letter-spacing: 3px;
            margin-bottom: 20px;
            display: block;
        }

        .pp-footer-brand .ppfb-logo span { color: var(--pp-gold); }

        .pp-footer-brand p {
            font-size: 0.9rem;
            color: var(--pp-text-muted);
            line-height: 1.8;
            font-weight: 300;
        }

        .pp-footer-socials {
            display: flex; gap: 12px; margin-top: 25px;
        }

        .pp-footer-socials a {
            width: 40px; height: 40px;
            border: 1px solid rgba(201, 169, 110, 0.3);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.3s ease;
        }

        .pp-footer-socials a:hover {
            background: var(--pp-gold);
            border-color: var(--pp-gold);
        }

        .pp-footer-socials svg {
            width: 16px; height: 16px;
            fill: var(--pp-text-muted);
            transition: fill 0.3s ease;
        }

        .pp-footer-socials a:hover svg { fill: var(--pp-dark); }

        .pp-footer-col h4 {
            font-family: var(--font-serif);
            font-size: 1.1rem;
            color: var(--pp-white);
            margin-bottom: 25px;
        }

        .pp-footer-col ul { list-style: none; }
        .pp-footer-col ul li { margin-bottom: 12px; }
        .pp-footer-col ul a {
            text-decoration: none;
            color: var(--pp-text-muted);
            font-size: 0.85rem;
            font-weight: 300;
            transition: color 0.3s ease;
        }
        .pp-footer-col ul a:hover { color: var(--pp-gold); }

        .pp-footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .pp-footer-bottom p {
            font-size: 0.8rem;
            color: var(--pp-text-muted);
            font-weight: 300;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .pp-main-container {
                grid-template-columns: 1fr;
            }
            .pp-sidebar {
                position: relative;
                top: auto;
            }
            .pp-toc {
                display: none;
            }
            .pp-toc.mobile-open {
                display: block;
                position: fixed;
                top: 0; left: 0; right: 0; bottom: 0;
                z-index: 998;
                overflow-y: auto;
                padding: 80px 30px 30px;
                background: rgba(10, 10, 10, 0.98);
            }
            .pp-footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .pp-header { padding: 15px 25px; }
            .pp-header.scrolled { padding: 10px 25px; }
            .pp-nav { display: none; }
            .pp-mobile-toggle { display: flex; }
            .pp-hero-title { font-size: 2.5rem; }
            .pp-main { padding: 60px 25px; }
            .pp-section h2 { font-size: 1.4rem; }
            .pp-data-table { font-size: 0.8rem; }
            .pp-data-table th, .pp-data-table td { padding: 10px 12px; }
            .pp-footer { padding: 60px 25px 20px; }
            .pp-footer-container { grid-template-columns: 1fr; gap: 40px; }
            .pp-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
            .pp-contact-card .pp-cc-links { flex-direction: column; align-items: center; }
        }

        @media (max-width: 480px) {
            .pp-hero-title { font-size: 2rem; }
            .pp-section h2 { font-size: 1.2rem; }
        }

        /* Toggle button for mobile TOC */
        .pp-toc-toggle {
            display: none;
            width: 100%;
            padding: 15px;
            background: var(--pp-dark-card);
            border: 1px solid var(--pp-border);
            color: var(--pp-gold);
            font-family: var(--font-sans);
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        .pp-toc-toggle:hover {
            background: rgba(201, 169, 110, 0.1);
        }

        @media (max-width: 1024px) {
            .pp-toc-toggle { display: block; }
        }

/* ==========================================================================
   Styles from services.html
   ========================================================================== */

:root {
            --srv-gold: var(--accent-color);
            --srv-gold-light: var(--accent-color);
            --srv-dark: #ffffff;
            --srv-dark-soft: #f9f9f9;
            --srv-dark-card: #ffffff;
            --srv-text: #333333;
            --srv-text-muted: #777777;
            --srv-white: #111111;
            --srv-border: rgba(191, 160, 158, 0.15);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-sans);
            background-color: var(--srv-dark);
            color: var(--srv-text);
            overflow-x: hidden;
            line-height: 1.7;
        }

        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--srv-dark); }
        ::-webkit-scrollbar-thumb { background: var(--srv-gold); border-radius: 3px; }

        /* ========== HEADER ========== */
        .srv-header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 20px 50px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .srv-header.scrolled {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            padding: 12px 50px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .srv-logo {
            text-decoration: none;
            font-family: var(--font-serif);
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--srv-white);
            letter-spacing: 3px;
        }

        .srv-logo span { color: var(--srv-gold); }

        .srv-nav {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }

        .srv-nav a {
            text-decoration: none;
            color: var(--srv-text);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s ease;
        }

        .srv-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px; left: 0;
            width: 0; height: 1px;
            background: var(--srv-gold);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .srv-nav a:hover { color: var(--srv-gold); }
        .srv-nav a:hover::after { width: 100%; }
        .srv-nav a.srv-active-link { color: var(--srv-gold); }
        .srv-nav a.srv-active-link::after { width: 100%; }

        .srv-nav-cta {
            padding: 10px 28px !important;
            border: 1px solid var(--srv-gold) !important;
            color: var(--srv-gold) !important;
            letter-spacing: 2px !important;
            transition: all 0.3s ease !important;
        }

        .srv-nav-cta:hover {
            background: var(--srv-gold) !important;
            color: var(--srv-dark) !important;
        }

        .srv-nav-cta::after { display: none !important; }

        .srv-mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none; border: none;
            cursor: pointer; padding: 5px; z-index: 1001;
        }

        .srv-mobile-toggle .srv-line {
            width: 28px; height: 1.5px;
            background: var(--srv-white);
            transition: all 0.3s ease;
        }

        .srv-mobile-toggle.active .srv-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .srv-mobile-toggle.active .srv-line:nth-child(2) { opacity: 0; }
        .srv-mobile-toggle.active .srv-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        .srv-mobile-menu {
            position: fixed; top: 0; right: 0;
            width: 100%; height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(30px);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
            transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        }

        .srv-mobile-menu.active { transform: translateX(0); }

        .srv-mobile-menu a {
            text-decoration: none;
            color: var(--srv-white);
            font-family: var(--font-serif);
            font-size: 2rem;
            font-style: italic;
            transition: color 0.3s ease;
        }

        .srv-mobile-menu a:hover { color: var(--srv-gold); }

        /* ========== HERO ========== */
        .srv-hero {
            position: relative;
            height: 60vh;
            min-height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, var(--srv-dark) 0%, var(--srv-dark-soft) 100%);
        }

        .srv-hero-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('https://image.qwenlm.ai/public_source/67e46500-fb37-4f42-9d53-e2c51c4fe0b1/19ea253bb-0537-4c62-9917-4b8b0bfbd0eb.png');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            transform: scale(1.1);
        }

        .srv-hero-overlay {
            position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.9) 100%);
        }

        .srv-hero-content {
            position: relative; z-index: 10;
            text-align: center; padding: 0 30px;
        }

        .srv-hero-label {
            font-family: var(--font-serif);
            font-size: 1rem; letter-spacing: 6px;
            text-transform: uppercase; color: var(--srv-gold);
            margin-bottom: 20px; display: block;
            opacity: 0; transform: translateY(30px);
            animation: srvFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
        }

        .srv-hero-title {
            font-family: var(--font-serif);
            font-size: 4rem; font-weight: 400;
            color: var(--srv-white); margin-bottom: 20px;
            opacity: 0; transform: translateY(30px);
            animation: srvFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
        }

        .srv-hero-title em { font-style: italic; color: var(--srv-gold); }

        .srv-hero-desc {
            font-size: 1.05rem; color: var(--srv-text-muted);
            font-weight: 300; max-width: 650px; margin: 0 auto;
            opacity: 0; transform: translateY(30px);
            animation: srvFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
        }

        @keyframes srvFadeUp { to { opacity: 1; transform: translateY(0); } }

        /* ========== SERVICES GRID ========== */
        .srv-services-section {
            padding: 140px 50px;
            background: var(--srv-dark);
        }

        .srv-services-header {
            text-align: center; margin-bottom: 80px;
        }

        .srv-services-header .ssh-label {
            font-family: var(--font-serif);
            font-size: 1rem; letter-spacing: 5px;
            text-transform: uppercase; color: var(--srv-gold);
            margin-bottom: 15px; display: block;
        }

        .srv-services-header h2 {
            font-family: var(--font-serif);
            font-size: 3rem; font-weight: 400; color: var(--srv-white);
        }

        .srv-services-header h2 em { font-style: italic; color: var(--srv-gold); }

        .srv-services-header .ssh-divider {
            width: 60px; height: 1px; background: var(--srv-gold); margin: 25px auto 0;
        }

        .srv-services-grid {
            max-width: 1200px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
        }

        .srv-service-card {
            background: var(--srv-dark-card);
            padding: 50px 35px;
            border: 1px solid var(--srv-border);
            text-align: center;
            position: relative; overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .srv-service-card::before {
            content: '';
            position: absolute; top: 0; left: 0; right: 0; height: 2px;
            background: var(--srv-gold); transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .srv-service-card:hover::before { transform: scaleX(1); }

        .srv-service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(201, 169, 110, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .srv-icon-wrap {
            width: 80px; height: 80px; margin: 0 auto 25px;
            display: flex; align-items: center; justify-content: center;
            border: 1px solid var(--srv-gold); border-radius: 50%;
            transition: all 0.4s ease;
        }

        .srv-service-card:hover .srv-icon-wrap {
            background: var(--srv-gold);
        }

        .srv-icon-wrap svg {
            width: 32px; height: 32px; stroke: var(--srv-gold);
            fill: none; stroke-width: 1.5; transition: stroke 0.4s ease;
        }

        .srv-service-card:hover .srv-icon-wrap svg { stroke: var(--srv-dark); }

        .srv-service-card h3 {
            font-family: var(--font-serif);
            font-size: 1.4rem; color: var(--srv-white); margin-bottom: 15px;
        }

        .srv-service-card p {
            font-size: 0.9rem; color: var(--srv-text-muted);
            line-height: 1.8; font-weight: 300;
        }

        /* ========== PACKAGES ========== */
        .srv-packages-section {
            padding: 140px 50px;
            background: var(--srv-dark-soft);
        }

        .srv-packages-header {
            text-align: center; margin-bottom: 80px;
        }

        .srv-packages-header .sph-label {
            font-family: var(--font-serif);
            font-size: 1rem; letter-spacing: 5px;
            text-transform: uppercase; color: var(--srv-gold);
            margin-bottom: 15px; display: block;
        }

        .srv-packages-header h2 {
            font-family: var(--font-serif);
            font-size: 3rem; font-weight: 400; color: var(--srv-white);
        }

        .srv-packages-header h2 em { font-style: italic; color: var(--srv-gold); }

        .srv-packages-header .sph-divider {
            width: 60px; height: 1px; background: var(--srv-gold); margin: 25px auto 0;
        }

        .srv-packages-grid {
            max-width: 1200px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: start;
        }

        .srv-package-card {
            background: var(--srv-dark-card);
            border: 1px solid var(--srv-border);
            padding: 50px 40px;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
        }

        .srv-package-card.featured {
            border-color: var(--srv-gold);
            transform: scale(1.05);
            z-index: 2;
            box-shadow: 0 10px 40px rgba(201, 169, 110, 0.15);
        }

        .srv-package-badge {
            position: absolute; top: 0; left: 50%; transform: translateX(-50%) translateY(-50%);
            background: var(--srv-gold); color: var(--srv-dark);
            padding: 8px 20px; font-size: 0.7rem; font-weight: 600;
            letter-spacing: 2px; text-transform: uppercase;
        }

        .srv-package-card h3 {
            font-family: var(--font-serif);
            font-size: 1.5rem; color: var(--srv-white); margin-bottom: 10px;
        }

        .srv-package-price {
            font-family: var(--font-serif);
            font-size: 2.5rem; color: var(--srv-gold); margin-bottom: 25px;
        }

        .srv-package-price span {
            font-size: 1rem; color: var(--srv-text-muted); font-family: var(--font-sans); font-weight: 300;
        }

        .srv-package-features {
            list-style: none; margin-bottom: 30px;
            text-align: left;
        }

        .srv-package-features li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(201, 169, 110, 0.05);
            font-size: 0.9rem; color: var(--srv-text-muted);
            display: flex; align-items: center; gap: 12px;
        }

        .srv-package-features li svg {
            width: 18px; height: 18px; stroke: var(--srv-gold); fill: none; stroke-width: 2; flex-shrink: 0;
        }

        .srv-package-btn {
            display: inline-block;
            padding: 15px 35px;
            border: 1px solid var(--srv-gold);
            color: var(--srv-gold);
            text-decoration: none;
            font-size: 0.8rem; font-weight: 600; letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .srv-package-btn:hover {
            background: var(--srv-gold); color: var(--srv-dark);
        }

        .srv-package-card.featured .srv-package-btn {
            background: var(--srv-gold); color: var(--srv-dark);
        }

        .srv-package-card.featured .srv-package-btn:hover {
            background: var(--srv-gold-light);
        }

        /* ========== ADD-ONS ========== */
        .srv-addons-section {
            padding: 140px 50px;
            background: var(--srv-dark);
        }

        .srv-addons-header {
            text-align: center; margin-bottom: 80px;
        }

        .srv-addons-header .sah-label {
            font-family: var(--font-serif);
            font-size: 1rem; letter-spacing: 5px;
            text-transform: uppercase; color: var(--srv-gold);
            margin-bottom: 15px; display: block;
        }

        .srv-addons-header h2 {
            font-family: var(--font-serif);
            font-size: 3rem; font-weight: 400; color: var(--srv-white);
        }

        .srv-addons-header h2 em { font-style: italic; color: var(--srv-gold); }

        .srv-addons-header .sah-divider {
            width: 60px; height: 1px; background: var(--srv-gold); margin: 25px auto 0;
        }

        .srv-addons-grid {
            max-width: 1000px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px;
        }

        .srv-addon-item {
            display: flex; align-items: flex-start; gap: 20px;
            background: var(--srv-dark-card);
            padding: 30px; border: 1px solid var(--srv-border);
            transition: all 0.3s ease;
        }

        .srv-addon-item:hover {
            border-color: var(--srv-gold); transform: translateY(-5px);
        }

        .srv-addon-icon {
            width: 50px; height: 50px;
            display: flex; align-items: center; justify-content: center;
            border: 1px solid var(--srv-gold); border-radius: 50%; flex-shrink: 0;
        }

        .srv-addon-icon svg {
            width: 24px; height: 24px; stroke: var(--srv-gold); fill: none; stroke-width: 1.5;
        }

        .srv-addon-info h3 {
            font-family: var(--font-serif);
            font-size: 1.2rem; color: var(--srv-white); margin-bottom: 8px;
        }

        .srv-addon-info p {
            font-size: 0.85rem; color: var(--srv-text-muted); line-height: 1.7; font-weight: 300;
        }

        .srv-addon-price {
            margin-top: 10px; font-size: 0.9rem; color: var(--srv-gold); font-weight: 500;
        }

        /* ========== PROCESS ========== */
        .srv-process-section {
            padding: 140px 50px;
            background: var(--srv-dark-soft);
            text-align: center;
        }

        .srv-process-header { margin-bottom: 80px; }

        .srv-process-header .spr-label {
            font-family: var(--font-serif);
            font-size: 1rem; letter-spacing: 5px;
            text-transform: uppercase; color: var(--srv-gold);
            margin-bottom: 15px; display: block;
        }

        .srv-process-header h2 {
            font-family: var(--font-serif);
            font-size: 3rem; font-weight: 400; color: var(--srv-white);
        }

        .srv-process-header h2 em { font-style: italic; color: var(--srv-gold); }

        .srv-process-header .spr-divider {
            width: 60px; height: 1px; background: var(--srv-gold); margin: 25px auto 0;
        }

        .srv-process-steps {
            max-width: 1100px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
            position: relative;
        }

        .srv-process-steps::before {
            content: ''; position: absolute;
            top: 40px; left: 12.5%; right: 12.5%; height: 1px;
            background: rgba(201, 169, 110, 0.2);
        }

        .srv-process-step { text-align: center; position: relative; }

        .srv-step-number {
            width: 50px; height: 50px; margin: 0 auto 25px;
            display: flex; align-items: center; justify-content: center;
            border: 1px solid var(--srv-gold); border-radius: 50%;
            font-family: var(--font-serif); font-size: 1.2rem;
            color: var(--srv-gold); background: var(--srv-dark-soft);
            position: relative; z-index: 2; transition: all 0.4s ease;
        }

        .srv-process-step:hover .srv-step-number {
            background: var(--srv-gold); color: var(--srv-dark);
        }

        .srv-process-step h3 {
            font-family: var(--font-serif);
            font-size: 1.2rem; color: var(--srv-white); margin-bottom: 12px;
        }

        .srv-process-step p {
            font-size: 0.85rem; color: var(--srv-text-muted); line-height: 1.7; font-weight: 300;
        }

        /* ========== FAQ ========== */
        .srv-faq-section {
            padding: 140px 50px;
            background: var(--srv-dark);
        }

        .srv-faq-header { text-align: center; margin-bottom: 70px; }

        .srv-faq-header .sfh-label {
            font-family: var(--font-serif);
            font-size: 1rem; letter-spacing: 5px;
            text-transform: uppercase; color: var(--srv-gold);
            margin-bottom: 15px; display: block;
        }

        .srv-faq-header h2 {
            font-family: var(--font-serif);
            font-size: 3rem; font-weight: 400; color: var(--srv-white);
        }

        .srv-faq-header h2 em { font-style: italic; color: var(--srv-gold); }

        .srv-faq-header .sfh-divider {
            width: 60px; height: 1px; background: var(--srv-gold); margin: 25px auto 0;
        }

        .srv-faq-container {
            max-width: 800px; margin: 0 auto;
        }

        .srv-faq-item { border-bottom: 1px solid var(--srv-border); overflow: hidden; }

        .srv-faq-question {
            width: 100%; padding: 25px 0; background: none; border: none;
            color: var(--srv-white); font-family: var(--font-serif);
            font-size: 1.15rem; font-weight: 500; text-align: left;
            cursor: pointer; display: flex; justify-content: space-between;
            align-items: center; gap: 20px; transition: color 0.3s ease;
        }

        .srv-faq-question:hover { color: var(--srv-gold); }

        .srv-faq-icon {
            width: 30px; height: 30px; border: 1px solid var(--srv-gold);
            border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .srv-faq-question.active .srv-faq-icon { background: var(--srv-gold); }

        .srv-faq-icon svg {
            width: 14px; height: 14px; stroke: var(--srv-gold); fill: none; stroke-width: 2;
            transition: all 0.3s ease;
        }

        .srv-faq-question.active .srv-faq-icon svg {
            stroke: var(--srv-dark); transform: rotate(45deg);
        }

        .srv-faq-answer {
            max-height: 0; overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
        }

        .srv-faq-answer.open { max-height: 300px; padding-bottom: 25px; }

        .srv-faq-answer p {
            font-size: 0.9rem; color: var(--srv-text-muted); line-height: 1.8; font-weight: 300;
        }

        /* ========== CTA ========== */
        .srv-cta-section {
            position: relative; height: 60vh; min-height: 400px;
            overflow: hidden; display: flex; align-items: center; justify-content: center;
        }

        .srv-cta-bg {
            position: absolute; top: -15%; left: 0; width: 100%; height: 130%;
            background-image: url('https://image.qwenlm.ai/public_source/67e46500-fb37-4f42-9d53-e2c51c4fe0b1/1cdd48e70-beb3-4717-8001-5c5509271f76.png');
            background-size: cover; background-position: center; will-change: transform;
        }

        .srv-cta-overlay {
            position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.85) 100%);
        }

        .srv-cta-content {
            position: relative; z-index: 10; text-align: center;
            max-width: 700px; padding: 0 30px;
        }

        .srv-cta-content h2 {
            font-family: var(--font-serif); font-size: 3rem; font-weight: 400;
            color: var(--srv-white); margin-bottom: 20px;
        }

        .srv-cta-content h2 em { font-style: italic; color: var(--srv-gold); }

        .srv-cta-content p {
            font-size: 1rem; color: var(--srv-text-muted); font-weight: 300;
            margin-bottom: 40px; letter-spacing: 1px;
        }

        .srv-btn-primary {
            display: inline-block; padding: 16px 50px;
            background: var(--srv-gold); color: var(--srv-dark);
            text-decoration: none; font-size: 0.8rem; font-weight: 600;
            letter-spacing: 3px; text-transform: uppercase;
            transition: all 0.4s ease;
        }

        .srv-btn-primary:hover {
            background: var(--srv-gold-light); transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(201, 169, 110, 0.3);
        }

        /* ========== FOOTER ========== */
        .srv-footer {
            background: var(--srv-dark);
            padding: 80px 50px 30px;
            border-top: 1px solid var(--srv-border);
        }

        .srv-footer-container {
            max-width: 1200px; margin: 0 auto;
            display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .srv-footer-brand .sfb-logo {
            font-family: var(--font-serif);
            font-size: 1.4rem; color: var(--srv-white);
            letter-spacing: 3px; margin-bottom: 20px; display: block;
        }

        .srv-footer-brand .sfb-logo span { color: var(--srv-gold); }

        .srv-footer-brand p {
            font-size: 0.9rem; color: var(--srv-text-muted); line-height: 1.8; font-weight: 300;
        }

        .srv-footer-socials { display: flex; gap: 12px; margin-top: 25px; }

        .srv-footer-socials a {
            width: 40px; height: 40px;
            border: 1px solid rgba(201, 169, 110, 0.3); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.3s ease;
        }

        .srv-footer-socials a:hover { background: var(--srv-gold); border-color: var(--srv-gold); }

        .srv-footer-socials svg {
            width: 16px; height: 16px; fill: var(--srv-text-muted); transition: fill 0.3s ease;
        }

        .srv-footer-socials a:hover svg { fill: var(--srv-dark); }

        .srv-footer-col h4 {
            font-family: var(--font-serif);
            font-size: 1.1rem; color: var(--srv-white); margin-bottom: 25px;
        }

        .srv-footer-col ul { list-style: none; }
        .srv-footer-col ul li { margin-bottom: 12px; }

        .srv-footer-col ul a {
            text-decoration: none; color: var(--srv-text-muted);
            font-size: 0.85rem; font-weight: 300; transition: color 0.3s ease;
        }

        .srv-footer-col ul a:hover { color: var(--srv-gold); }

        .srv-footer-bottom {
            max-width: 1200px; margin: 0 auto; padding-top: 30px;
            display: flex; justify-content: space-between; align-items: center;
        }

        .srv-footer-bottom p {
            font-size: 0.8rem; color: var(--srv-text-muted); font-weight: 300;
        }

        /* ========== SCROLL REVEAL ========== */
        .srv-reveal {
            opacity: 0; transform: translateY(60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .srv-reveal.visible { opacity: 1; transform: translateY(0); }

        .srv-reveal-d1 { transition-delay: 0.1s; }
        .srv-reveal-d2 { transition-delay: 0.2s; }
        .srv-reveal-d3 { transition-delay: 0.3s; }
        .srv-reveal-d4 { transition-delay: 0.4s; }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .srv-hero-title { font-size: 3rem; }
            .srv-services-grid { grid-template-columns: repeat(2, 1fr); }
            .srv-packages-grid { grid-template-columns: repeat(2, 1fr); }
            .srv-package-card.featured { transform: scale(1); }
            .srv-process-steps { grid-template-columns: repeat(2, 1fr); }
            .srv-process-steps::before { display: none; }
            .srv-footer-container { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .srv-header { padding: 15px 25px; }
            .srv-header.scrolled { padding: 10px 25px; }
            .srv-nav { display: none; }
            .srv-mobile-toggle { display: flex; }
            .srv-hero { height: 50vh; min-height: 350px; }
            .srv-hero-title { font-size: 2.2rem; }
            .srv-services-section { padding: 80px 25px; }
            .srv-services-grid { grid-template-columns: 1fr; }
            .srv-services-header h2 { font-size: 2.2rem; }
            .srv-packages-section { padding: 80px 25px; }
            .srv-packages-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
            .srv-addons-section { padding: 80px 25px; }
            .srv-addons-grid { grid-template-columns: 1fr; }
            .srv-process-section { padding: 80px 25px; }
            .srv-process-steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
            .srv-faq-section { padding: 80px 25px; }
            .srv-faq-header h2 { font-size: 2.2rem; }
            .srv-cta-section { height: 50vh; }
            .srv-cta-content h2 { font-size: 2rem; }
            .srv-footer { padding: 60px 25px 20px; }
            .srv-footer-container { grid-template-columns: 1fr; gap: 40px; }
            .srv-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
        }

        @media (max-width: 480px) {
            .srv-hero-title { font-size: 1.8rem; }
        }

/* ==========================================================================
   Styles from terms-conditions.html
   ========================================================================== */

:root {
            --tc-gold: var(--accent-color);
            --tc-gold-light: var(--accent-color);
            --tc-dark: #ffffff;
            --tc-dark-soft: #f9f9f9;
            --tc-dark-card: #ffffff;
            --tc-text: #333333;
            --tc-text-muted: #777777;
            --tc-white: #111111;
            --tc-border: rgba(191, 160, 158, 0.15);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-sans);
            background-color: var(--tc-dark);
            color: var(--tc-text);
            overflow-x: hidden;
            line-height: 1.7;
        }

        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--tc-dark); }
        ::-webkit-scrollbar-thumb { background: var(--tc-gold); border-radius: 3px; }

        /* ========== HEADER ========== */
        .tc-header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 20px 50px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .tc-header.scrolled {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            padding: 12px 50px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .tc-logo {
            text-decoration: none;
            font-family: var(--font-serif);
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--tc-white);
            letter-spacing: 3px;
        }

        .tc-logo span { color: var(--tc-gold); }

        .tc-nav {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }

        .tc-nav a {
            text-decoration: none;
            color: var(--tc-text);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s ease;
        }

        .tc-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px; left: 0;
            width: 0; height: 1px;
            background: var(--tc-gold);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .tc-nav a:hover { color: var(--tc-gold); }
        .tc-nav a:hover::after { width: 100%; }

        .tc-nav-cta {
            padding: 10px 28px !important;
            border: 1px solid var(--tc-gold) !important;
            color: var(--tc-gold) !important;
            letter-spacing: 2px !important;
            transition: all 0.3s ease !important;
        }

        .tc-nav-cta:hover {
            background: var(--tc-gold) !important;
            color: var(--tc-dark) !important;
        }

        .tc-nav-cta::after { display: none !important; }

        .tc-mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none; border: none;
            cursor: pointer; padding: 5px; z-index: 1001;
        }

        .tc-mobile-toggle .tc-line {
            width: 28px; height: 1.5px;
            background: var(--tc-white);
            transition: all 0.3s ease;
        }

        .tc-mobile-toggle.active .tc-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .tc-mobile-toggle.active .tc-line:nth-child(2) { opacity: 0; }
        .tc-mobile-toggle.active .tc-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        .tc-mobile-menu {
            position: fixed; top: 0; right: 0;
            width: 100%; height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(30px);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
            transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        }

        .tc-mobile-menu.active { transform: translateX(0); }

        .tc-mobile-menu a {
            text-decoration: none;
            color: var(--tc-white);
            font-family: var(--font-serif);
            font-size: 2rem;
            font-style: italic;
            transition: color 0.3s ease;
        }

        .tc-mobile-menu a:hover { color: var(--tc-gold); }

        /* ========== HERO ========== */
        .tc-hero {
            position: relative;
            height: 50vh;
            min-height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, var(--tc-dark) 0%, var(--tc-dark-soft) 100%);
        }

        .tc-hero-pattern {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-image: radial-gradient(circle at 25% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
                              radial-gradient(circle at 75% 30%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
                              radial-gradient(circle at 50% 85%, rgba(201, 169, 110, 0.03) 0%, transparent 50%);
        }

        .tc-hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 0 30px;
        }

        .tc-hero-icon {
            width: 70px; height: 70px;
            margin: 0 auto 25px;
            border: 1px solid var(--tc-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(30px);
            animation: tcFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
        }

        .tc-hero-icon svg {
            width: 32px; height: 32px;
            stroke: var(--tc-gold);
            fill: none;
            stroke-width: 1.5;
        }

        .tc-hero-label {
            font-family: var(--font-serif);
            font-size: 1rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: var(--tc-gold);
            margin-bottom: 20px;
            display: block;
            opacity: 0;
            transform: translateY(30px);
            animation: tcFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
        }

        .tc-hero-title {
            font-family: var(--font-serif);
            font-size: 3.5rem;
            font-weight: 400;
            color: var(--tc-white);
            margin-bottom: 15px;
            opacity: 0;
            transform: translateY(30px);
            animation: tcFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
        }

        .tc-hero-title em { font-style: italic; color: var(--tc-gold); }

        .tc-hero-updated {
            font-size: 0.85rem;
            color: var(--tc-text-muted);
            font-weight: 300;
            opacity: 0;
            transform: translateY(30px);
            animation: tcFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
        }

        @keyframes tcFadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        /* ========== MAIN CONTENT ========== */
        .tc-main {
            padding: 80px 50px;
            background: var(--tc-dark);
        }

        .tc-main-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 60px;
            align-items: start;
        }

        /* Sidebar TOC */
        .tc-sidebar {
            position: sticky;
            top: 120px;
        }

        .tc-toc {
            background: var(--tc-dark-card);
            border: 1px solid var(--tc-border);
            padding: 30px;
        }

        .tc-toc h3 {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            color: var(--tc-white);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--tc-border);
        }

        .tc-toc ul { list-style: none; }
        .tc-toc li { margin-bottom: 4px; }

        .tc-toc a {
            display: block;
            padding: 8px 12px;
            font-size: 0.82rem;
            color: var(--tc-text-muted);
            text-decoration: none;
            font-weight: 400;
            line-height: 1.5;
            border-left: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .tc-toc a:hover,
        .tc-toc a.active-toc {
            color: var(--tc-gold);
            border-left-color: var(--tc-gold);
            background: rgba(201, 169, 110, 0.05);
        }

        /* Content */
        .tc-content {
            max-width: 780px;
        }

        .tc-section {
            margin-bottom: 60px;
            scroll-margin-top: 100px;
        }

        .tc-section-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--tc-border);
        }

        .tc-section-number {
            width: 45px; height: 45px;
            background: var(--tc-dark-card);
            border: 1px solid var(--tc-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-serif);
            font-size: 1rem;
            color: var(--tc-gold);
            flex-shrink: 0;
        }

        .tc-section h2 {
            font-family: var(--font-serif);
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--tc-white);
        }

        .tc-section h3 {
            font-family: var(--font-serif);
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--tc-white);
            margin: 30px 0 15px;
        }

        .tc-section p {
            font-size: 0.92rem;
            line-height: 1.9;
            color: var(--tc-text-muted);
            font-weight: 300;
            margin-bottom: 15px;
        }

        .tc-section ul, .tc-section ol {
            padding-left: 20px;
            margin-bottom: 15px;
        }

        .tc-section li {
            font-size: 0.92rem;
            line-height: 1.9;
            color: var(--tc-text-muted);
            font-weight: 300;
            margin-bottom: 8px;
            padding-left: 10px;
        }

        .tc-section li::marker { color: var(--tc-gold); }

        .tc-highlight-box {
            background: var(--tc-dark-card);
            border: 1px solid var(--tc-border);
            border-left: 3px solid var(--tc-gold);
            padding: 25px 30px;
            margin: 25px 0;
        }

        .tc-highlight-box p {
            color: var(--tc-text);
            font-weight: 400;
            margin-bottom: 0;
        }

        .tc-highlight-box strong {
            color: var(--tc-gold);
        }

        .tc-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.88rem;
        }

        .tc-table th {
            background: var(--tc-dark-card);
            padding: 14px 18px;
            text-align: left;
            font-size: 0.8rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--tc-gold);
            border-bottom: 1px solid var(--tc-gold);
            font-weight: 500;
        }

        .tc-table td {
            padding: 14px 18px;
            color: var(--tc-text-muted);
            font-weight: 300;
            border-bottom: 1px solid var(--tc-border);
        }

        .tc-table tr:hover td { background: rgba(201, 169, 110, 0.03); }

        .tc-contact-card {
            background: var(--tc-dark-card);
            border: 1px solid var(--tc-border);
            padding: 30px;
            margin: 25px 0;
            text-align: center;
        }

        .tc-contact-card h4 {
            font-family: var(--font-serif);
            font-size: 1.3rem;
            color: var(--tc-white);
            margin-bottom: 15px;
        }

        .tc-contact-card p {
            color: var(--tc-text-muted);
            font-size: 0.9rem;
            font-weight: 300;
            margin-bottom: 20px;
        }

        .tc-contact-card .tc-cc-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .tc-contact-card .tc-cc-links a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--tc-gold);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .tc-contact-card .tc-cc-links a:hover { color: var(--tc-gold-light); }

        .tc-contact-card .tc-cc-links a svg {
            width: 18px; height: 18px;
            stroke: var(--tc-gold);
            fill: none;
            stroke-width: 1.5;
        }

        /* ========== BACK TO TOP ========== */
        .tc-back-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--tc-dark-card);
            border: 1px solid var(--tc-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 900;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .tc-back-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .tc-back-top:hover { background: var(--tc-gold); }

        .tc-back-top svg {
            width: 20px; height: 20px;
            stroke: var(--tc-gold);
            fill: none;
            stroke-width: 2;
            transition: stroke 0.3s ease;
        }

        .tc-back-top:hover svg { stroke: var(--tc-dark); }

        /* ========== FOOTER ========== */
        .tc-footer {
            background: var(--tc-dark);
            padding: 80px 50px 30px;
            border-top: 1px solid var(--tc-border);
        }

        .tc-footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .tc-footer-brand .tcfb-logo {
            font-family: var(--font-serif);
            font-size: 1.4rem;
            color: var(--tc-white);
            letter-spacing: 3px;
            margin-bottom: 20px;
            display: block;
        }

        .tc-footer-brand .tcfb-logo span { color: var(--tc-gold); }

        .tc-footer-brand p {
            font-size: 0.9rem;
            color: var(--tc-text-muted);
            line-height: 1.8;
            font-weight: 300;
        }

        .tc-footer-socials {
            display: flex; gap: 12px; margin-top: 25px;
        }

        .tc-footer-socials a {
            width: 40px; height: 40px;
            border: 1px solid rgba(201, 169, 110, 0.3);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.3s ease;
        }

        .tc-footer-socials a:hover {
            background: var(--tc-gold);
            border-color: var(--tc-gold);
        }

        .tc-footer-socials svg {
            width: 16px; height: 16px;
            fill: var(--tc-text-muted);
            transition: fill 0.3s ease;
        }

        .tc-footer-socials a:hover svg { fill: var(--tc-dark); }

        .tc-footer-col h4 {
            font-family: var(--font-serif);
            font-size: 1.1rem;
            color: var(--tc-white);
            margin-bottom: 25px;
        }

        .tc-footer-col ul { list-style: none; }
        .tc-footer-col ul li { margin-bottom: 12px; }
        .tc-footer-col ul a {
            text-decoration: none;
            color: var(--tc-text-muted);
            font-size: 0.85rem;
            font-weight: 300;
            transition: color 0.3s ease;
        }
        .tc-footer-col ul a:hover { color: var(--tc-gold); }

        .tc-footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .tc-footer-bottom p {
            font-size: 0.8rem;
            color: var(--tc-text-muted);
            font-weight: 300;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .tc-main-container { grid-template-columns: 1fr; }
            .tc-sidebar { position: relative; top: auto; }
            .tc-toc { display: none; }
            .tc-toc.mobile-open {
                display: block;
                position: fixed;
                top: 0; left: 0; right: 0; bottom: 0;
                z-index: 998;
                overflow-y: auto;
                padding: 80px 30px 30px;
                background: rgba(10, 10, 10, 0.98);
            }
            .tc-footer-container { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .tc-header { padding: 15px 25px; }
            .tc-header.scrolled { padding: 10px 25px; }
            .tc-nav { display: none; }
            .tc-mobile-toggle { display: flex; }
            .tc-hero-title { font-size: 2.5rem; }
            .tc-main { padding: 60px 25px; }
            .tc-section h2 { font-size: 1.4rem; }
            .tc-table { font-size: 0.8rem; }
            .tc-table th, .tc-table td { padding: 10px 12px; }
            .tc-footer { padding: 60px 25px 20px; }
            .tc-footer-container { grid-template-columns: 1fr; gap: 40px; }
            .tc-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
            .tc-contact-card .tc-cc-links { flex-direction: column; align-items: center; }
        }

        @media (max-width: 480px) {
            .tc-hero-title { font-size: 2rem; }
            .tc-section h2 { font-size: 1.2rem; }
        }

        .tc-toc-toggle {
            display: none;
            width: 100%;
            padding: 15px;
            background: var(--tc-dark-card);
            border: 1px solid var(--tc-border);
            color: var(--tc-gold);
            font-family: var(--font-sans);
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        .tc-toc-toggle:hover { background: rgba(201, 169, 110, 0.1); }

        @media (max-width: 1024px) { .tc-toc-toggle { display: block; } }

        /* ==========================================================================
           ADDED COMPONENTS: Play Icon, Video Grid, Video Gallery, Instagram Grid
           ========================================================================== */

        /* Play Overlay Icon (for Video Cards & Gallery) */
        .play-overlay-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(201, 169, 110, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            opacity: 0;
            pointer-events: none;
            z-index: 5;
        }
        .portfolio-card:hover .play-overlay-icon,
        .video-gallery-item:hover .play-overlay-icon {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.1);
        }
        .play-overlay-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--dark);
            margin-left: 4px;
        }

        /* Video Gallery Section */
        .video-gallery-section {
            padding: 140px 50px;
            background: var(--dark);
            text-align: center;
        }
        .video-gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .video-gallery-item {
            background: var(--dark-card);
            border: 1px solid rgba(201, 169, 110, 0.1);
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
        }
        .video-gallery-item:hover {
            transform: translateY(-10px);
            border-color: rgba(201, 169, 110, 0.3);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        }
        .video-thumbnail {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            overflow: hidden;
        }
        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .video-gallery-item:hover .video-thumbnail img {
            transform: scale(1.05);
        }
        .video-info {
            padding: 25px 20px;
            text-align: left;
        }
        .video-info h3 {
            font-family: var(--font-serif);
            font-size: 1.25rem;
            color: var(--white);
            margin-bottom: 5px;
            font-weight: 500;
        }
        .video-info span {
            font-size: 0.8rem;
            color: var(--gold);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Instagram Follow Section */
        .instagram-section {
            padding: 100px 0 0 0;
            background: var(--dark);
            text-align: center;
            margin-bottom: 150px;
        }
        .instagram-header {
            margin-bottom: 50px;
            padding: 0 50px;
        }
        .instagram-header .label {
            font-family: var(--font-serif);
            font-size: 1rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 10px;
            display: block;
        }
        .instagram-header h2 {
            font-family: var(--font-serif);
            font-size: 2.8rem;
            font-weight: 400;
            color: var(--white);
            margin-bottom: 15px;
        }
        .instagram-handle {
            font-family: var(--font-sans);
            font-size: 0.95rem;
            color: var(--gold);
            text-decoration: none;
            letter-spacing: 2px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .instagram-handle:hover {
            color: var(--gold-light);
        }
        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            width: 100%;
            margin-top: 30px;
        }
        .instagram-item {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
            display: block;
        }
        .instagram-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .instagram-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 10, 10, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .instagram-item:hover img {
            transform: scale(1.08);
        }
        .instagram-item:hover .instagram-overlay {
            opacity: 1;
        }
        .insta-icon {
            width: 30px;
            height: 30px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.5;
        }

        /* Media Queries for Added Components */
        @media (max-width: 1024px) {
            .video-gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .instagram-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .video-gallery-section {
                padding: 80px 25px;
            }
            .video-gallery-grid {
                grid-template-columns: 1fr;
            }
            .instagram-header h2 {
                font-size: 2.2rem;
            }
            .instagram-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* ========== HERO SMALL TEXT & INTERACTIVE ACTION CARD ========== */
        .hero-title-small {
            font-size: 3rem !important;
            margin-bottom: 15px !important;
            letter-spacing: 2px !important;
        }
        .hero-desc-small {
            font-size: 1.1rem !important;
            margin-bottom: 25px !important;
            max-width: 500px !important;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-action-card {
            position: absolute;
            bottom: 12%;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
            display: flex;
            gap: 20px;
            background: rgba(18, 18, 18, 0.45);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            padding: 15px 30px;
            border-radius: 50px;
            border: 1px solid rgba(201, 169, 110, 0.25);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1);
            max-width: 90%;
            width: auto;
            transition: all 0.4s ease;
        }
        .hero-action-card:hover {
            border-color: rgba(201, 169, 110, 0.6);
            box-shadow: 0 20px 45px rgba(201, 169, 110, 0.15);
            background: rgba(18, 18, 18, 0.55);
        }
        .action-card-btn {
            background: transparent;
            border: none;
            color: var(--white);
            font-family: var(--font-sans);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .action-card-btn .btn-icon {
            width: 18px;
            height: 18px;
            stroke: var(--gold);
            stroke-width: 1.5;
            fill: none;
            transition: transform 0.3s ease;
        }
        .action-card-btn:hover {
            background: rgba(201, 169, 110, 0.15);
            color: var(--gold);
        }
        .action-card-btn:hover .btn-icon {
            transform: translateY(-2px);
            stroke: var(--white);
        }

        /* ========== CUSTOM POPUP MODALS ========== */
        .custom-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .custom-modal.active {
            opacity: 1;
            pointer-events: auto;
        }
        .modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .modal-container {
            position: relative;
            background: #121212;
            border: 1px solid rgba(201, 169, 110, 0.3);
            border-radius: 16px;
            width: 550px;
            max-width: 90%;
            padding: 40px;
            z-index: 1010;
            transform: scale(0.9) translateY(20px);
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
        }
        .custom-modal.active .modal-container {
            transform: scale(1) translateY(0);
        }
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 5px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        .modal-close svg {
            width: 20px;
            height: 20px;
            stroke: var(--text-muted);
            stroke-width: 2;
        }
        .modal-close:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        .modal-close:hover svg {
            stroke: var(--gold);
        }
        .modal-header {
            margin-bottom: 25px;
            text-align: center;
        }
        .modal-header h2 {
            font-family: var(--font-serif);
            font-size: 2rem;
            font-style: italic;
            color: var(--white);
            margin-bottom: 8px;
        }
        .modal-header p {
            font-family: var(--font-sans);
            font-size: 0.85rem;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }
        .modal-body {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .modal-input {
            width: 100%;
            background: #181818;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 12px 18px;
            border-radius: 8px;
            color: var(--white);
            font-family: var(--font-sans);
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .modal-input:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 10px rgba(201, 169, 110, 0.15);
            background: #1d1d1d;
        }
        .select-input {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a96e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 18px center;
            background-size: 16px;
            padding-right: 45px;
        }
        .modal-input[type="date"]::-webkit-calendar-picker-indicator {
            filter: invert(1) sepia(50%) saturate(1000%) hue-rotate(15deg);
            cursor: pointer;
        }
        .modal-btn {
            width: 100%;
            background: var(--gold);
            color: #121212;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-family: var(--font-sans);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .modal-btn:hover {
            background: var(--white);
            color: #121212;
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
        }
        .modal-btn-secondary {
            width: 100%;
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            padding: 14px;
            border-radius: 8px;
            font-family: var(--font-sans);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 15px;
        }
        .modal-btn-secondary:hover {
            background: var(--gold);
            color: #121212;
        }

        /* ========== AVAILABILITY LOADER & RESULTS ========== */
        .availability-loading {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            padding: 20px 0;
        }
        .spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(201, 169, 110, 0.2);
            border-top-color: var(--gold);
            border-radius: 50%;
            animation: spin 1s infinite linear;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .availability-result {
            text-align: center;
            padding: 20px 0 10px;
            animation: fadeIn 0.4s ease;
        }
        .result-icon-success {
            width: 60px;
            height: 60px;
            background: rgba(46, 117, 89, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            border: 1px solid rgba(46, 117, 89, 0.4);
        }
        .result-icon-success svg {
            width: 30px;
            height: 30px;
            stroke: #2e7559;
            stroke-width: 2.5;
            fill: none;
        }
        .availability-result h4 {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            color: #2e7559;
            margin-bottom: 5px;
        }
        .availability-result p {
            font-family: var(--font-sans);
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 15px;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ========== TABS SYSTEM FOR ACCESS CODE ========== */
        .modal-tabs {
            display: flex;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 25px;
        }
        .tab-btn {
            flex: 1;
            background: transparent;
            border: none;
            padding: 15px;
            color: var(--text-muted);
            font-family: var(--font-sans);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            position: relative;
            transition: color 0.3s ease;
        }
        .tab-btn.active {
            color: var(--gold);
        }
        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gold);
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
            animation: fadeIn 0.4s ease;
        }

        /* ========== QR CODE SCANNER SIMULATOR & UPLOAD ========== */
        .qr-scanner-container {
            width: 100%;
            display: flex;
            justify-content: center;
            margin-bottom: 15px;
        }
        .qr-scanner-view {
            width: 220px;
            height: 220px;
            border: 2px dashed rgba(201, 169, 110, 0.4);
            border-radius: 12px;
            position: relative;
            background: rgba(0, 0, 0, 0.3);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .qr-target-box {
            width: 160px;
            height: 160px;
            border: 2px solid var(--gold);
            border-radius: 8px;
            position: relative;
            box-shadow: 0 0 15px rgba(201, 169, 110, 0.2);
        }
        .qr-laser {
            position: absolute;
            width: 100%;
            height: 2px;
            background: rgba(201, 169, 110, 0.85);
            box-shadow: 0 0 10px var(--gold);
            top: 0;
            animation: laserScan 2.5s infinite linear;
            z-index: 5;
        }
        @keyframes laserScan {
            0% { top: 0%; }
            50% { top: 100%; }
            100% { top: 0%; }
        }
        .scanner-text {
            position: absolute;
            bottom: 12px;
            font-family: var(--font-sans);
            font-size: 0.75rem;
            color: var(--text-muted);
            letter-spacing: 1px;
            text-align: center;
            width: 100%;
            z-index: 6;
        }
        .qr-upload-divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 15px 0;
            color: var(--text-muted);
            font-family: var(--font-sans);
            font-size: 0.75rem;
            letter-spacing: 1px;
        }
        .qr-upload-divider::before,
        .qr-upload-divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .qr-upload-divider span {
            padding: 0 10px;
        }
        .qr-upload-area {
            border: 1px dashed rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.01);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            width: 100%;
        }
        .qr-upload-area:hover {
            border-color: var(--gold);
            background: rgba(201, 169, 110, 0.03);
        }
        .qr-upload-area .upload-icon {
            width: 32px;
            height: 32px;
            stroke: var(--gold);
            stroke-width: 1.5;
            fill: none;
        }
        .qr-upload-area p {
            font-family: var(--font-sans);
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .qr-upload-area p span {
            color: var(--gold);
            font-weight: 500;
            text-decoration: underline;
        }
        .upload-filename {
            font-family: var(--font-sans);
            font-size: 0.8rem;
            color: var(--gold);
            font-weight: 500;
            margin-top: 5px;
        }

        /* ========== FORM ROW LAYOUTS ========== */
        .form-row {
            display: flex;
            gap: 20px;
        }
        .form-row .form-group {
            flex: 1;
        }

        /* ========== QUOTE PARALLAX SCROLLING EFFECTS ========== */
        .quote-section-parallax {
            background-image: url('/website-templates/02/assets/img/2.jpg') !important;
            background-attachment: fixed !important;
            background-position: center !important;
            background-repeat: no-repeat !important;
            background-size: cover !important;
        }

        /* ========== RESPONSIVE DESIGN FOR NEW ELEMENTS ========== */
        @media (max-width: 768px) {
            .hero-action-card {
                bottom: 5%;
                padding: 12px 8px;
                flex-direction: row;
                border-radius: 20px;
                gap: 6px;
                width: calc(100% - 24px);
                justify-content: space-around;
                overflow: visible;
            }
            .action-card-btn {
                width: 32%;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                padding: 6px 4px;
                font-size: 0.65rem;
                letter-spacing: 0.5px;
                white-space: normal;
                gap: 6px;
            }
            .action-card-btn .btn-icon {
                width: 20px;
                height: 20px;
            }
            .form-row {
                flex-direction: column;
                gap: 15px;
            }
            .modal-container {
                padding: 25px;
            }
            .hero-title-small {
                font-size: 2.2rem !important;
            }
            .hero-desc-small {
                font-size: 0.95rem !important;
            }
        }

        /* ========== HERO BACKGROUND SLIDESHOW ========== */
        .hero-slideshow {
            position: absolute;
            top: -20%;
            left: 0;
            width: 100%;
            height: 140%;
            z-index: 1;
            overflow: hidden;
        }
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.8s ease-in-out;
            will-change: opacity;
        }
        .hero-slide.active {
            opacity: 1;
        }

        /* ========== HERO BOTTOM OVERLAY DARK FADE ========== */
        #home .parallax-overlay {
            background: linear-gradient(180deg, rgba(10, 10, 10, 0.1) 0%, rgba(10, 10, 10, 0.45) 55%, rgba(10, 10, 10, 0.85) 100%) !important;
            pointer-events: none;
        }

        /* ========== HERO SLIDE INDICATOR (3 VERTICAL LINES) ========== */
        .hero-slide-indicator {
            position: absolute;
            left: 40px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 25;
        }
        .indicator-line {
            width: 4px;
            height: 30px;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.4s ease;
        }
        .indicator-line:hover {
            background: rgba(255, 255, 255, 0.6);
        }
        .indicator-line.active {
            background: var(--gold);
            height: 45px; /* Premium stretch animation */
        }

        @media (max-width: 768px) {
            .hero-slide-indicator {
                left: 15px;
                gap: 10px;
            }
            .indicator-line {
                width: 3px;
                height: 20px;
            }
            .indicator-line.active {
                height: 30px;
            }
        }


/* ==========================================================================
   GLOBAL LIGHT THEME POLISH OVERRIDES
   ========================================================================== */

/* Overriding section headers to be dark and readable */
.section-header h2, 
.section-header h2 em,
.srv-packages-header h2,
.srv-packages-header h2 em {
    color: #333333 !important;
}

.section-header h2 em,
.srv-packages-header h2 em {
    font-style: italic;
    color: var(--accent-color) !important;
}

.section-header .label,
.section-header .section-subtitle,
.srv-packages-header .sph-label,
.about-content .section-label {
    color: var(--accent-color) !important;
    font-weight: 500;
}

/* Modals Light Mode Adaptation */
.modal-container {
    background: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #eaeaea !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.modal-header h2 {
    color: #333333 !important;
}

.modal-header p {
    color: #666666 !important;
}

.modal-close {
    background: rgba(0, 0, 0, 0.03) !important;
}

.modal-close svg {
    stroke: #666666 !important;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.08) !important;
}

.modal-close:hover svg {
    stroke: var(--accent-color) !important;
}

.modal-body label {
    color: #555555 !important;
}

.modal-input {
    background: #ffffff !important;
    border: 1px solid #dddddd !important;
    color: #333333 !important;
}

.modal-input:focus {
    background: #ffffff !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 8px rgba(191, 160, 158, 0.25) !important;
}

.modal-btn {
    background: var(--accent-color) !important;
    color: #ffffff !important;
}

.modal-btn:hover {
    background: #333333 !important;
    color: #ffffff !important;
}

.tab-btn {
    color: #666666 !important;
}

.tab-btn.active {
    color: #333333 !important;
    border-bottom-color: var(--accent-color) !important;
}

.qr-scanner-container {
    background: #fdfdfd !important;
}

.qr-scanner-view {
    border-color: var(--accent-color) !important;
}

.qr-upload-area {
    border-color: #cccccc !important;
    background: #fafafa !important;
}

.qr-upload-area:hover {
    border-color: var(--accent-color) !important;
}

/* Calendar Date picker style override for light theme */
.modal-input[type="date"]::-webkit-calendar-picker-indicator {
    filter: none !important; /* remove dark theme invert filter */
    cursor: pointer;
}

/* Ensure background of body and other global sections remain white/light */
body {
    background-color: #ffffff !important;
    color: #333333 !important;
}

.about-section,
.horizontal-section,
.services-section,
.gallery-section,
.video-gallery-section,
.testimonials-section,
.srv-packages-section,
.contact-section,
.instagram-section {
    background-color: #ffffff !important;
}

.services-grid .service-card,
.testimonial-item,
.srv-package-card,
.contact-form,
.contact-info {
    background-color: #fcfcfc !important;
    border: 1px solid #f0f0f0 !important;
}

.srv-package-card.featured {
    background-color: #ffffff !important;
    border: 2px solid var(--accent-color) !important;
}

.srv-package-features li svg {
    stroke: var(--accent-color) !important;
}

.srv-package-btn {
    background: #333333 !important;
    color: #ffffff !important;
}

.srv-package-btn:hover {
    background: var(--accent-color) !important;
    color: #ffffff !important;
}

.srv-package-card.featured .srv-package-btn {
    background: var(--accent-color) !important;
}

.srv-package-card.featured .srv-package-btn:hover {
    background: #333333 !important;
}

.horizontal-nav button {
    border-color: var(--accent-color) !important;
    color: var(--accent-color) !important;
}

.horizontal-nav button:hover {
    background: var(--accent-color) !important;
    color: #ffffff !important;
}

/* Portfolio Hover states and titles */
.portfolio-card .card-overlay {
    background: linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(10,10,10,0.85) 100%) !important;
}

.portfolio-card .card-overlay h3,
.portfolio-card .card-overlay p {
    color: #ffffff !important;
}

/* Lightbox theme */
.lightbox {
    background: rgba(10, 10, 10, 0.95) !important;
}

.lightbox-close,
.lightbox-nav-btn {
    color: #ffffff !important;
}


/* ==========================================================================
   EXTRA LIGHT THEME POLISH OVERRIDES
   ========================================================================== */

.about-content h2,
.about-content h2 em,
.service-card h3,
.service-card p,
.video-info h3,
.instagram-header h2,
.contact-info h2,
.contact-info h2 em,
.contact-detail-item h4,
.contact-detail-item .info h4,
.contact-detail-item .info span,
.contact-form label,
.srv-package-card h3,
.srv-package-price,
.srv-package-features li,
.testimonial-author-info h4 {
    color: #333333 !important;
}

.about-content h2 em,
.contact-info h2 em,
.testimonial-author-info span {
    color: var(--accent-color) !important;
}

.srv-package-price {
    color: var(--accent-color) !important;
}

/* Form controls in light theme contact form */
.contact-form input,
.contact-form select,
.contact-form textarea {
    background-color: #ffffff !important;
    border: 1px solid #dddddd !important;
    color: #333333 !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent-color) !important;
    outline: none !important;
    box-shadow: 0 0 8px rgba(191, 160, 158, 0.25) !important;
}

/* Package Card Styles in Light Mode */
.srv-package-card {
    background-color: #fcfcfc !important;
    border: 1px solid #eaeaea !important;
}

.srv-package-card.featured {
    background-color: #ffffff !important;
    border: 2px solid var(--accent-color) !important;
}

.srv-package-features li {
    border-bottom: 1px solid #eaeaea !important;
    color: #555555 !important;
}

.srv-package-features li svg {
    stroke: var(--accent-color) !important;
}

/* Contact Details */
.contact-detail-item {
    border-bottom: 1px solid #eaeaea !important;
}

.contact-detail-item .icon svg {
    stroke: var(--accent-color) !important;
}

/* Instagram Header */
.instagram-header .label {
    color: var(--accent-color) !important;
}

.instagram-handle {
    color: var(--accent-color) !important;
}

.instagram-handle:hover {
    color: #333333 !important;
}


/* ==========================================================================
   HEADER BOOK NOW BUTTON STYLE
   ========================================================================== */

.header-book-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color) !important;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.header-book-btn:hover {
    background: var(--accent-color) !important;
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(191, 160, 158, 0.25);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .header-book-btn {
        font-size: 0.50rem;
        margin-right: 10px;
    }
}

 @media (max-width: 480px) {
    .header-book-btn {
        font-size: 0.50rem;
        margin-right: 10px;
    }
 }