:root {
            --black: #000000;
            --white: #ffffff;
            --light-gray: #f5f5f5;
            --medium-gray: #e0e0e0;
            --dark-gray: #333333;
            --gold: #000000;
            --dark-gold: #000000;
            --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            --section-padding: 150px 0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--black);
            background-color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Ultra Minimal Header - Sticky */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background-color: var(--white);
            padding: 20px 0;
            border-bottom: 1px solid var(--medium-gray);
            transition: var(--transition);
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
        }

        .scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        }

        .container {
            width: 95%;
            max-width: 1600px;
            margin: 0 auto;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .nav-left {
            display: flex;
            gap: 40px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-left a, .nav-right a {
            color: var(--black);
            text-decoration: none;
            font-size: 11px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: var(--transition);
            padding: 8px 0;
            position: relative;
        }

        .nav-left a:hover, .nav-right a:hover {
            color: var(--black);
        }

        .nav-left a::after, .nav-right a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--black);
            transition: var(--transition);
        }

        .nav-left a:hover::after, .nav-right a:hover::after {
            width: 100%;
        }

         /* Logo container - keeps the space for logo */
        .logo-container {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            height: 60px; /* Adjust based on your logo size */
            width: 180px; /* Adjust based on your logo size */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-container a {
            text-decoration: none;
            display: flex;
            height: 100%;
            align-items: center;
        }
        .logo-img {
            max-height: 125%;
            max-width: 125%;
            transition: var(--transition);
        }

        .logo-img:hover {
            transform: scale(1.05);
        }

        .nav-icons {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .nav-icon {
            font-size: 20px; /* Increased from 18px */
            color: var(--black);
            transition: var(--transition);
            cursor: pointer;
            position: relative;
        }

        .nav-icon:hover {
            transform: translateY(-2px) scale(1.1);
        }

        .nav-icon .tooltip {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--black);
            color: var(--white);
            padding: 5px 10px;
            font-size: 10px;
            border-radius: 3px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            margin-top: 10px;
        }

        .nav-icon:hover .tooltip {
            opacity: 1;
            visibility: visible;
            margin-top: 5px;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 1001;
            color: var(--black);
            transition: var(--transition);
            font-size: 24px; /* Increased from default */
        }

        .hamburger.active {
            transform: rotate(90deg);
        }

        /* Hero Section */
        .hero-section {
            height: 500px;
            background-image: url('https://images.unsplash.com/photo-1605100804763-247f67b3557e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-top: 80px;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }

        .hero-content {
            text-align: center;
            color: var(--white);
            position: relative;
            z-index: 1;
            padding: 0 20px;
            max-width: 800px;
        }

        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out;
        }

        .hero-content p {
            font-size: 18px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out 0.2s forwards;
            opacity: 0;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: var(--white);
            border: 1px solid var(--white);
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: var(--transition);
            animation: fadeInUp 1s ease-out 0.4s forwards;
            opacity: 0;
            position: relative;
            overflow: hidden;
        }

        .btn:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .btn:hover::after {
            left: 100%;
        }

        /* Main Content Styles */
        main {
            padding: 100px 0;
            background-color: var(--white);
        }

        .policy-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .policy-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .policy-header h1 {
            font-size: 42px;
            margin-bottom: 20px;
            color: var(--black);
            position: relative;
            display: inline-block;
        }

        .policy-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: var(--black);
        }

        .policy-header p {
            font-size: 16px;
            color: var(--dark-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .policy-section {
            margin-bottom: 50px;
            background: var(--white);
            padding: 40px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid var(--medium-gray);
            position: relative;
            overflow: hidden;
        }

        .policy-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 0;
            background: var(--black);
            transition: var(--transition);
        }

        .policy-section:hover::before {
            height: 100%;
        }

        .policy-section:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .policy-section h2 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--black);
            position: relative;
            padding-bottom: 15px;
        }

        .policy-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--black);
            transition: var(--transition);
        }

        .policy-section:hover h2::after {
            width: 100px;
        }

        .policy-section p {
            margin-bottom: 15px;
            font-size: 15px;
            line-height: 1.8;
            color: var(--dark-gray);
        }

        .policy-section ul {
            margin: 20px 0;
            padding-left: 20px;
        }

        .policy-section li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
            font-size: 15px;
            line-height: 1.8;
            color: var(--dark-gray);
        }

        .policy-section li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--black);
            font-size: 20px;
            line-height: 1;
        }

        .contact-info {
            background: var(--black);
            color: var(--white);
            padding: 30px;
            text-align: center;
            border: 1px solid var(--black);
            position: relative;
        }

        .contact-info::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 65%, rgba(255,255,255,0.05) 65%);
            z-index: 0;
        }

        .contact-info h3 {
            font-size: 22px;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .contact-info p {
            color: var(--medium-gray);
            position: relative;
            z-index: 1;
        }

        .contact-info a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-block;
            border-bottom: 1px solid var(--white);
            position: relative;
            z-index: 1;
        }

        .contact-info a:hover {
            color: var(--medium-gray);
            border-bottom: 1px solid var(--medium-gray);
        }

        /* Footer - Luxury Details - UPDATED */
        footer {
            background: var(--white);
            color: var(--black);
            padding: 100px 0 50px;
            position: relative;
            border-top: 1px solid var(--light-gray);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            padding: 0 80px;
            margin-bottom: 80px;
        }

        .footer-column h4 {
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 30px;
            font-family: 'Montserrat', sans-serif;
            color: var(--black);
            position: relative;
            display: inline-block;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--black);
        }

        .footer-column ul {
            list-style: none;
            margin-top: 20px;
        }

        .footer-column li {
            margin-bottom: 15px;
        }

        .footer-column a {
            color: var(--dark-gray);
            text-decoration: none;
            font-size: 13px;
            transition: var(--transition);
            position: relative;
            display: inline-block;
            padding: 5px 0;
        }

        .footer-column a:hover {
            color: var(--black);
            padding-left: 10px;
        }

        .footer-column a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--black);
            transition: var(--transition);
        }

        .footer-column a:hover::after {
            width: 100%;
        }

        /* Social Links - Moved to 4th column */
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .social-links a {
            color: var(--dark-gray);
            font-size: 16px;
            transition: var(--transition);
            width: 45px;
            height: 45px;
            border: 1px solid var(--dark-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .social-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--black);
            transition: var(--transition);
            z-index: -1;
        }

        .social-links a:hover {
            color: var(--white);
            border-color: var(--black);
            transform: translateY(-3px);
        }

        .social-links a:hover::before {
            left: 0;
        }

        

        .footer-bottom {
            text-align: center;
            padding-top: 50px;
            border-top: 1px solid var(--light-gray);
            position: relative;
        }

        .footer-bottom p {
            font-size: 12px;
            color: var(--dark-gray);
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .footer-bottom a {
            color: var(--dark-gray);
            transition: var(--transition);
        }

        .footer-bottom a:hover {
            color: var(--black);
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .payment-methods img {
            height: 25px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: var(--transition);
        }

        .payment-methods img:hover {
            filter: grayscale(0);
            opacity: 1;
        }

        .back-to-top {
            position: absolute;
            top: -25px;
            right: 80px;
            width: 50px;
            height: 50px;
            background: var(--black);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            color: var(--white);
            font-size: 18px;
            border-radius: 50%;
        }

        .back-to-top:hover {
            transform: translateY(-5px) rotate(360deg);
            background: var(--dark-gray);
            color: var(--white);
        }

        /* New Luxury Elements */
        .luxury-divider {
            height: 1px;
            width: 100px;
            background: var(--black);
            margin: 30px auto;
            position: relative;
        }

        .luxury-divider::after {
            content: '';
            position: absolute;
            top: -3px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: var(--black);
            border-radius: 50%;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
             .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            /* Navigation adjustments */
            .logo-container {
                position: static;
                transform: none;
                order: -1;
                width: auto;
                margin-right: auto;
                padding-left: 20px;
            }

            .nav-left, .nav-right, .nav-icons {
                display: none;
            }
            
            .nav-left.active {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: var(--white);
                padding: 120px 40px;
                gap: 30px;
                z-index: 1000;
            }
            
            .nav-icons.active {
                display: flex;
                position: fixed;
                bottom: 20px;
                left: 0;
                width: 100%;
                justify-content: center;
                background: var(--white);
                padding: 15px;
                box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
                z-index: 1001;
            }

            /* Footer adjustments */
            .footer-content {
                grid-template-columns: 1fr;
                padding: 0 40px;
            }

            .footer-column {
                border-bottom: 1px solid var(--light-gray);
                padding-bottom: 30px;
            }

            .footer-column:last-child {
                border-bottom: none;
            }
            
            .hamburger {
                display: block;
                font-size: 20px;
            }
            
            .nav-icon .tooltip {
                display: none;
            }

            .hero-section {
                height: 400px;
                margin-top: 70px;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .policy-container {
                padding: 0 20px;
            }

            .policy-section {
                padding: 30px;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            
            .back-to-top {
                right: 40px;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                height: 300px;
            }

            .hero-content h1 {
                font-size: 28px;
            }

            .hero-content p {
                font-size: 16px;
            }

            main {
                padding: 60px 0;
            }

            .policy-header h1 {
                font-size: 32px;
            }

            .policy-section {
                padding: 25px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                padding: 0 20px;
                gap: 40px;
            }
            
            .back-to-top {
                right: 20px;
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        /* Animation styles */
        .animate-section {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .animate-section.visible {
            opacity: 1;
            transform: translateY(0);
        }