/* Base Styles */
:root {
    --primary-color: #e21c35;
    --primary-dark: #4e0c28;
    --primary-gradient: linear-gradient(135deg, #e21c35 0%, #4e0c28 100%);
    --dark-bg: #ffffff;
    --darker-bg: #f5f5f5;
    --light-text: #222222;
    --dark-text: #333333;
    --gray-text: #666666;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
    --section-padding: 90px 0;
    --heading-font: 'Poppins', 'Segoe UI', Arial, sans-serif;
    --body-font: 'Poppins', 'Segoe UI', Arial, sans-serif;
    --transition: all 0.3s cubic-bezier(.77,0,.18,1);
}

body {
    font-family: var(--body-font);
    font-size: 1.04rem;
    background: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.7;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 1.1rem;
    color: var(--dark-text);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h1 { font-size: 2.7rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.18rem; }

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

.btn {
    display: inline-block;
    padding: 13px 34px;
    border-radius: 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 18px rgba(226,28,53,0.25);
}

.btn-outline {
    background: none;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

input, textarea, select {
    font-family: var(--body-font);
    font-size: 1rem;
    background: var(--card-bg);
    color: var(--light-text);
    border: 1.5px solid var(--border-color);
    border-radius: 7px;
    padding: 13px 18px;
    margin-bottom: 1.1rem;
    transition: border 0.2s, box-shadow 0.2s;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(220,39,80,0.15);
}

.card, .testimonial-card {

    border-radius: 14px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover,  .testimonial-card:hover {
    box-shadow: 0 20px 48px rgba(220,39,80,0.10), 0 8px 32px rgba(0,0,0,0.16);
    transform: translateY(-6px) scale(1.02);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--light-text);
    transition: all 0.3s ease;
}

p {
    margin-bottom: 1.5rem;
    color: var(--gray-text);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background-color: transparent;
    /* color: var(--primary-color); */
}

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

section {
    padding: 100px 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    min-height: 72px;
    padding: 0 32px;
}

.nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    position: static;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    transition: none;
    z-index: auto;
    padding: 0;
    backdrop-filter: none;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-text);
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.nav-links a.btn {
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 8px;
    padding: 0.4rem 1.1rem;
    font-weight: 600;
    margin-left: 1.2rem;
    font-size: 1rem;
    box-shadow: none;
    border: none;
    transition: background 0.2s, color 0.2s;
}

.nav-links a.btn:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 2px 12px rgba(226,28,53,0.20);
}

.nav-links a {
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-text);
    padding: 0.3rem 0.85rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

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

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

.navbar {
    min-height: 48px;
    height: 48px;
}

.navbar .container.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    padding: 0 18px;
    position: relative;
}

.logo img {
    height: 28px;
    width: auto;
}

.nav-links a, .nav-links li {
    line-height: 1.1;
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width: 992px) {
    .navbar {
        min-height: 44px;
        height: 44px;
    }
    .navbar .container.nav-flex {
        height: 44px;
        padding: 0 10px;
    }
}

.nav-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.nav-center {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.nav-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    display: flex;
}

.nav-cta {
    margin-left: 1.8rem;
}

.hamburger {
    display: none;
}
@media (max-width: 992px) {
    .hamburger {
        display: flex !important;
    }
}

/* Removed orphaned properties that caused syntax errors */

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 2px;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2001;
    padding: 80px 25px 30px;
    transition: right 0.4s ease-in-out;
    overflow-y: auto;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 992px) {
    .nav-center, .nav-right {
        display: none;
    }
    .hamburger {
        display: flex !important;
    }
    .navbar .container.nav-flex {
        padding: 0 15px;
    }
    .mobile-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 80vw;
        max-width: 340px;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        box-shadow: -4px 0 32px rgba(0,0,0,0.15);
        z-index: 2100;
        padding: 2.2rem 1.3rem 2.2rem 1.3rem;
        transition: transform 0.4s cubic-bezier(.77,0,.18,1);
        transform: translateX(100%);
    }
    .mobile-menu.active {
        transform: translateX(0);
    }
    .mobile-links {
        display: flex;
        flex-direction: column;
        /* gap: 2.2rem; */
        list-style: none;
        padding: 0;
        margin: 2.5rem 0 0 0;
        width: 100%;
    }
    .mobile-links li {
        width: 100%;
    }
    .mobile-links a.btn {
        width: 100%;
        text-align: center;
        margin: 1.2rem 0 0 0;
    }
    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.18);
        z-index: 2000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }
    .nav-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
    .mobile-menu .nav-close {
        display: block !important;
        background: none;
        border: none;
        color: #fff;
        font-size: 2.2rem;
        position: absolute;
        top: 1.2rem;
        right: 1.4rem;
        cursor: pointer;
        opacity: 0.85;
        z-index: 2200;
    }
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light-text);
}

