* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

:root {
    --primary-red: #ED1C24;
    --primary-yellow: #FFF200;
    --dark-red: #C4161C;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --text-dark: #2D2D2D;
    --text-light: #666666;
    --shadow: 0 10px 30px rgba(237, 28, 36, 0.1);
    --transition: all 0.3s ease;
}

h1, h2, h3, .brand-font {
    font-family: 'Playfair Display', serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.5rem;
    border: 2px solid var(--primary-yellow);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-red);
}

.cta-button {
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid transparent;
    display: inline-block;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--white);
    color: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.9), rgba(196, 22, 28, 0.7)), url('haldirams_franchise_hero_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 120px 5% 100px;
    color: var(--white);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.hero-feature-item {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-yellow);
}

.hero-form-wrapper {
    width: 100%;
}

.hero-form-wrapper .form-wrapper {
    background: rgba(255, 255, 255, 1);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    color: var(--text-dark);
}

.hero-form-wrapper .form-group {
    margin-bottom: 15px;
}

.hero-form-wrapper input, .hero-form-wrapper select {
    background: #fdfdfd;
    border: 2px solid #eee;
    padding: 14px;
}

.hero-form-wrapper input:focus, .hero-form-wrapper select:focus {
    border-color: var(--primary-red);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    padding: 60px 5%;
    margin-top: -80px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 10;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    border-right: 1px solid #eee;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    display: block;
}

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

/* Section Styling */
.section {
    padding: 100px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Model Cards */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.model-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.model-card:hover {
    background: var(--white);
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-yellow);
}

.model-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.model-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Enquiry Form */
.enquiry-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: var(--light-gray);
    border-radius: 30px;
    padding: 60px;
}

.form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: var(--transition);
    font-size: 1rem;
}

.form-group input:focus {
    border-color: var(--primary-red);
    outline: none;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 80px 5% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 992px) {
    .hero { height: auto; padding-top: 140px; }
    .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero h1 { font-size: 3rem; }
    .hero-features { align-items: center; }
    .enquiry-container { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 40px; }
    .stat-item { border: none; }
}

@media (max-width: 768px) {
    header { padding: 10px 5%; }
    nav { display: none; } /* Hide nav links on mobile to prioritize CTA */
    .cta-button { padding: 10px 20px; font-size: 0.9rem; }
    .logo-container img { height: 45px !important; }
    .hero h1 { font-size: 2.5rem; }
    .section-header h2 { font-size: 2.2rem; }
    .section { padding: 60px 5%; }
    .stats-grid { grid-template-columns: 1fr; margin-top: 20px; gap: 20px; padding: 30px 5%; box-shadow: none; border: 1px solid #eee; }
    .stat-item { border-right: none; border-bottom: 1px solid #eee; padding-bottom: 20px; }
    .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
    .enquiry-container { padding: 30px 20px; gap: 40px; }
    .form-wrapper { padding: 25px 20px; }
    .model-card { padding: 25px; }
    .hero-form-wrapper .form-wrapper { padding: 25px 20px; }
}
