@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --luxury-gold: #4fa3d1;
    /* Soft sky blue */
    --dark-gold: #1a5f7a;
    /* Deep ocean blue */
    --rich-black: #0d1b2a;
    /* Dark navy black */
    --elegant-gray: #2e2e2e;
    /* Neutral charcoal gray */
    --light-gray: #e0e5ec;
    /* Soft silver gray */
    --cream: #f5f9ff;
    /* Very light bluish white */
    --accent-burgundy: #22577a;
    /* Muted steel blue */
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--elegant-gray);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

/* Header Styles */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--luxury-gold) !important;
    letter-spacing: 1px;
}

.nav-link {
    color: white !important;
    font-weight: 400;
    margin: 0 20px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--luxury-gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--luxury-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)),
        url('../img/hero.jpg') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(14, 149, 201, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-content .gold-text {
    color: var(--luxury-gold);
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons .btn {
    margin: 0 10px;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-luxury-primary {
    background: var(--luxury-gold);
    border: 2px solid var(--luxury-gold);
    color: var(--rich-black);
}

.btn-luxury-primary:hover {
    background: transparent;
    color: var(--luxury-gold);
    transform: translateY(-2px);
}

.btn-luxury-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-luxury-secondary:hover {
    background: white;
    color: var(--rich-black);
    transform: translateY(-2px);
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--luxury-gold);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--elegant-gray);
    margin-top: 30px;
}

/* About Section */
.about-content {
    background: white;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--luxury-gold);
}

.about-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #e0e0e0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--luxury-gold);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--elegant-gray);
    margin-top: 10px;
}

/* Services Section */
.service-category {
    margin-bottom: 80px;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--luxury-gold);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--luxury-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rich-black);
    font-size: 1.5rem;
    margin-right: 20px;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--rich-black);
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.services-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border: 1px solid #e0e0e0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 149, 201, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--luxury-gold);
    box-shadow: 0 10px 40px rgba(14, 149, 201, 0.2);
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--rich-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--rich-black);
    margin-bottom: 15px;
}

/* Why Choose Us */
.feature-section {
    background: var(--rich-black);
    color: white;
    padding: 100px 0;
}

.feature-card {
    text-align: center;
    padding: 40px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: var(--luxury-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rich-black);
    font-size: 2.5rem;
    margin: 0 auto 30px;
}

.feature-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--luxury-gold);
    opacity: 0.2;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--elegant-gray);
    margin-bottom: 30px;
    padding-left: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--luxury-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rich-black);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 20px;
    font-family: 'Playfair Display', serif;
}

.author-info h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info small {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Section */
.faq-section {
    background: var(--light-gray);
    padding: 80px;
}

.accordion-item {
    background: white;
    border: none;
    margin-bottom: 20px;
    border-radius: 0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: white;
    color: var(--rich-black);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 25px;
    border: none;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: var(--rich-black);
    color: var(--luxury-gold);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212121'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Contact Form */
.contact-section {
    background: linear-gradient(135deg, var(--rich-black), var(--elegant-gray));
    padding: 100px 0;
    color: rgba(255, 255, 255, 0.6);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 60px;
    border: 1px solid rgba(14, 149, 201, 0.3);
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(14, 149, 201, 0.3);
    color: #000;
    padding: 15px;
    border-radius: 0;
    margin-bottom: 20px;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--luxury-gold);
    box-shadow: none;
    color: rgba(255, 255, 255, 0.6);
}

.form-select option {
    background: var(--rich-black);
    color: rgba(255, 255, 255, 0.6);
}

/* Footer */
footer {
    background: var(--rich-black);
    color: white;
    padding: 80px 0 40px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--luxury-gold);
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--luxury-gold);
    padding-left: 5px;
}

.social-links a {
    color: var(--luxury-gold);
    font-size: 1.5rem;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: white;
    transform: translateY(-3px);
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal-content-custom {
    position: relative;
    background: white;
    max-width: 800px;
    margin: 50px auto;
    border-radius: 0;
    max-height: 85vh;
    overflow-y: auto;
    animation: zoomIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-header-custom {
    background: var(--rich-black);
    color: white;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header-custom h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--luxury-gold);
    margin: 0;
}

.modal-body-custom {
    padding: 40px;
}

.close-modal {
    background: none;
    border: none;
    color: var(--luxury-gold);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: white;
    transform: rotate(90deg);
}

/* Success Message */
.success-message {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--rich-black);
    color: var(--luxury-gold);
    padding: 40px 60px;
    border: 2px solid var(--luxury-gold);
    z-index: 10000;
    animation: fadeIn 0.5s ease;
    text-align: center;
}

.success-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .faq-section {
        padding: 40px 20px;
    }
}