
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0a3d62;
--secondary: #3c6382;
--accent: #82ccdd;
--light: #f1f2f6;
--dark: #1e272e;
--text: #2f3542;
--text-light: #747d8c;
--white: #ffffff;
--gold: #f6b93b;
--transition: all 0.4s ease-in-out;
--radius: 5px;
--shadow: 0 8px 30px rgba(0, 0, 0, 0.1);

        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            background-color: var(--white);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .logo {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        html {
            scroll-behavior: smooth;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        section {
            padding: 100px 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px 40px;
            background-color: var(--secondary);
            color: var(--primary);
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .btn:before {
            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:before {
            left: 100%;
        }

        .btn:hover {
            background-color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(201, 169, 110, 0.2);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
        }

        .btn-outline:hover {
            background-color: var(--secondary);
            color: var(--primary);
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .section-title h2 {
            font-size: 3.2rem;
            color: var(--primary);
            display: inline-block;
            padding-bottom: 20px;
            position: relative;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background-color: var(--secondary);
        }

        .section-title p {
            max-width: 600px;
            margin: 20px auto 0;
            color: var(--text-light);
            font-size: 18px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.98);
            z-index: 1000;
            padding: 25px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            position: relative;
        }

        .logo:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary);
        }

        .logo span {
            color: var(--secondary);
            font-weight: 300;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        nav a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 500;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            transition: var(--transition);
        }

        nav a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--secondary);
            transition: var(--transition);
        }

        nav a:hover {
            color: var(--secondary);
        }

        nav a:hover:after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary);
            cursor: pointer;
        }

        /* Hero */
        .hero {
            padding: 200px 0 150px;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                        url('../images/hero.webp');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
            position: relative;
            margin-top: 80px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 30px;
            color: var(--white);
            line-height: 1.1;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 40px;
            color: rgba(255,255,255,0.9);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* About */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .about-image:before {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--secondary);
            border-radius: 8px;
            z-index: -1;
        }

        .about-text h3 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--primary);
        }

        .about-text p {
            margin-bottom: 25px;
            color: var(--text-light);
            font-size: 17px;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 24px;
            flex-shrink: 0;
        }

        /* Services */
        .services {
            background-color: var(--light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-15px);
        }

        .service-image {
            height: 200px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 30px;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background-color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 28px;
            margin-bottom: 20px;
            margin-top: -50px;
            position: relative;
            z-index: 1;
        }

        /* FAQ */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #eaeaea;
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: var(--secondary);
        }

        .faq-question {
            padding: 25px 30px;
            background-color: var(--white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 18px;
            transition: var(--transition);
        }

        .faq-question:hover {
            background-color: var(--light);
        }

        .faq-question i {
            color: var(--secondary);
            transition: var(--transition);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            color: var(--text-light);
        }

        .faq-answer.active {
            padding: 0 30px 30px;
            max-height: 500px;
        }

        /* Packages */
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .package-card {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid #eee;
            transition: var(--transition);
            position: relative;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
        }

        .package-card.luxury {
            border: 2px solid var(--secondary);
            transform: scale(1.05);
        }

        .luxury-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--secondary);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }

        .package-header {
            padding: 50px 40px;
            text-align: center;
            background: linear-gradient(135deg, var(--primary), #2a2a2a);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .package-header:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
        }

        .package-price {
            font-size: 3.5rem;
            font-weight: 700;
            margin: 20px 0;
            color: var(--secondary);
            font-family: 'Cormorant Garamond', serif;
        }

        .package-price span {
            font-size: 18px;
            font-weight: 400;
            color: rgba(255,255,255,0.8);
        }

        .package-features {
            padding: 40px;
            list-style: none;
        }

        .package-features li {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .package-features li:last-child {
            border-bottom: none;
        }

        .package-features i {
            color: var(--secondary);
        }

        .package-btn {
            margin: 0 40px 40px;
            width: calc(100% - 80px);
        }

        /* Testimonials */
        .testimonials {
            background-color: var(--light);
            position: relative;
        }

        .testimonials:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1519710164239-da123dc03ef4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.05;
        }

        .testimonials-slider {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .testimonial {
            background-color: var(--white);
            padding: 50px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            display: none;
            position: relative;
            z-index: 1;
        }

        .testimonial:before {
            content: '"';
            position: absolute;
            top: 30px;
            left: 30px;
            font-size: 120px;
            font-family: 'Cormorant Garamond', serif;
            color: var(--secondary);
            opacity: 0.2;
            line-height: 1;
        }

        .testimonial.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .testimonial-text {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 30px;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary), var(--gold));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--white);
            font-size: 24px;
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .slider-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--white);
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            color: var(--primary);
        }

        .slider-arrow:hover {
            background-color: var(--secondary);
            color: var(--white);
            border-color: var(--secondary);
        }

        /* Quote */
        .quote {
            background: linear-gradient(135deg, var(--primary), #2a2a2a);
            color: var(--white);
            text-align: center;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .quote:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1513584684374-8bab748fbf90?ixlib=rb-4.0.3&auto=format&fit=crop&w=1948&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
        }

        .quote h2 {
            color: var(--white);
            margin-bottom: 30px;
            font-size: 3.5rem;
            position: relative;
            z-index: 1;
        }

        .quote p {
            max-width: 700px;
            margin: 0 auto 50px;
            font-size: 18px;
            color: rgba(255,255,255,0.9);
            position: relative;
            z-index: 1;
        }

        .quote-form {
            max-width: 800px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            position: relative;
            z-index: 1;
        }

        .quote-form input {
            padding: 18px 25px;
            border: none;
            border-radius: var(--radius);
            font-size: 16px;
            background-color: rgba(255,255,255,0.95);
            transition: var(--transition);
        }

        .quote-form input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.3);
        }

        .quote-form button {
            grid-column: span 2;
            margin-top: 10px;
        }

        /* Footer */
        footer {
            background-color: var(--primary);
            color: var(--white);
            padding: 100px 0 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-column h3 {
            color: var(--white);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
            font-size: 24px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 10px;
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-info i {
            color: var(--secondary);
            margin-top: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--secondary);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #888;
            font-size: 15px;
        }

        .footer-bottom-links {
            margin-bottom: 25px;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }

        .footer-bottom-links a:hover {
            color: var(--secondary);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            overflow-y: auto;
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: var(--white);
            margin: 80px auto;
            padding: 50px;
            border-radius: 12px;
            width: 90%;
            max-width: 700px;
            position: relative;
            animation: modalSlide 0.4s ease;
        }

        @keyframes modalSlide {
            from { opacity: 0; transform: translateY(-60px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .close-modal {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 28px;
            cursor: pointer;
            color: var(--text-light);
            transition: var(--transition);
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .close-modal:hover {
            background-color: var(--light);
            color: var(--primary);
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--primary);
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-control {
            width: 100%;
            padding: 18px 20px;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            font-size: 16px;
            transition: var(--transition);
            background-color: var(--light);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .checkbox-group input {
            margin-top: 8px;
        }

        .confirmation-message {
            display: none;
            text-align: center;
            padding: 60px 30px;
        }

        .confirmation-message i {
            font-size: 80px;
            color: var(--secondary);
            margin-bottom: 30px;
        }

        .confirmation-message h3 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .modal-text {
            max-height: 500px;
            overflow-y: auto;
            padding: 30px;
            background-color: var(--light);
            border-radius: 8px;
            margin-top: 30px;
            line-height: 1.8;
        }

        .modal-text h3 {
            margin-top: 30px;
            color: var(--primary);
            border-bottom: 1px solid #ddd;
            padding-bottom: 10px;
        }

        .modal-text h3:first-child {
            margin-top: 0;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .container {
                padding: 0 30px;
            }
            
            .package-card.luxury {
                transform: none;
            }
        }

        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .about-image:before {
                display: none;
            }
            
            .services-grid,
            .packages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .quote-form {
                grid-template-columns: 1fr;
            }
            
            .quote-form button {
                grid-column: span 1;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 80px 0;
            }
            
            h1 { font-size: 3rem; }
            h2 { font-size: 2.5rem; }
            
            .hero h1 {
                font-size: 3.2rem;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 30px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
                gap: 25px;
            }
            
            nav ul.show {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-btns .btn {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
            
            .services-grid,
            .packages-grid {
                grid-template-columns: 1fr;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 20px;
            }
            
            section {
                padding: 60px 0;
            }
            
            .hero {
                padding: 150px 0 100px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .modal-content {
                padding: 30px;
            }
        }
    