/* Core Variables */
:root {
    --primary-color: #F02F23;
    /* Brand Red */
    --primary-dark: #c01b1b;
    --secondary-color: #000000;
    /* Black */
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #f5f5f5;
    --bg-light: #e8e9eb;
    --white: #ffffff;
    --border-color: #e5e5e5;

    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --spacing-unit: 1rem;
    --border-radius: 12px;
    --pill-radius: 50px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-unit);
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.heading-align-left h1,
.heading-align-left h2,
.heading-align-left h3,
.heading-align-left h4,
.heading-align-left h5,
.heading-align-left h6 {
    text-align: left;
}

.heading-align-center h1,
.heading-align-center h2,
.heading-align-center h3,
.heading-align-center h4,
.heading-align-center h5,
.heading-align-center h6 {
    text-align: center;
}

.heading-align-right h1,
.heading-align-right h2,
.heading-align-right h3,
.heading-align-right h4,
.heading-align-right h5,
.heading-align-right h6 {
    text-align: right;
}

.heading-align-justify h1,
.heading-align-justify h2,
.heading-align-justify h3,
.heading-align-justify h4,
.heading-align-justify h5,
.heading-align-justify h6 {
    text-align: justify;
}

.body-align-left {
    text-align: left;
}

.body-align-center {
    text-align: center;
}

.body-align-right {
    text-align: right;
}

.body-align-justify {
    text-align: justify;
}

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 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--pill-radius);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(240, 47, 35, 0.3);
}

.btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(240, 47, 35, 0.4);
    color: var(--white);
}

/* Typography Alignment Utility Classes */
.text-align-left {
    text-align: left !important;
}

.text-align-center {
    text-align: center !important;
}

.text-align-right {
    text-align: right !important;
}

.text-align-justify {
    text-align: justify !important;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: none;
}

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

