:root {
    --primary-dark: #1a2744;
    --primary: #2c3e50;
    --accent-gold: #c9a962;
    --accent-gold-hover: #b8954d;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-dark);
}

.brand-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    color: var(--primary-dark);
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 98, 0.4);
    color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--primary-dark);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--accent-gold);
}

.hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn-gold {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.hero-buttons .btn-outline {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    border-color: var(--white);
    color: var(--white);
}

.hero-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.stats {
    background: var(--white);
    padding: 3rem 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.features {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-gold);
}

.feature-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

footer {
    background: var(--primary-dark);
    padding: 4rem 0 2rem;
    color: rgba(255, 255, 255, 0.7);
}

footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.875rem;
}

@@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        padding-top: 100px;
        padding-bottom: 3rem;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
}

@@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta h2 {
        font-size: 1.75rem;
    }
}

/* Inquiry Modal Styles */
#inquiryModal .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

#inquiryModal .modal-header {
    background: linear-gradient(135deg, #1a2744 0%, #2d4a7c 100%);
    color: #ffffff;
    border: none;
    padding: 1.5rem 2rem;
}

#inquiryModal .modal-header .modal-title {
    color: #ffffff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
}

#inquiryModal .modal-header .text-muted {
    color: rgba(255,255,255,0.7) !important;
}

#inquiryModal .modal-header .btn-close {
    filter: brightness(0) invert(1);
}

#inquiryModal .modal-body {
    padding: 2rem;
}

#inquiryModal .form-label {
    font-weight: 600;
    color: #1a2744;
    font-size: 0.9rem;
}

#inquiryModal .form-control {
    border: 2px solid #e8ecf1;
    border-radius: 8px;
    padding: 0.625rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#inquiryModal .form-control:focus {
    border-color: #c9a962;
    box-shadow: 0 0 0 3px rgba(201,169,98,0.15);
}

#inquiryModal .form-control::placeholder {
    color: #adb5bd;
}

#inquiryModal .modal-footer {
    border: none;
    padding: 1rem 2rem 1.5rem;
}

#inquiryModal .modal-footer .btn-gold {
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

#inquiryModal .modal-footer .btn-gold:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

#inquiryModal .spinner-border {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

#inquiryAlert {
    border-radius: 8px;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    #inquiryModal .modal-body {
        padding: 1.25rem;
    }
    #inquiryModal .modal-header {
        padding: 1rem 1.25rem;
    }
    #inquiryModal .modal-footer {
        padding: 0.75rem 1.25rem 1rem;
    }
    #inquiryModal .modal-footer .btn-gold {
        width: 100%;
    }
}
