/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- Root Variables --- */
:root {
    --primary: #9b1b30;       /* Deep Crimson / Maroon */
    --secondary: #d4af37;     /* Elegant Gold */
    --dark: #1a1a1a;          /* Rich Black */
    --light: #fdfbf7;         /* Off-White/Cream */
    --text: #4a4a4a;          /* Soft Gray */
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary);
}

/* --- Navigation --- */
header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

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

.btn-call {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-call:hover {
    background: var(--dark);
}

/* --- Hero Section --- */
.hero {
    padding: 80px 0;
    background: var(--light);
}

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

.hero-text {
    flex: 1;
}

.badge {
    background: #f8e7e9;
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #666;
}

.hero-btns .btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    margin-right: 15px;
    display: inline-block;
    transition: var(--transition);
}

.hero-btns .btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 13px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(155, 27, 48, 0.2);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 30px 30px 0 var(--secondary);
    width: 100%;
}

/* --- Trust Bar --- */
.trust-bar {
    padding: 60px 0;
    background: var(--dark);
    color: var(--white);
}

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

.stat-item i {
    font-size: 30px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.stat-item h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    opacity: 0.8;
}

/* --- Services / Categories --- */
.services {
    padding: 100px 0;
}

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

.section-title h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
    text-align: center;
}

.card-content h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.icon-placeholder {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
}

.icon-placeholder i {
    font-size: 60px;
    color: var(--primary);
}

/* --- About Brief --- */
.about-brief {
    padding: 100px 0;
    background: var(--light);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-img, .about-text {
    flex: 1;
}

.about-img img {
    border-radius: 20px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.btn-text {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 20px;
}

/* --- Testimonials --- */
.testimonial-home {
    padding: 100px 0;
    text-align: center;
}

.testimonial-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-box i {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-box p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
}

.btn-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* --- FAQ --- */
.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 10px;
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* --- Footer --- */
footer {
    background: var(--dark);
    color: #999;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
}

footer .logo {
    color: var(--white);
    margin-bottom: 20px;
}

footer h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 5px;
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.socials a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-flex, .about-flex {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 40px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none; /* Mobile menu can be added with JS */
    }
}