.hamburger, .nav-close {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2100;
}

.hamburger {
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 2100;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 18px rgba(0,0,0,0.08);
    z-index: 1999;
    height: 70px;
    display: flex;
    align-items: center;
}

.navbar .container.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-center {
    display: flex;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    .nav-center, .nav-right {
        display: none;
    }
    
    .mobile-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-links li {
        margin-bottom: 20px;
    }
    
    .mobile-links a {
        color: var(--dark-text);
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        display: block;
        padding: 10px 0;
        transition: color 0.3s ease;
    }
    
    .mobile-links a:hover {
        color: var(--primary-color);
    }
    
    .mobile-links .btn {
        margin-top: 20px;
        text-align: center;
        padding: 12px 24px;
        border-radius: 30px;
        background: var(--primary-gradient);
        color: #fff;
        font-weight: 600;
    }
    
    .mobile-links .btn:hover {
        background: var(--primary-color);
        color: #fff;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .nav-close {
        display: block;
        position: absolute;
        top: 1.2rem;
        right: 1.4rem;
        color: var(--dark-text);
        font-size: 2.2rem;
        opacity: 0.85;
    }
    
    .nav-links a.btn {
        border-radius: 20px;
        padding: 0.6rem 1.5rem;
        margin-left: 0;
        width: 100%;
    }
}

.nav-links a.btn:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 992px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0;
        left: -100vw;
        width: 80vw;
        max-width: 340px;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        box-shadow: 4px 0 32px rgba(0,0,0,0.12);
        transition: left 0.4s cubic-bezier(.77,0,.18,1);
        z-index: 2100;
        gap: 2.6rem;
        padding: 2.5rem 1.5rem 2.5rem 1.5rem;
        backdrop-filter: blur(8px);
    }
    .nav-links.active {
        left: 0;
    }
    .hamburger {
        display: block;
    }
    .nav-close {
        display: block;
    }
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light-text);
    transition: transform 0.3s ease;
}

.logo img {
    height: 30px;
    width: auto;
    display: block;
}

.logo:hover {
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    position: static;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    transition: none;
    z-index: auto;
    padding: 0;
    backdrop-filter: none;
}

@media (max-width: 992px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0;
        left: -100vw;
        width: 80vw;
        max-width: 340px;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        box-shadow: 4px 0 32px rgba(0,0,0,0.12);
        transition: left 0.4s cubic-bezier(.77,0,.18,1);
        z-index: 2100;
        gap: 2.6rem;
        padding: 2.5rem 1.5rem 2.5rem 1.5rem;
        backdrop-filter: blur(8px);
    }
    .nav-links.active {
        left: 0;
    }
}

.nav-links.active {
    left: 0;
}

.nav-links a {
    font-size: 1.22rem;
    padding: 0.7rem 0;
    font-weight: 600;
    color: var(--dark-text);
    letter-spacing: 0.02em;
    transition: color 0.2s;
    text-align: center;
    width: 100%;
}

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

.nav-close {
    display: none !important;
}
@media (max-width: 992px) {
    .nav-close {
        display: block !important;
    }
    .hamburger {
        display: block !important;
    }
}
.hamburger {
    display: none;
}
@media (max-width: 992px) {
    .hamburger {
        display: flex !important;
    }
}


