/* ===================================
   Custom Properties (CSS Variables)
   =================================== */
:root {
    /* Azemi Brand Color - Pantone 1955 C */
    --primary-color: #8A1538;
    --primary-dark: #6b0f2a;
    --primary-light: #a71b44;
    --primary-lighter: #c22350;
    
    /* Accent Colors */
    --accent-gold: #c0c0c0;
    --accent-light: #f5f5f5;
    
    /* Neutral Colors */
    --dark: #1a1a1a;
    --dark-gray: #2d2d2d;
    --medium-gray: #6c757d;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-brand: 'Cinzel', serif;
    
    /* Spacing - Professional Spacing System */
    --section-padding: 60px;
    --section-padding-small: 60px;
    --container-max-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

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

/* Show outlines only when navigating with keyboard */
:focus:not(:focus-visible) { outline: none; }
:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: var(--section-padding) 0;
    margin: 0;
}

/* normalized vertical spacing between major sections */
.process-section, .services-section, .why-us-section, .contact-section, .cta-banner-section, .cta-banner {
    margin-top: 0;
    margin-bottom: 0;
}

/* Contact Card (compact two-column layout) */
.contact-card {
    background: var(--white);
    border: 1px solid #ececec;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
}

.contact-left {
    background: #fff;
}

@media (min-width: 768px) {
    .contact-left {
        border-right: 1px solid #ececec;
    }
}

.contact-left .contact-item-inline {
    padding: 1rem;
}

.contact-left .contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
}

.contact-card .contact-form-wrapper {
    box-shadow: none;
    border: none;
    padding: 0;
}

.contact-card .contact-form .row.g-3 { row-gap: 0.75rem; }
.contact-card .contact-info-wrapper, .contact-card .contact-form-wrapper { height: 100%; }


/* Professional Container Constraints */
.container {
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 100%;
    }
}

/* Section Spacing Utilities */
.section-spacing {
    margin-bottom: var(--spacing-xxl);
}

.mb-section {
    margin-bottom: var(--section-padding-small);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    padding: 1.5rem 0;
    transition: all var(--transition-fast);
    background: transparent;
    z-index: 1050;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.navbar.scrolled {
    background: rgba(138, 21, 56, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white) !important;
    letter-spacing: 2px;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: var(--transition-fast);
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

.brand-text-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: 1;
    gap: 3px;
    width: 165px;
}

.brand-text {
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 1.9rem;
    line-height: 1.05;
    display: flex;
    justify-content: space-between;
    width: 100%;
    letter-spacing: 0;
}

.brand-subtitle {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.6rem;
    text-transform: uppercase;
    opacity: 0.92;
    display: flex;
    justify-content: space-between;
    width: 100%;
    letter-spacing: 0;
}

.brand-subtitle .space,
.footer-tagline .space {
    min-width: 0.6em;
    display: inline-block;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 15px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition-fast);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-estimate {
    background: transparent;
    color: var(--white) !important;
    padding: 10px 25px !important;
    border-radius: 30px;
    margin-left: 15px;
    font-weight: 600;
    border: 2px solid var(--white);
}

.btn-estimate::after {
    display: none;
}

.btn-estimate:hover {
    background: var(--white);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Mobile Menu Styling */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.7);
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Navigation Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(138, 21, 56, 0.98);
        backdrop-filter: blur(10px);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        position: relative;
        z-index: 1000;
    }
    
    .navbar-nav {
        padding: 0.5rem 0;
    }
    
    .navbar-nav .nav-link {
        margin: 0;
        padding: 12px 16px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .btn-estimate {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
        display: block;
    }
    
    /* Ensure navbar has background on mobile */
    .navbar {
        background: rgba(138, 21, 56, 0.98) !important;
        backdrop-filter: blur(10px);
    }
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    max-height: 800px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-bottom: 140px;
    margin-bottom: 0;
}

.hero-logo-badge {
    margin: 0 auto 2rem;
    animation: fadeInDown 1s ease;
}

