        /* Page Hero */
        .page-hero {
            padding-top: 64px;
            padding-bottom: 100px;
            background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(26,26,26,0.9) 100%), 
                        url('https://images.unsplash.com/photo-1559067096-49ebca3406aa?w=1600') center/cover no-repeat;
            background-attachment: fixed;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.15), transparent 70%);
            pointer-events: none;
        }
        .page-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            animation: fadeInDown 0.8s ease;
        }
        .page-hero p {
            color: rgba(255,255,255,0.9);
            font-size: 1.3rem;
            animation: fadeInUp 0.8s ease 0.2s both;
        }
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        section { padding: 100px 0; }
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--primary-black);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
            border-radius: 10px;
        }
        .content-text {
            font-size: 1.15rem;
            line-height: 1.9;
            color: #555;
            max-width: 900px;
            margin: 0 auto;
        }
        
        /* Image Section with Text */
        .image-text-section {
            position: relative;
            overflow: hidden;
        }
        .image-text-section img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            transition: all 0.6s ease;
        }
        .image-text-section img:hover {
            transform: scale(1.05);
        }
        
        /* Feature Boxes with 3D Effects */
        .feature-box-3d {
            background: #fff;
            border-radius: 25px;
            padding: 50px 40px;
            height: 100%;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transform-style: preserve-3d;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        .feature-box-3d::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s ease;
            z-index: -1;
            border-radius: 25px;
        }
        .feature-box-3d:hover::before {
            transform: scaleX(1);
        }
        .feature-box-3d:hover {
            transform: translateY(-15px) rotateY(5deg) rotateX(5deg);
            box-shadow: 0 30px 60px rgba(255, 215, 0, 0.4);
            border-color: var(--primary-gold);
        }
        .feature-box-3d i {
            font-size: 3.5rem;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 25px;
            display: block;
            transition: all 0.6s ease;
        }
        .feature-box-3d:hover i {
            transform: rotateY(360deg) scale(1.2);
            background: var(--primary-black);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .feature-box-3d h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary-black);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        .feature-box-3d p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #555;
            transition: all 0.3s ease;
        }
        .feature-box-3d:hover h3,
        .feature-box-3d:hover p {
            color: var(--primary-black);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
            padding: 80px 0;
            text-align: center;
        }
        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary-black);
            margin-bottom: 25px;
        }
        .cta-section p {
            font-size: 1.3rem;
            color: var(--primary-black);
            margin-bottom: 35px;
        }
        .btn-cta {
            background: var(--primary-black);
            color: var(--primary-gold) !important;
            padding: 18px 50px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            transition: all 0.4s ease;
            display: inline-block;
            border: 3px solid var(--primary-black);
        }
        .btn-cta:hover {
            background: transparent;
            color: var(--primary-black) !important;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        