/* Removed orphaned properties that caused syntax errors */


.nav-close:hover {
    color: var(--primary-color);
    opacity: 1;
}

.btn.btn-outline {
    width: 100%;
    max-width: 300px;
    margin: 0 0 2rem 0;
    font-size: 1.1rem;
    /* padding: 0.95rem 0; */
    border-width: 2px;
    border-radius: 28px;
    text-align: center;
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: background 0.2s, color 0.2s;
}

.btn.btn-outline:hover {
    background: var(--primary-gradient);
    color: #fff;

}


.nav-links a {
    font-weight: 500;
    position: relative;
}

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

.nav-links a:not(.btn):hover:after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(250, 250, 250, 0.95)), 
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    text-align: center;
    padding: 120px 0 100px;
}

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

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.stats-section {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 245, 0.95));
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(226, 28, 53, 0.08), transparent 55%),
        radial-gradient(circle at 85% 10%, rgba(226, 28, 53, 0.05), transparent 60%),
        radial-gradient(circle at 40% 85%, rgba(78, 12, 40, 0.06), transparent 65%);
    opacity: 0.9;
    pointer-events: none;
}

.stats-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2.5rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.6rem;
    padding: 2.5rem 2.1rem 2.2rem;
    min-height: 240px;
    border-radius: 22px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.95)),
        linear-gradient(120deg, rgba(226, 28, 53, 0.06), transparent 60%);
    border: 2px solid rgba(226, 28, 53, 0.12);
    box-shadow: 0 12px 35px rgba(226, 28, 53, 0.08), inset 0 0 0 1px rgba(226, 28, 53, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.stat-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(140deg, rgba(226, 28, 53, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(226, 28, 53, 0.18);
    border-color: rgba(226, 28, 53, 0.25);
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-icon {
    position: relative;
    flex: 0 0 76px;
    width: 76px;
    height: 76px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 2.3rem;
    box-shadow: 0 12px 30px rgba(226, 28, 53, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.stat-icon::after {
    content: '';
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
    opacity: 0.65;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}

.stat-metric {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.stat-number {
    font-size: 3.1rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -0.01em;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(226, 28, 53, 0.7);
    line-height: 1;
    margin-left: 0.15rem;
}

.stat-label {
    font-size: 0.92rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dark-text);
    margin-top: 0.25rem;
    font-weight: 600;
    opacity: 0.75;
}

/* Services Section */
.services {
    background-color: var(--darker-bg);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.service-card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(226, 28, 53, 0.15);
}

.service-card i {
    color: var(--primary-color);

}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    background-color: var(--dark-bg);
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

/* Contact Section */
.contact {
    background-color: var(--darker-bg);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--card-bg);
    color: var(--light-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(226, 28, 53, 0.15);
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

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

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4:after,
.footer-contact h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-gradient);
}

.footer-links a {
    margin-bottom: 10px;
    color: var(--gray-text);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--darker-bg);
    color: var(--dark-text);
    transition: all 0.3s ease;
    /* border: 1px solid var(--border-color); */
}

.social-links a:hover {
    background: var(--primary-gradient);
    color: #fff;
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    p,
    li {
        font-size: 0.95rem;
    }

    .btn {
        font-size: 0.85rem;
        padding: 10px 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
        gap: 1.5rem;
        justify-items: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .stat-item {
        gap: 1.5rem;
        padding: 2.4rem 1.5rem 2.1rem;
        min-height: 230px;
        width: 100%;
        max-width: 280px;
    }

    .stat-icon {
        width: 72px;
        height: 72px;
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 2.95rem;
    }

    .stat-suffix {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.86rem;
        letter-spacing: 0.14em;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--darker-bg);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: all 0.5s ease;
    }

    .nav-links.active {
        left: 0;
        box-shadow: 2px 0 16px rgba(0,0,0,0.15);
    }

    .nav-close {
        display: none;
        position: absolute;
        top: 1.5rem;
        right: 2rem;
        background: none;
        border: none;
        color: var(--light-text);
        font-size: 2.2rem;
        z-index: 1101;
        cursor: pointer;
        transition: color 0.2s;
    }

    .nav-links.active .nav-close {
        display: block;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.18);
        z-index: 2000;
        transition: opacity 0.3s;
        opacity: 0;
        pointer-events: none;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-close {
        display: block;
    }

    .hamburger {
        display: block;
    }

    .logo {
        font-size: 1.6rem;
    }

    .hero {
        min-height: auto;
        align-items: flex-start;
        padding: 120px 0 90px;
    }

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

    .services h2,
    .about h2,
    .contact h2 {
        font-size: 2.2rem;
    }

    .service-card h3 {
        font-size: 1.35rem;
    }

    .service-card i {
        font-size: 2.5rem;
    }

    .footer-logo h3 {
        font-size: 1.6rem;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.2rem;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    p,
    li {
        font-size: 0.9rem;
    }

    section {
        padding: 80px 0;
    }

    .hero {
        padding: 120px 0 80px;
    }

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

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

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .btn {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .services h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .service-card i {
        font-size: 2.3rem;
    }

    .footer-logo h3 {
        font-size: 1.4rem;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.05rem;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 0.9rem;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 380px;
        margin: 0 auto;
    }

    .stat-item {
        gap: 1.45rem;
        padding: 2.3rem 1.8rem 2rem;
        min-height: 225px;
    }

    .stat-icon {
        width: 72px;
        height: 72px;
        font-size: 2.15rem;
        border-radius: 22px;
        margin-top: 0.35rem;
    }

    .stat-content {
        align-items: center;
        gap: 0.55rem;
    }

    .stat-metric {
        justify-content: center;
        gap: 0.25rem;
    }

    .stat-number {
        font-size: 2.6rem;
    }

    .stat-suffix {
        font-size: 1.08rem;
    }

    .stat-label {
        letter-spacing: 0.1em;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 90px 0 70px;
    }

    .stats-grid {
        gap: 1.25rem;
        max-width: 340px;
    }

    .stat-item {
        padding: 2rem 1.5rem 1.8rem;
        gap: 1.25rem;
        min-height: 210px;
    }

    .stat-icon {
        width: 68px;
        height: 68px;
        font-size: 2.05rem;
        border-radius: 20px;
        margin-top: 1.4rem;
    }

    .stat-content {
        gap: 0.48rem;
    }

    .stat-metric {
        gap: 0.2rem;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .stat-suffix {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.77rem;
        letter-spacing: 0.08em;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--card-bg);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.services-main {
/* background-color: var(--card-bg); */
background-color: #f5f5f5;
padding: 20px 0;
}

/* Legal / Privacy Policy */
.legal-hero {
    background: linear-gradient(130deg, rgba(226, 28, 53, 0.08) 0%, rgba(255, 255, 255, 0.95) 55%, rgba(226, 28, 53, 0.12) 100%);
}

.legal-updated {
    margin-top: 0.85rem;
    font-size: 0.9rem;
    color: rgba(51, 51, 51, 0.65);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-section {
    padding: 100px 0;
    background: var(--darker-bg);
}

.legal-wrapper {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.legal-block {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 36px;
    box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-block h3 {
    font-size: 1.35rem;
    margin: 0 0 0.85rem;
    color: var(--dark-text);
}

.legal-block p {
    margin: 0 0 0.85rem;
    color: rgba(51, 51, 51, 0.75);
    line-height: 1.7;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.legal-list li {
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.98rem;
    color: rgba(51, 51, 51, 0.78);
    line-height: 1.7;
}

.legal-list li::before {
    content: '';
    position: absolute;
    top: 0.65rem;
    left: 0.45rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(226, 28, 53, 0.15);
}

.legal-list strong {
    color: var(--dark-text);
    font-weight: 600;
}

.legal-contact {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    gap: 0.45rem;
    font-size: 0.98rem;
    color: rgba(51, 51, 51, 0.78);
}

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

.legal-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 70px 0;
    }

    .legal-block {
        padding: 26px 24px;
    }

    .legal-block h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .legal-updated {
        letter-spacing: 0.05em;
    }
}