.hero-logo-img {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 5px 20px rgba(232, 220, 196, 0.5));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 21, 56, 0.9) 0%, rgba(107, 15, 42, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 120px; /* keep hero text clear of navbar */
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title .highlight {
    color: var(--white);
    display: inline-block;
    font-style: italic;
    white-space: nowrap;
    font-size: 4.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 300;
}

.hero-subtitle-enhanced {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-credentials {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
}

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

.btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    font-family: var(--font-primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 21, 56, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    font-family: var(--font-primary);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 2rem;
    opacity: 0.7;
    transition: var(--transition-fast);
    animation: bounce 2s infinite;
}

.scroll-indicator a:hover {
    opacity: 1;
    color: var(--white);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Hero Top CTA */
.hero-top-cta {
    position: absolute;
    top: 100px;
    right: 20px;
    z-index: 10;
    max-width: 500px;
}

.top-cta-content {
    background: rgba(212, 175, 55, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.top-cta-content i {
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.top-cta-content span {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
    flex: 1;
}

.top-cta-content .btn {
    flex-shrink: 0;
    padding: 8px 20px;
    font-size: 0.85rem;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
}

.top-cta-content .btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Stats Bar (Bottom) */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 20px 0;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.stat-item-inline {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    padding: 12px 10px;
    transition: var(--transition-fast);
}

.stat-item-inline:hover {
    transform: translateY(-3px);
}

.stat-item-inline i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 12px;
    color: var(--white);
}

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

.stat-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 2px;
}

.stat-text span {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    margin-bottom: var(--spacing-xxl);
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-primary);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    display: none;
}

.section-description {
    font-size: 1.15rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: var(--spacing-lg) auto 0;
    line-height: 1.8;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    background: var(--white);
    padding: var(--section-padding) 0;
    margin-top: 0;
}

.about-section .section-header {
    text-align: center;
}

.about-section .row {
    align-items: center;
    gap: var(--spacing-xl);
}

.about-images {
    position: relative;
}

.about-img-main {
    position: relative;
    z-index: 2;
}

.about-img-main img {
    border-radius: 15px;
}

.about-img-overlay {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 1;
    width: 60%;
}

.about-img-overlay img {
    border: 8px solid var(--white);
    border-radius: 15px;
}

.image-watermark {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.3;
    transition: var(--transition-fast);
}

.about-img-main:hover .image-watermark {
    opacity: 0.6;
}

.watermark-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.about-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-content .lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--dark);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 2rem;
    border-radius: 15px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(138, 21, 56, 0.2);
}

.cta-box h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 0.8rem;
}

.cta-box .tagline {
    font-style: italic;
    font-size: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

/* ===================================
   Legacy Section (About)
   =================================== */
.legacy-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.section-divider-line {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: center;
}

.body-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    text-align: center;
}

.legacy-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 3rem 0;
    opacity: 0.3;
}

.call-to-work {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 3rem;
    border-radius: 15px;
    color: var(--white);
    margin-top: 2rem;
    box-shadow: 0 15px 50px rgba(138, 21, 56, 0.25);
}

.call-to-work h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-align: center;
}

.call-to-work p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    text-align: center;
}

.closing-statement {
    font-size: 1.2rem;
    font-weight: 500;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
}

.closing-statement strong {
    color: var(--white);
    font-weight: 700;
}

.cta-buttons-legacy {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 1rem;
}

.btn-outline-primary {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    font-family: var(--font-primary);
}

.btn-outline-primary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* ===================================
   Company Statistics Counter Section
   =================================== */
.stats-counter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: var(--section-padding) 0;
    margin: 0;
}

.counter-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    transition: var(--transition-medium);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.counter-card:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.counter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--dark);
}

.counter-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.counter-number.with-plus::after {
    content: '+';
}

.counter-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ===================================
   Section Dividers
   =================================== */
.section-divider { display: none; }

