/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #E63946;
    /* The Requested Red */
    --primary-dark: #b71c1c;
    --primary-light: #ff6b6b;
    --secondary-color: #1f2937;
    /* Dark Grey/Blueish */
    --text-color: #4b5563;
    --light-bg: #f3f4f6;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --header-height: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Barlow', sans-serif;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-red {
    color: var(--primary-color);
}

/* Header & Topbar */
.topbar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.navbar {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 120px;
    /* Increased height for big logo */
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Barlow', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .logo {
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
    height: auto;
}

.navbar .logo img {
    filter: none;
    /* Remove invert */
    max-height: 100px;
    width: auto;
    min-width: 200px;
    /* Request: at least 200px */
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--secondary-color);
    /* Dark Text */
    font-size: 16px;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
    /* Dark Icon */
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    /* Reduced darkness */
}

.hero .container {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    margin-left: 0;
    /* Align left style */
    padding-left: 10%;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    /* Text shadow for legibility on light bg */
}

.hero-subtitle {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border-radius: 2px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Features/Info Cards */
.info-cards {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

.info-cards .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
}

.info-card {
    padding: 40px;
    background: var(--white);
    color: var(--text-color);
    transition: var(--transition);
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.info-card.active {
    background: var(--primary-color);
    color: var(--white);
}

.info-card.active h3,
.info-card.active p,
.info-card.active .icon {
    color: var(--white);
}

.info-card .icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-exp {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 5px;
    text-align: center;
}

.about-exp .years {
    font-size: 40px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.section-title {
    margin-bottom: 30px;
}

.section-title .sub {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
}

/* Services */
.services-section {
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    position: relative;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    position: absolute;
    top: -30px;
    right: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-content h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

/* Fun Facts */
.facts-section {
    background: var(--primary-color);
    /* Red Background */
    color: var(--white);
    text-align: center;
}

.facts-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.fact-item h2 {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.fact-item p {
    font-size: 18px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #111;
    color: #aaa;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    background: #000;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #222;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: var(--header-height);
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        transition: 0.3s;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .hero {
        height: auto;
        padding: 100px 0;
        background-position: right;
    }

    .hero .container {
        padding-left: 20px;
        text-align: center;
        margin: 0 auto;
    }

    .info-cards {
        margin-top: 0;
    }
}

/* Contact Page Styles */
.page-header {
    background: url('../assets/images/hero-bg.png') no-repeat center center/cover;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(31, 41, 55, 0.8), rgba(31, 41, 55, 0.7));
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 20px;
}

.breadcrumb {
    display: inline-flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.breadcrumb li {
    color: var(--white);
    font-weight: 500;
}

.breadcrumb li a {
    color: #ffd1d1;
}

.breadcrumb li a:hover {
    color: var(--white);
}

.contact-section {
    background-color: #fdfdfd;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 20px;
}

/* Contact Card Styling */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.08);
    /* Red tint shadow */
    border-color: rgba(230, 57, 70, 0.2);
}

.contact-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(230, 57, 70, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card:hover .icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.contact-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Form Styles */
.contact-form-box {
    background: var(--white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.contact-form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
}

.form-title h3 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 800;
}

.form-title p {
    margin-bottom: 40px;
    color: #777;
    font-size: 16px;
}

.contact-form .form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    background: #f9fafb;
    color: var(--secondary-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}

.contact-form .btn {
    width: 100%;
    border-radius: 8px;
    padding: 20px;
    font-size: 16px;
    letter-spacing: 1.5px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

/* Map Section */
.map-section {
    position: relative;
    margin-bottom: -10px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.map-section:hover {
    filter: grayscale(0%);
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 500px;
}

/* Responsive Contact */
@media(max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 42px;
    }

    .contact-form-box {
        padding: 40px;
    }
}

/* Custom Grid System (Bootstrap-lite) */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-6,
.col-lg-5,
.col,
.col-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.align-items-center {
    align-items: center;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .mb-md-0 {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-outline-light {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary-color);
}