@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
    --primary-color: #0A1128; /* Midnight Blue */
    --secondary-color: #1C2541; /* Dark Navy */
    --accent-gold: #C5A880; /* Elegant Champagne Gold */
    --accent-gold-hover: #D4AF37; /* Bright Gold */
    --text-main: #1E293B; /* Slate Dark */
    --text-muted: #64748B;
    --text-light: #F8FAFC;
    --bg-main: #FFFFFF;
    --bg-light: #F1F5F9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    padding: 18px 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-premium {
    background: linear-gradient(135deg, var(--accent-gold), #b0926a);
    color: var(--primary-color) !important;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(197, 168, 128, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-premium:hover {
    background: linear-gradient(135deg, var(--accent-gold-hover), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.5);
    color: var(--primary-color) !important;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid var(--accent-gold);
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--text-light);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(197, 168, 128, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 60px;
    z-index: 2;
}

.tagline {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background-color: var(--accent-gold);
}

.hero h1 {
    font-size: 56px;
    color: var(--text-light);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

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

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 680px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Stats Bar */
.stats-section {
    background: var(--secondary-color);
    border-top: 1px solid rgba(197, 168, 128, 0.2);
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    padding: 60px 0;
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 44px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: var(--bg-main);
    padding: 48px 36px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border-bottom: 4px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(197, 168, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--accent-gold);
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--accent-gold);
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* About / Why Us Section */
.why-us-section {
    padding: 120px 0;
    background: var(--bg-main);
}

.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.why-us-content p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    color: var(--accent-gold);
    font-size: 20px;
    margin-top: 2px;
}

.benefit-item h4 {
    font-family: var(--font-body);
    font-size: 18px;
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
}

.why-us-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(10, 17, 40, 0.15);
}

.why-us-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(10,17,40,0.4) 0%, transparent 100%);
}

.why-us-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    max-width: 100%;
    display: block;
}

/* Testimonials */
.testimonials-section {
    padding: 120px 0;
    background: var(--secondary-color);
    color: var(--text-light);
}

.testimonials-section .section-header h2 {
    color: var(--text-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 48px;
    border-radius: 8px;
    position: relative;
}

.testimonial-quote {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
    color: #cbd5e1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    max-width: 64px;
    max-height: 64px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.author-info h4 {
    color: var(--accent-gold);
    font-family: var(--font-body);
    font-size: 16px;
    margin-bottom: 2px;
}

.author-info span {
    color: var(--text-muted);
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(197, 168, 128, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--accent-gold);
    font-family: var(--font-body);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid, .features-grid, .why-us-container, .testimonials-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stat-item:not(:last-child)::after {
        display: none;
    }
    .hero h1 {
        font-size: 42px;
    }
}