.section-divider-angle { display: none; }

.section-divider-angle::before { display: none; }

.section-divider-angle-inverted { display: none; }

.section-divider-angle-inverted::before { display: none; }


/* ===================================
   Team Showcase Section
   =================================== */
.team-showcase-section {
    background-color: var(--dark);
    padding: var(--section-padding) 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin: 0;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 21, 56, 0.9), rgba(107, 15, 42, 0.9));
    z-index: 1;
}

.team-showcase-section .container {
    position: relative;
    z-index: 2;
}

.on-dark {
    color: var(--white) !important;
}

.section-tag.on-dark {
    color: var(--white);
    opacity: 0.9;
}

.safety-item-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: var(--spacing-lg);
    height: 100%;
    transition: var(--transition-fast);
}

.safety-item-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--white);
}

.safety-item-card .safety-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.9));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.safety-item-card h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.safety-item-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.team-cta {
    padding: var(--spacing-lg) 0;
    color: var(--white);
    text-align: center;
}

.team-cta .lead {
    color: var(--white);
    font-size: 1.5rem;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    background: var(--light-gray);
    padding: var(--section-padding) 0;
    margin: 0;
}

.services-section .row {
    row-gap: var(--spacing-md);
}

@media (min-width: 992px) {
    .services-section .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.service-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-medium);
    height: 100%;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(138, 21, 56, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 600;
    min-height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* ===================================
   Process Section
   =================================== */
.process-section {
    background: var(--white);
    padding: var(--section-padding) 0;
}

.process-timeline {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: var(--spacing-xxl);
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: calc(100% - 200px);
    height: 3px;
    background: #e0e0e0;
    top: 30px;
    left: 100px;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.process-card {
    background: var(--white);
    padding: var(--spacing-lg);
    padding-top: var(--spacing-xl);
    border-radius: 15px;
    position: relative;
    height: 100%;
}

.process-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 0 0 10px var(--white);
    transition: var(--transition-fast);
}

.process-step:hover .process-number {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(-50%) scale(1.1);
}

.process-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin: var(--spacing-lg) 0 var(--spacing-md);
    transition: var(--transition-fast);
}

.process-step:hover .process-icon {
    color: var(--primary-light);
    transform: scale(1.1);
}

.process-card h4 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.process-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.gallery-section .section-header {
    margin-bottom: var(--spacing-xxl);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    padding: 0 var(--spacing-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
}

.gallery-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 21, 56, 0.9), rgba(107, 15, 42, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.gallery-logo-watermark {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-fast);
}

.gallery-logo-watermark img {
    height: 40px;
    width: auto;
}

.gallery-logo-watermark span {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-text {
    transform: translateY(0);
}

.gallery-item:hover .gallery-logo-watermark {
    opacity: 1;
    transform: translateX(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===================================
   Why Us Section
   =================================== */
.why-us-section {
    background: var(--white);
    padding: var(--section-padding) 0;
}

.why-us-section .row {
    gap: var(--spacing-xl);
}

.why-us-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition-fast);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.feature-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(138, 21, 56, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
}

.feature-content h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--dark);
    font-weight: 600;
}

.feature-content p {
    margin: 0;
    color: var(--medium-gray);
    font-size: 0.85rem;
    line-height: 1.4;
}

.why-us-cta {
    margin-top: var(--spacing-xl);
}

.cta-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: var(--spacing-xl);
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(138, 21, 56, 0.3);
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-md);
}

.cta-badge h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.highlight-cta {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-md);
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    border-radius: 15px;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--accent-gold), #d4c5a9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.badge-text h5 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.badge-text p {
    margin: 0;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background: var(--light-gray);
    padding: var(--section-padding) 0;
}

.contact-info {
    margin-top: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition-fast);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(138, 21, 56, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
    font-weight: 600;
}

.contact-details a,
.contact-details p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 0.95rem;
}

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

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.business-hours-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-lg);
}