.section-padding {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Top Bar */
.top-bar {
    background-color: #1a1a1a;
    color: #cccccc;
    font-size: 0.85rem;
    padding: 0.5rem 0;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.top-bar a {
    color: #cccccc;
}

.top-bar a:hover {
    color: var(--primary-color);
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
}

.logo img {
    height: 75px;
    max-height: 100%;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: capitalize;
    /* Match original site */
    color: var(--secondary-color);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    border-top: 3px solid var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 0;
    border-radius: 0 0 4px 4px;
    top: calc(100% + 15px);
}

/* Invisible bridge to prevent hover loss when moving mouse down */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -18px;
    /* Covers the 15px gap + 3px border */
    left: 0;
    width: 100%;
    height: 18px;
}

.dropdown-content a {
    color: var(--secondary-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 0.9rem;
    white-space: nowrap;
}

.dropdown-content a::after {
    display: none;
    /* Remove underline effect for dropdown items */
}

.dropdown-content a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: var(--primary-color);
}

.arrow {
    font-size: 0.7em;
    margin-left: 4px;
    vertical-align: middle;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-color: #0a0a0a;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 4rem 1.5rem;
}

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

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    font-weight: 400;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Preview */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

/* Stats Section */
.stats-section {
    padding: 4.5rem 0;
    background-color: #ffffff;
    /* Explicit White */
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.stat-symbol {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    /* Consistent height for icons */
}

.stat-symbol img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
    /* Darker for better contrast */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}



.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

/* Service Cards (Compact) */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.service-card-item {
    flex: 0 0 260px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 120px;
    /* Reduced from 200px */
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-content {
    padding: 1rem;
    /* Reduced padding */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-size: 1.1rem;
    /* Smaller font */
    font-weight: 700;
}

.card-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    /* Smaller font */
    line-height: 1.5;
    flex-grow: 1;
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-text:hover {
    color: #d32f2f;
    transform: translateX(3px);
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card a {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.service-card a:hover {
    color: var(--primary-dark);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #cccccc;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
}

.footer-section p {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.footer-section a {
    color: var(--white);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-address {
    color: inherit !important;
    text-decoration: none;
}

.footer-address:hover {
    text-decoration: underline;
    color: var(--primary-color) !important;
}

/* Why Choose Us Section - Enhanced Design */
.why-choose-us-section {
    position: relative;
    padding: 6rem 0;
    background-color: #000;
    background-image: url('/images/why_choose_us_bg_v2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.why-choose-us-section .container {
    position: relative;
    z-index: 2;
}

.why-choose-us-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.badge-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.badge-card {
    flex: 0 1 350px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.badge-card-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(240, 47, 35, 0.07);
    border-radius: 50%;
    padding: 1.25rem;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(240, 47, 35, 0.2);
}

.badge-card:hover .badge-card-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(240, 47, 35, 0.15);
}

.badge-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.badge-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.badge-card p {
    color: #cbd5e0;
    font-size: 1.05rem;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .badge-grid {
        gap: 2rem;
    }

    .badge-card {
        flex-basis: 280px;
    }
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 4.5rem 0;
    }

    .why-choose-us-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .badge-card {
        padding: 2.5rem 1.5rem;
    }
}



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

.copyright a {
    color: #888;
    transition: color 0.3s;
}

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

/* Page Header */
.page-header {
    background-color: var(--secondary-color);
    background-image: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #e0e0e0;
    font-size: 1.1rem;
}

/* Service Detail Pages */
.service-detail {
    padding: 2rem 0;
}

.service-detail h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: 2rem;
}

.service-detail h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.service-detail ul {
    list-style: disc;
    margin-left: 2rem;
    margin-top: 1rem;
}

.service-detail ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

hr {
    border: 0;
    border-top: 2px solid #e5e5e5;
    margin: 3rem 0;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-form,
.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #edeff2;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fcfcfd;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(240, 47, 35, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
}

/* Contact Page Grid Refinement */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.contact-card {
    background: var(--white);
    border-radius: 24px;
    /* Softer corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1.75rem 2.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-header h2 {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-body {
    padding: 2.5rem;
    flex-grow: 1;
}

.card-body.p-0 {
    padding: 0;
}

/* Specific Card Adjustments */
.detail-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 16px;
    transition: background 0.3s ease;
}

.detail-item:hover {
    background: rgba(240, 47, 35, 0.03);
}

.detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d32f2f 100%);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(240, 47, 35, 0.3);
}

.detail-content h3 {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-content p {
    font-size: 1.05rem;
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 1.4;
}

.detail-actions {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-btn.btn-outline {
    border: 1px solid #e2e8f0;
    color: var(--secondary-color);
}

.action-btn.btn-outline:hover {
    background: #f8f9fa;
    border-color: #cbd5e0;
}

/* Modern Accordion FAQ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-accordion details {
    border: 1px solid #edf2f7;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-accordion details[open] {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.faq-accordion summary {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    font-size: 1.05rem;
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-accordion summary::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-accordion details[open] summary::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Map Card - Fix Rounded Corners and Borders */
.contact-map-card .map-container {
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.contact-map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow);
        padding: 2rem;
        text-align: center;

        gap: 1rem;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        display: none;
        /* Hidden by default on mobile too, or block if we want it open? Let's make it appear on hover/focus or just always show for simplicity in this pass, or better: hover works on touch sometimes, but usually click. */
        /* Actually, for mobile responsiveness without JS toggles, a common pattern is to just show them or rely on :hover which becomes tap. */
        box-shadow: none;
        border-top: none;
        background-color: transparent;
        transform: none;
        min-width: auto;
        padding-left: 0;
    }

    .dropdown-content a {
        padding: 0.5rem 0;
        text-align: center;
        font-size: 0.9rem;
        color: var(--text-light);
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .top-bar .container {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        text-align: left;
    }

    /* About page responsive */
    .about-content-full>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}



.service-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 120px;
    /* Reduced from 200px */
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-content {
    padding: 1rem;
    /* Reduced padding */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-size: 1.1rem;
    /* Smaller font */
    font-weight: 700;
}

.card-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    /* Smaller font */
    line-height: 1.5;
    flex-grow: 1;
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-text:hover {
    color: #d32f2f;
    transform: translateX(3px);
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Centered Grid Helper */
.centered-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.centered-grid .service-card {
    flex: 1 1 280px;
    max-width: 400px;
}

/* Standard Service Page Styles */

/* Intro Section */
.service-intro {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.intro-text {
    flex: 1;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
}

.intro-image {
    flex: 1;
    max-width: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features List */
.features-section {
    margin-bottom: 4rem;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-color);
}

.features-section h2 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
}

.features-list li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Standard Layout */
.sections-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}

.content-row {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.content-row.image-right {
    flex-direction: row-reverse;
}

/* Image always on LEFT (unless reversed), Content always on RIGHT */
.row-image {
    flex: 1;
    max-width: 50%;
    /* Ensure it takes up half */
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.row-content {
    flex: 1;
}

.row-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.row-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}


/* Service CTA */
.service-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: var(--border-radius);
}

.service-cta h3 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .service-intro,
    .content-row,
    .content-row.image-right {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-image,
    .row-image {
        max-width: 100%;
    }
}

/* Full-width Quote CTA Bar */
.service-cta {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 3rem 1.5rem;
    width: 100%;
}

.service-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    font-weight: 700;
}

.service-cta .btn {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    border: 2px solid var(--white);
}

.service-cta .btn:hover {
    background: transparent;
    color: var(--white);
}

/* About Page Custom Classes */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-highlight-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-highlight-title.align-center {
    text-align: center;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.about-text.align-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-story-img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.about-card {
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.awards-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.awards-highlight {
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.about-text-section {
    margin-bottom: 3rem;
}

.community-list {
    list-style: none;
    padding: 0;
}

.community-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.check-mark {
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.promise-card {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
}



.promise-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0;
}

.promise-btn-container {
    margin-top: 2rem;
}

/* About Page Mobile Responsiveness */
@media (max-width: 768px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-card {
        padding: 1.5rem;
    }
}