/* Core Design System */
:root {
    --primary: #800000;
    /* Deep Maroon */
    --secondary: #D4AF37;
    /* Gold */
    --accent: #A92424;
    /* Bright Maroon */
    --bg-light: #FFFBF7;
    /* Soft Cream */
    --text-main: #2C2C2C;
    --text-muted: #666666;
    --transition: all 0.4s ease;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: #fff;
    line-height: 1.6;
}

h1,
h2,
h3,
.logo-text {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.main-nav {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--secondary);
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
}

.btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary);
}

.about p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.feature-list {
    margin-top: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-list i {
    color: var(--primary);
    margin-right: 15px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

/* Stats */
.stats {
    background: var(--primary);
    color: #fff;
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item h2 {
    font-size: 36px;
    color: var(--secondary);
}

.stat-item p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Packages */
.packages {
    padding: 100px 0;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    border: 1px solid #eee;
    padding: 50px 30px;
    text-align: center;
    border-radius: 8px;
    transition: var(--transition);
}

.package-card.featured {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
    position: relative;
}

.package-card h3 {
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.package-card .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 30px;
}

.package-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.package-card li {
    margin-bottom: 12px;
    font-size: 14px;
}

.package-card i {
    margin-right: 10px;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 38px;
    color: var(--primary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.step-number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    font-weight: 800;
    color: #eee;
}

.process-card:hover {
    border-top: 4px solid var(--secondary);
    transform: translateY(-5px);
}

.process-card .icon {
    margin-bottom: 20px;
    font-size: 35px;
    color: var(--primary);
}

.process-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.process-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Footer (Lists are here) */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer h4 {
    color: var(--secondary);
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 15px;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 12px;
}

.footer a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}