.business-hours-card h4 {
    color: var(--accent-gold);
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
}

.business-hours-card .highlight-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.why-us-cta {
    margin-top: var(--spacing-xl);
}

.cta-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: var(--spacing-xl);
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(138, 21, 56, 0.3);
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-md);
}

.cta-badge h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.highlight-cta {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-md);
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    border-radius: 15px;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--accent-gold), #d4c5a9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.badge-text h5 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.badge-text p {
    margin: 0;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background: var(--light-gray);
    padding: var(--section-padding) 0;
}

.contact-section .row {
    gap: var(--spacing-xl);
}

.contact-info {
    margin-top: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition-fast);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(138, 21, 56, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-details a,
.contact-details p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 1.05rem;
}

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

.business-hours {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: var(--spacing-xl);
    border-radius: 20px;
    color: var(--white);
    margin-top: var(--spacing-lg);
    box-shadow: 0 10px 30px rgba(138, 21, 56, 0.2);
}

.business-hours h4 {
    color: var(--accent-gold);
    margin-bottom: var(--spacing-md);
    font-size: 1.3rem;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 2px solid var(--light-gray);
}

.contact-form .form-control,
.contact-form select {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-form .form-control:focus,
.contact-form select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(138, 21, 56, 0.1);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
}

.contact-form button[type="submit"] {
    transition: var(--transition-fast);
    font-size: 1rem;
    letter-spacing: 1px;
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 21, 56, 0.3);
}

/* ===================================
   CTA Banner
   =================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: var(--section-padding) 0;
    color: var(--white);
    margin: 0;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 21, 56, 0.95), rgba(107, 15, 42, 0.95));
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.cta-features {
    margin-top: var(--spacing-xxl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: var(--white);
}

.cta-feature i {
    color: var(--white);
    font-size: 1.5rem;
}

.cta-feature span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===================================
   Review Section
   =================================== */
.review-section {
    background: var(--light-gray);
    padding: var(--section-padding) 0;
    margin: 0;
}

.review-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-gray);
}

.review-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold), #d4c5a9);
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--white);
}

.review-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.review-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 2rem 0;
}

.footer .row {
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0.75rem;
}

.footer-logo {
    height: 42px;
    width: auto;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 165px;
    gap: 3px;
}

.footer-brand h3,
.footer-brand-title {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    font-family: var(--font-brand);
    display: flex;
    justify-content: space-between;
    width: 100%;
    letter-spacing: 0;
}

.footer-tagline {
    margin: 0;
    opacity: 0.9;
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    width: 100%;
    letter-spacing: 0;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact li strong {
    color: var(--white);
    display: inline;
    font-size: 1rem;
    margin-right: 0.35rem;
}

.footer-contact li div {
    line-height: 1.5;
}

.footer-contact i {
    color: var(--primary-lighter);
    width: 20px;
    min-width: 20px;
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-fast);
    word-break: break-all;
}

.footer-contact a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-contact li div a {
    display: inline;
    color: rgba(255, 255, 255, 0.9);
}

