@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --accent-primary: #1e3a8a;
    /* Deep Navy */
    --accent-gold: #b48545;
    /* Classic Gold */
    --accent-gold-hover: #9c723b;
    --border-subtle: #e2e8f0;
    --transition-smooth: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--accent-gold);
}

/* Glassmorphism Navbar (Light) */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 1.25rem 0;
    transition: var(--transition-smooth);
}

.navbar-brand img {
    height: 55px;
    transition: var(--transition-smooth);
}

.navbar-brand:hover img {
    opacity: 0.85;
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold) !important;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-link:hover::before {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--bg-secondary);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('finale.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    filter: brightness(1.05) opacity(0.12) grayscale(0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    color: var(--accent-gold);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: block;
    animation: fadeInDown 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero h1 {
    font-size: 6rem;
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 2.5rem;
    color: var(--accent-primary);
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s both;
}

.hero-text {
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 1.35rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.btn-premium {
    display: inline-block;
    background: var(--accent-primary);
    border: 1px solid var(--accent-primary);
    color: #ffffff;
    padding: 16px 45px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-premium:hover {
    color: #ffffff;
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(180, 133, 69, 0.25);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General Sections */
.section-padding {
    padding: 140px 0;
}

.bg-alt {
    background-color: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .subtitle {
    display: block;
    color: var(--accent-gold);
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--accent-primary);
}

/* About Section */
.about-text p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
    font-weight: 300;
}

.about-image-wrapper {
    position: relative;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-image {
    position: relative;
    z-index: 1;
    width: 100%;
    transition: var(--transition-smooth);
    display: block;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.02);
}

/* Services Accordion */
.accordion {
    --bs-accordion-bg: transparent;
    border-radius: 0;
    border: none;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid var(--border-subtle);
    background: transparent;
    margin-bottom: 10px;
}

.accordion-button {
    color: var(--accent-primary) !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    padding: 30px 20px;
    font-weight: 500;
    box-shadow: none !important;
    background: transparent !important;
    transition: var(--transition-smooth);
}

.accordion-button:not(.collapsed) {
    color: var(--accent-gold) !important;
    padding-bottom: 15px;
}

.accordion-body {
    padding: 0 20px 30px 20px;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 300;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 15px 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px dotted var(--border-subtle);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: var(--accent-gold);
    font-size: 1.25rem;
    line-height: 1;
    margin-top: 5px;
    margin-right: 15px;
}

/* Pricing Section */
.pricing-content {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.pricing-list li {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: flex-start;
    color: var(--text-primary);
    font-weight: 400;
}

.pricing-list li i {
    margin-top: 6px;
    font-size: 1.1rem;
}

.info-cards .info-card {
    background: #fff;
    padding: 50px 40px;
    border: none;
    border-radius: 0;
    border-top: 3px solid var(--accent-gold);
    height: 100%;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.info-cards .info-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 25px;
    display: inline-block;
}

.info-card h4 {
    color: var(--accent-primary);
    font-size: 1.4rem;
}

.info-card p,
.pricing-summary {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
}

/* Contact Details */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.contact-box {
    padding: 50px 30px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    text-align: center;
    transition: var(--transition-smooth);
}

.contact-box:hover {
    background: #fff;
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
    border-color: #fff;
}

.contact-box i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
}

.contact-box h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.contact-box p,
.contact-box a {
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 1.1rem;
}

/* Form Styles */
.form-modern {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.form-modern .form-control {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    font-weight: 300;
    color: var(--text-primary);
    padding: 18px 25px;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.form-modern .form-control:focus {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-color: var(--accent-primary);
}

/* Map */
.map-premium {
    height: 100%;
    min-height: 450px;
    width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: var(--shadow-soft);
    filter: grayscale(30%) contrast(110%);
}

/* Footer */
.footer-premium {
    background: var(--accent-primary);
    padding: 80px 0 40px;
    color: #fff;
}

.footer-logo {
    height: 55px;
    filter: brightness(0) invert(1);
    margin-bottom: 30px;
}

.footer-premium p,
.footer-premium li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 300;
}

.footer-premium li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


@media (max-width: 991px) {
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .hero-bg {
        background-attachment: scroll; /* Fixes missing background on iOS/mobile browsers */
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.25rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 90px 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .about-image-wrapper::before {
        display: none;
    }
}