/* Make phone and email links more touch-friendly on mobile */
@media (max-width: 767px) {
    .footer-contact a {
        display: inline-block;
        padding: 5px 0;
        font-size: 1rem;
    }
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1.5rem 0;
    opacity: 0.5;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(138, 21, 56, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

/* Mobile call button removed per client request */

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 991px) {
    :root {
        --section-padding: 60px;
        --section-padding-small: 50px;
        --spacing-xxl: 3rem;
        --spacing-xl: 2.5rem;
        --spacing-lg: 1.5rem;
    }
    
    .container { max-width: 100%; padding-left: 16px; padding-right: 16px; }
    
    /* Disable fixed backgrounds for smoother scroll on tablet */
    .hero-section,
    .team-showcase-section,
    .cta-banner {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 1.5px;
    }
    
    .hero-title .highlight {
        font-size: 3.5rem;
    }
    
    .hero-section {
        height: 80vh;
        min-height: 550px;
    }
    
    .section-title { font-size: 2.1rem; }
    .section-header { margin-bottom: var(--spacing-xl); }
    
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
    
    .btn-estimate {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .about-img-overlay {
        display: none;
    }
    
    .contact-form-wrapper { padding: 2rem; }
    
    /* About cards stack properly on tablet */
    .about-section .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.25rem;
    }
    
    /* Stats cards - 2 per row on tablet with tighter gaps */
    .stats-inline-section .row { row-gap: 1rem; }
    .stats-inline-section .col-md-3 { flex: 0 0 50%; max-width: 50%; }
    
    .showcase-logo h2 {
        font-size: 2.5rem;
    }
    
    .showcase-logo img {
        height: 80px;
    }
    
    .showcase-content {
        padding: 3rem 2rem;
    }
    
    .showcase-image-wrapper {
        min-height: 400px;
    }
    
    .showcase-img {
        min-height: 400px;
    }
    
    .why-us-features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    /* Process cards - 2 per row on tablet and aligned spacing */
    .process-section .col-lg-3 { flex: 0 0 50%; max-width: 50%; margin-bottom: 1.5rem; }
    .process-timeline { margin-top: var(--spacing-xl); }
    
    .process-timeline::after {
        display: none;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 40px;
        --section-padding-small: 30px;
    }
    
    .container { 
        padding-left: 12px; 
        padding-right: 12px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .row {
        margin-left: -6px;
        margin-right: -6px;
    }
    
    .row > * {
        padding-left: 6px;
        padding-right: 6px;
    }
    
    .hero-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Disable fixed backgrounds on mobile for performance */
    .hero-section,
    .team-showcase-section,
    .cta-banner {
        background-attachment: scroll;
    }
    
    /* Improve tap targets on mobile - at least 44x44px */
    .btn,
    .nav-link,
    a.btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Prevent text size adjustment on orientation change */
    html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Better touch handling on mobile */
    * {
        -webkit-tap-highlight-color: rgba(138, 21, 56, 0.2);
    }
    
    a, button, .btn {
        touch-action: manipulation;
    }
    
    /* Optimize images for mobile */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem !important;
        line-height: 1.25;
        letter-spacing: 0.5px;
        font-weight: 800;
        padding: 0 10px;
    }
    
    .hero-title br {
        display: none;
    }
    
    .hero-title .highlight {
        white-space: normal;
        font-size: 1.7rem;
        display: block;
        font-style: italic;
        margin-top: 0.25rem;
    }
    
    .hero-section { 
        height: auto !important; 
        min-height: auto !important;
        max-height: none !important;
        padding: 80px 0 0 0 !important;
        margin-bottom: 0 !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle-enhanced {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }
    
    .hero-credentials {
        font-size: 0.65rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 12px 24px !important;
        font-size: 0.9rem !important;
    }
    
    /* Optimize navbar for mobile */
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .brand-text-container {
        width: 130px;
    }
    
    .brand-text {
        font-size: 1.5rem;
    }
    
    .brand-subtitle {
        font-size: 0.52rem;
    }
    
    .logo-img {
        height: 36px;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.6rem 0;
    }
    
    .hero-content {
        padding: 25px 0 2rem 0 !important;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(138, 21, 56, 0.92) 0%, rgba(107, 15, 42, 0.90) 100%);
    }
    
    /* Better spacing for mobile sections */
    section {
        padding: var(--section-padding-small) 0;
    }
    
    /* Services grid on mobile: single column for better spacing */
    .services-section .col-md-6,
    .services-section .col-lg-3 { 
        flex: 0 0 100%; 
        max-width: 100%; 
    }
    .services-section .row { 
        row-gap: 1rem;
        column-gap: 0;
    }
    
    .service-card { 
        margin-bottom: 0.75rem; 
        padding: 1.25rem;
    }
    
    .service-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card p {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 0;
    }
    
    .service-icon {
        font-size: 2rem !important;
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-stats {
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-item i {
        font-size: 2rem;
    }
    
    .stat-item h3 {
        font-size: 1.2rem;
    }
    
    .section-title { 
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    .section-header { 
        margin-bottom: var(--spacing-md);
    }
    
    .section-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .image-badge {
        position: static;
        margin-top: 2rem;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .showcase-logo h2 {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .showcase-logo p {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .showcase-content {
        padding: 2rem 1rem;
    }
    
    .safety-item {
        flex-direction: column;
        text-align: center;
    }
    
    .safety-icon {
        margin: 0 auto 1rem;
    }
    
    .safety-item-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .safety-highlights .row {
        gap: 1rem;
    }
    
    .why-us-features {
        grid-template-columns: 1fr;
    }
    
    .cta-badge {
        padding: var(--spacing-lg);
    }
    
    .highlight-cta {
        font-size: 1.2rem;
    }
    
    /* About section mobile fixes */
    .about-section .col-lg-4 {
        margin-bottom: 1rem;
    }
    
    /* Legacy section mobile */
    .legacy-content {
        padding: 2rem;
    }
    
    .lead-paragraph {
        font-size: 1.15rem;
    }
    
    .body-paragraph {
        font-size: 1rem;
    }
    
    .call-to-work {
        padding: 2rem;
    }
    
    .call-to-work h3 {
        font-size: 1.75rem;
    }
    
    /* CTA Banner mobile improvements */
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 100%;
    }
    
    .cta-banner {
        padding: 3rem 0;
    }
    
    .cta-content {
        padding: 0 1rem;
    }
    
    /* Contact section mobile */
    .contact-section .col-md-5,
    .contact-section .col-md-7 { margin-bottom: 2rem; }
    .contact-section .col-md-7:last-child { margin-bottom: 0; }
    
    .contact-form .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* Process section - full width on mobile */
    .process-section .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .process-card { 
        margin-bottom: 2rem;
        padding-top: 3rem;
    }
    
    .process-number {
        top: 10px;
        z-index: 10;
    }
    
    .process-timeline::after {
        display: none;
    }
}

@media (max-width: 575px) {
    :root {
        --section-padding: 35px;
        --section-padding-small: 25px;
        --spacing-xxl: 2rem;
        --spacing-xl: 1.5rem;
        --spacing-lg: 1.25rem;
        --spacing-md: 1rem;
    }
    
    .hero-section { 
        min-height: auto !important; 
        height: auto !important; 
        padding: 75px 0 160px 0 !important;
        margin-bottom: 0 !important;
        position: relative;
    }
    
    .hero-title {
        font-size: 1.35rem;
        letter-spacing: 0.25px;
        margin-bottom: 0.75rem !important;
        line-height: 1.25;
        font-weight: 800;
        padding: 0 8px;
    }
    
    .hero-title br {
        display: none;
    }
    
    .hero-title .highlight {
        white-space: normal;
        display: block;
        font-size: 1.5rem;
        font-style: italic;
        margin-top: 0.3rem;
    }
    
    .hero-subtitle-enhanced {
        font-size: 0.8rem;
        line-height: 1.55;
        margin-bottom: 1.25rem;
        padding: 0 12px;
    }
    
    .hero-credentials {
        font-size: 0.58rem;
        margin-bottom: 1rem;
        line-height: 1.4;
        padding: 0 8px;
    }
    
    /* Make all buttons more touch-friendly on small screens */
    .btn, .btn-primary, .btn-outline-light, .btn-outline-primary {
        min-height: 44px;
        padding: 10px 24px !important;
        font-size: 0.85rem !important;
    }
    
    .hero-buttons {
        gap: 0.75rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .hero-buttons .btn {
        padding: 11px 22px !important;
        font-size: 0.825rem !important;
    }
    
    /* Increase tap targets for navigation */
    .navbar-nav .nav-link {
        padding: 12px 0 !important;
        font-size: 1rem !important;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
        gap: 8px;
    }
    
    .brand-text-container {
        width: 120px;
    }
    
    .brand-text {
        font-size: 1.4rem;
    }
    
    .brand-subtitle {
        font-size: 0.48rem;
    }
    
    .logo-img {
        height: 38px;
    }
    
    .navbar {
        padding: 0.65rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.55rem 0;
    }
    
    .hero-content {
        padding: 25px 0 2rem 0 !important;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(138, 21, 56, 0.93) 0%, rgba(107, 15, 42, 0.91) 100%);
    }
    
    .section-title { 
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    .section-header { 
        margin-bottom: var(--spacing-sm);
        padding: 0 0.5rem;
    }
    
    .section-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .contact-form-wrapper {
        padding: var(--spacing-lg);
    }
    
    .review-card {
        padding: 2rem 1.5rem;
    }
    
    .review-title {
        font-size: 1.75rem;
    }
    
    .review-description {
        font-size: 1rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .cta-title {
        font-size: 1.65rem;
        margin-bottom: 1rem;
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-feature {
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    /* Services single column on very small screens */
    .services-section .col-md-6 { flex: 0 0 100%; max-width: 100%; }
    .services-section .row { row-gap: 0.75rem; }
    
    /* Stats cards mobile */
    .stats-inline-section .col-6 { flex: 0 0 100%; max-width: 100%; }
    .counter-card-inline { padding: 1.25rem 1rem; min-height: 150px; }
    
    .counter-card-inline {
        min-height: 160px;
        padding: 1.5rem 1rem;
    }
    
    /* Hero stats bar - 2x2 grid on very small screens */
    .hero-stats-bar .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 6px;
        margin-bottom: 0.75rem;
    }
    
    .hero-stats-bar .col-6:nth-last-child(-n+2) {
        margin-bottom: 0;
    }

    .hero-stats-bar .row {
        margin: 0;
        gap: 0;
        row-gap: 0.75rem;
    }
    
    .hero-stats-bar {
        padding: 1rem 0 !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(255, 255, 255, 0.97) !important;
        backdrop-filter: blur(10px);
        border-top: 2px solid var(--primary-color);
    }
    
    .stat-item-inline {
        padding: 0.5rem 0.3rem;
        gap: 8px;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .stat-item-inline i {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .stat-text {
        text-align: left;
    }
    
    .stat-text strong {
        font-size: 0.75rem;
        font-weight: 700;
        line-height: 1.2;
    }
    
    .stat-text span {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    /* Process cards */
    .process-section .col-lg-3 {
        margin-bottom: 2rem;
    }
    
    .process-card {
        padding-top: 3.5rem;
    }
    
    .process-number {
        top: 15px;
    }
    
    /* Legacy section very small screens */
    .legacy-content {
        padding: 1.5rem;
    }
    
    .lead-paragraph {
        font-size: 1.05rem;
        text-align: left;
    }
    
    .body-paragraph {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .call-to-work {
        padding: 1.5rem;
    }
    
    .call-to-work h3 {
        font-size: 1.5rem;
    }
    
    .call-to-work p {
        font-size: 1rem;
        text-align: left;
    }
    
    .closing-statement {
        font-size: 1.05rem;
    }
    
    .cta-buttons-legacy {
        flex-direction: column;
    }
    
    .cta-buttons-legacy .btn {
        width: 100%;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-title {
        font-size: 1.5rem;
    }
    
    .review-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .review-description {
        font-size: 0.95rem;
    }
    
    /* Footer improvements for mobile */
    .footer {
        text-align: center;
        padding: 2.5rem 0 2rem 0;
    }
    
    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3,
    .footer .col-md-6 {
        margin-bottom: 2rem;
    }
    
    .footer-contact li {
        justify-content: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-contact li div {
        line-height: 1.5;
    }
}

/* ===================================
   Performance Optimizations
   =================================== */
/* Smooth scrolling with reduced motion support */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Hardware acceleration for smooth animations */
.service-card,
.feature-item,
.process-card,
.contact-item,
.gallery-item {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Remove will-change after animation to save memory */
.service-card:hover,
.feature-item:hover,
.process-card:hover,
.contact-item:hover,
.gallery-item:hover {
    will-change: transform;
}

/* Optimize touch interactions */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .service-card:hover,
    .feature-item:hover,
    .process-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    
    /* Add active states instead */
    .service-card:active,
    .feature-item:active,
    .process-card:active {
        transform: scale(0.98);
    }
    
    /* Make buttons feel more responsive on touch */
    .btn:active,
    .btn-primary:active,
    .btn-outline-light:active {
        transform: scale(0.95);
    }
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-gold {
    color: var(--accent-gold) !important;
}

.bg-gold {
    background-color: var(--accent-gold) !important;
}

.text-silver {
    color: var(--accent-gold) !important;
}

/* ===================================
   Accessibility Improvements
   =================================== */
/* Skip to content link for keyboard users */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10001;
    border-radius: 0 0 8px 0;
}

.skip-to-content:focus {
    top: 0;
}

/* Better focus indicators for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Improve link visibility */
a {
    text-decoration-skip-ink: auto;
}

/* Loading state for images */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.9);
    }
    
    .service-card,
    .feature-item,
    .process-card {
        border: 2px solid var(--dark);
    }
}


/* ===================================
   Mobile-Specific Touch Optimizations
   =================================== */
@media (max-width: 767px) {
    /* Prevent double-tap zoom on buttons */
    .btn,
    button,
    a[role="button"] {
        touch-action: manipulation;
    }
    
    /* Add spacing around clickable elements */
    .hero-buttons .btn {
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    /* Optimize CTA sections for mobile */
    .cta-banner-content .btn-light {
        width: 100%;
        max-width: 350px;
    }
}

/* ===================================
   CTA Banner Section
   =================================== */
.cta-banner-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: var(--section-padding) 0;
    margin: 0;
}

.cta-banner-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.cta-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

.cta-banner-content .btn-light {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
}

.cta-banner-content .btn-light:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

/* Contact Item Inline Layout */
.contact-item-inline {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition-fast);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item-inline:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(138, 21, 56, 0.12);
}

.contact-item-inline .contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-item-inline .contact-details {
    flex: 1;
}

.contact-promo-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 2rem;
    border-radius: 15px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 10px 35px rgba(138, 21, 56, 0.25);
}

.promo-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--dark);
}

.contact-promo-box h4 {
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.contact-promo-box p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-promo-box .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
}

.contact-info-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Additional Responsive Styles for New Sections */
@media (max-width: 991px) {
    .hero-top-cta {
        top: 80px;
        right: 15px;
        max-width: 400px;
    }
    
    .top-cta-content {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .top-cta-content span {
        font-size: 0.8rem;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-top-cta {
        position: relative;
        top: auto;
        right: auto;
        max-width: 100%;
        margin: 20px;
    }
    
    .top-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    /* Hero stats bar handled in earlier mobile breakpoint */
    
    .about-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .cta-text h2 {
        font-size: 1.75rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .cta-banner-content {
        padding: 2rem 1.5rem;
    }
    
    .cta-banner-content .row {
        gap: 1.5rem;
    }
    
    .cta-banner-content .btn-light {
        width: 100%;
        padding: 12px 20px;
    }
    
    .contact-item-inline {
        padding: 1.25rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0 0 1rem 0 !important;
    }
    
    .top-cta-content span strong {
        display: block;
    }
    
    .cta-text h2 {
        font-size: 1.5rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-label {
        font-size: 0.9rem;
    }
}

/* Statistics Inline (within Team Showcase) */
.stats-inline-section {
    position: relative;
    z-index: 2;
}

.counter-card-inline {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    transition: var(--transition-medium);
    border: 2px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.counter-card-inline:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.counter-icon-inline {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}
