:root {
    --primary: #FFED00;
    --secondary: #1a1a1a;
    --accent: #FFED00;
    --text: #333;
    --light: #fff;
    --dark: #000;
    --gray: #666;
    --light-gray: #f5f5f5;
    --white: #fff;
    --bg-light: #ffffff;
    --bg-off-white: #fafafa;
    --bg-light-gray: #f5f6f8;
}

/* Forced Colors Mode support */
@media (forced-colors: active) {
    :root {
        --primary: CanvasText;
        --secondary: Canvas;
        --accent: Highlight;
        --text: CanvasText;
        --light: Canvas;
        --dark: CanvasText;
        --gray: GrayText;
        --light-gray: Canvas;
        --white: Canvas;
        --bg-light: Canvas;
        --bg-off-white: Canvas;
        --bg-light-gray: Canvas;
    }

    /* Ensure text remains visible in high contrast mode */
    .service-card,
    .review-card,
    .client-logo,
    .stat-item,
    .info-item,
    .award-card {
        border: 1px solid CanvasText;
    }

    /* Ensure interactive elements are visible */
    button,
    a,
    input,
    select,
    textarea {
        border: 1px solid CanvasText;
    }

    /* Ensure focus indicators are visible */
    :focus-visible {
        outline: 2px solid Highlight;
        outline-offset: 2px;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    height: 80px;
    display: flex;
    align-items: center;
    overflow: visible;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease,
                backdrop-filter 0.3s ease,
                -webkit-backdrop-filter 0.3s ease,
                border-bottom-color 0.3s ease;
}

.navbar.over-content .nav-links a {
    color: var(--dark);
}

.navbar.over-content .nav-links .phone-link {
    color: var(--dark);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.logo {
    position: relative;
    z-index: 1001;
    margin: 0;
    padding: 0;
    height: auto;
    display: flex;
    align-items: flex-start;
    transform: translateY(80px);
    cursor: pointer;
}

.logo img {
    height: 200px;
    width: auto;
    margin: 0;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.logo img:hover {
    transform: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin: 0;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 1002;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 80px;
}

/* Remove color change on scroll */
.navbar.scrolled .nav-links a {
    color: var(--white);
}

.navbar.scrolled .nav-links .phone-link {
    background-color: #FFED00;
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFED00;
    transition: width 0.3s ease;
    z-index: 1002;
}

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

.nav-links .phone-link {
    background-color: #FFED00;
    color: #000;
    padding: 0 12px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    height: 36px;
    line-height: 36px;
    margin: auto 0;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: visible;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 8rem;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    z-index: 2;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin-top: 80px; /* Account for navbar height */
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 0;
    width: 100%;
    max-width: 1200px;
}

.hero-main {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 0;
}

.hero-main h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
}

.hero-stats .stat-item {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 237, 0, 0.3);
    background: rgba(0, 0, 0, 0.5) !important;
}

.hero-stats .stat-item .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFED00;
    margin-bottom: 0.5rem;
    line-height: 1;
    display: block;
}

.hero-stats .stat-item .stat-label {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-stats .stat-item {
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.5) !important;
    }

    .hero-stats .stat-item:hover {
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.5) !important;
    }

    .hero-stats .stat-item .stat-number {
        font-size: 2.8rem;
    }

    .hero-stats .stat-item .stat-label {
        font-size: 0.9rem;
    }
}

/* Card Base Styles */
.about-stats .stat,
.service-card,
.review-card,
.client-logo,
.info-item {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    z-index: 2;
}

.hero-services .service-card {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    cursor: pointer;
    text-align: center;
    transform: translateZ(0);
    will-change: transform;
    isolation: isolate;
    z-index: 3;
}

.hero-services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5) !important;
}

/* Remove any !important flags from backgrounds */
.service-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-services .service-card {
        background: rgba(0, 0, 0, 0.4) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }
    
    .hero-services .service-card:hover {
        background: rgba(0, 0, 0, 0.5) !important;
    }
}

/* Gradient Line Effect */
.hero-stats .stat-item::before,
.about-stats .stat::before,
.service-card::before,
.review-card::before,
.client-logo::before,
.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: #FFED00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* Hover States */
.hero-stats .stat-item:hover,
.about-stats .stat:hover,
.service-card:hover,
.review-card:hover,
.client-logo:hover,
.info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 237, 0, 0.3);
    background: rgba(0, 0, 0, 0.85) !important;
}

.hero-stats .stat-item:hover::before,
.about-stats .stat:hover::before,
.service-card:hover::before,
.review-card:hover::before,
.client-logo:hover::before,
.info-item:hover::before {
    transform: scaleX(1);
}

/* Content Styles */
.hero-stats .stat-item *,
.about-stats .stat *,
.service-card *,
.review-card *,
.client-logo *,
.info-item * {
    position: relative;
    z-index: 2;
}

/* Text Styles */
.hero-stats .stat-item .stat-number,
.about-stats .stat h3,
.service-card h3,
.review-card h4 {
    color: #FFED00;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: color 0.3s ease;
}

.hero-stats .stat-item .stat-label,
.about-stats .stat p,
.service-card p,
.review-card p,
.info-item p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: color 0.3s ease;
}

/* Icon Styles */
.service-card i {
    color: #FFED00 !important;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: block;
}

.service-card:hover i {
    transform: scale(1.1);
    color: #FFED00 !important;
}

/* Services Section Specific Icon Styles */
.services .service-card i {
    color: #FFED00 !important;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: block;
}

.services .service-card:hover i {
    transform: scale(1.1);
    color: #FFED00 !important;
}

/* Hero Services Specific Icon Styles */
.hero-services .service-card i {
    color: #FFED00 !important;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: block;
}

.hero-services .service-card:hover i {
    transform: scale(1.1);
    color: #FFED00 !important;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-stats .stat-item,
    .about-stats .stat,
    .service-card,
    .review-card,
    .client-logo,
    .info-item {
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.7) !important;
    }

    .hero-stats .stat-item:hover,
    .about-stats .stat:hover,
    .service-card:hover,
    .review-card:hover,
    .client-logo:hover,
    .info-item:hover {
        transform: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        background: rgba(0, 0, 0, 0.75) !important;
    }

    .service-card:hover i,
    .info-item:hover i {
        transform: none;
    }
}

.hero-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 60px 0;
    position: relative;
    z-index: 3;
    transform: translateZ(0);
    will-change: transform;
    isolation: isolate;
}

.hero-services .service-card {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    cursor: pointer;
    text-align: center;
    transform: translateZ(0);
    will-change: transform;
    isolation: isolate;
    z-index: 3;
}

.hero-services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 1;
}

.hero-services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5) !important;
}

.hero-services .service-card:hover::before {
    transform: scaleX(1);
}

.hero-services .service-card i {
    font-size: 2.5rem;
    color: #FFED00 !important;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: block;
}

.hero-services .service-card:hover i {
    transform: scale(1.1);
    color: #FFED00 !important;
}

.hero-services .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.2;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-services .service-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
    max-width: 90%;
    margin: 0 auto;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-services .service-card {
        padding: 1.5rem;
    }

    .hero-services .service-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .hero-services .service-card:hover i {
        transform: none;
    }

    .hero-services .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .hero-services .service-card p {
        font-size: 0.9rem;
        margin: 0;
        opacity: 0.9;
    }

    .hero-services .service-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.cta-primary {
    display: inline-block;
    background: #FFED00;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #FFED00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 237, 0, 0.3);
}

.cta-secondary {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.cta-secondary i {
    font-size: 1.5rem;
    color: #FFED00;
}

.cta-text {
    display: flex;
    flex-direction: column;
}

.cta-text span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 4px;
    font-weight: 500;
}

.cta-text a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-text a:hover {
    color: #FFED00;
}

@media (max-width: 1200px) {
    .hero-main h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero .container {
        padding: 0 20px;
    }

    .hero-content {
        margin-top: -60px;
    }

    .hero-services {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 40px auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 60px;
    }

    .logo {
        transform: translateY(10px);
    }
    
    .logo img {
        height: 80px;
        width: auto;
    }

    .hero {
        min-height: auto;
        height: auto;
        padding-top: 120px;
        padding-bottom: 3rem;
        padding-left: 1rem;
        padding-right: 1rem;
        display: block;
    }

    .hero-main {
        padding-top: 80px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
        margin-top: 0;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

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

    .hero-stats .stat-item {
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.75) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .hero-stats .stat-item:hover,
    .about-stats .stat:hover,
    .service-card:hover,
    .review-card:hover,
    .client-logo:hover,
    .info-item:hover {
        transform: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        background: rgba(0, 0, 0, 0.75) !important;
    }

    .hero-stats .stat-item:hover .stat-number {
        transform: none;
    }

    .hero-stats .stat-item:hover .stat-label {
        color: var(--white);
    }

    .hero-stats .stat-item .stat-number {
        font-size: 2.8rem;
    }

    .hero-stats .stat-item .stat-label {
        font-size: 0.9rem;
    }

    .hero-services {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }

    .hero-services .service-card {
        padding: 1.5rem;
        min-height: auto;
    }

    .hero-services .service-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .hero-services .service-card:hover i {
        transform: none;
    }

    .hero-services .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .hero-services .service-card p {
        font-size: 0.9rem;
        margin: 0;
        opacity: 0.9;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        width: 100%;
    }

    .cta-primary {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .mobile-menu {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 60px; /* Match the new navbar height */
        left: 0;
        width: 100%;
        background: #000000;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        margin: 0;
        display: none;
        z-index: 999;
        height: auto;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

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

    .nav-links a {
        height: auto;
        padding: 0.5rem 0;
        line-height: normal;
        color: var(--white);
    }

    .nav-links a::after {
        bottom: -5px;
    }

    .nav-links .phone-link {
        margin: 1rem 0;
        background-color: var(--accent);
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

    .hero-stats {
        gap: 2rem;
    }
}

/* About Section */
.about {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about h2 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    text-align: left;
    padding-right: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-stats .stat {
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.about-stats .stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #FFED00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 1;
}

.about-stats .stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #FFED00;
}

.about-stats .stat:hover::before {
    transform: scaleX(1);
}

.about-stats .stat h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFED00 !important;
    margin-bottom: 0.5rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.about-stats .stat:hover h3 {
    transform: scale(1.1);
}

.about-stats .stat p {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.about-stats .stat:hover p {
    color: #FFED00;
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .about-stats {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }

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

    .about-content {
        gap: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }

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

    .about-stats .stat {
        padding: 1.5rem;
    }

    .about-stats .stat:hover {
        transform: none;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

    .about-stats .stat:hover h3 {
        transform: none;
    }

    .about-stats .stat:hover p {
        color: var(--text);
    }
}

/* Services Section */
.services {
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services .service-card {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    cursor: pointer;
    text-align: center;
}

.services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 1;
}

.services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.35) !important;
}

.services .service-card:hover::before {
    transform: scaleX(1);
}

.services .service-card i {
    font-size: 2.5rem;
    color: #FFED00 !important;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: block;
}

.services .service-card:hover i {
    transform: scale(1.1);
    color: #FFED00 !important;
}

.services .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.2;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.services .service-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
    max-width: 90%;
    margin: 0 auto;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .services .service-card {
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.25) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }

    .services .service-card:hover {
        transform: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        background: rgba(0, 0, 0, 0.35) !important;
    }

    .services .service-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .services .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .services .service-card p {
        font-size: 0.9rem;
    }
}

/* Service CTA Card - Full width */
.service-cta-card {
    grid-column: 1 / -1;
    height: auto !important;
    min-height: 180px !important;
    cursor: default !important;
    background: rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.service-cta-card:hover {
    transform: none !important;
    background: rgba(0, 0, 0, 0.35) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.service-cta-card::before {
    display: none !important;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: 100%;
    width: 100%;
}

.cta-content i {
    font-size: 3rem !important;
    color: #FFED00 !important;
    margin: 0 !important;
    flex-shrink: 0;
}

.cta-text {
    flex: 1;
    text-align: left;
}

.cta-text h3 {
    font-size: 1.8rem !important;
    margin-bottom: 0.5rem !important;
    color: var(--white) !important;
    font-weight: 700 !important;
}

.cta-text p {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 !important;
    max-width: none !important;
    line-height: 1.5 !important;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #FFED00;
    color: var(--dark) !important;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #e6d400;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 237, 0, 0.3);
    color: var(--dark) !important;
}

.cta-button i {
    font-size: 1rem !important;
    color: #000 !important;
    margin: 0 !important;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
    color: #000 !important;
}

@media (max-width: 1024px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cta-text {
        text-align: center;
    }
    
    .cta-text h3 {
        font-size: 1.5rem !important;
    }
    
    .cta-text p {
        font-size: 1rem !important;
    }
    
    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .service-cta-card {
        min-height: 200px !important;
        padding: 1.5rem !important;
    }
    
    .cta-content {
        gap: 1rem;
    }
    
    .cta-content i {
        font-size: 2.5rem !important;
    }
    
    .cta-text h3 {
        font-size: 1.3rem !important;
    }
    
    .cta-text p {
        font-size: 0.95rem !important;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
}

/* Contact Section */
.contact {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    color: var(--white);
    width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form select::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #FFED00;
    box-shadow: 0 0 0 3px rgba(255, 237, 0, 0.2);
    background: rgba(0, 0, 0, 0.5) !important;
}

.contact-form textarea {
    height: 180px;
    resize: vertical;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form select {
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    color: rgba(255, 255, 255, 0.7);
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
    cursor: pointer;
}

.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1);
}

/* Modern select styling */
.contact-form select,
.contact-form select:focus {
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(0, 0, 0, 0.4);
}

@media (forced-colors: active) {
    .contact-form select {
        background-color: Canvas;
        color: CanvasText;
        border: 1px solid CanvasText;
    }
}

/* Ensure text remains visible during selection */
.contact-form select {
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(0, 0, 0, 0.4);
}

.contact-form select option {
    background-color: rgba(0, 0, 0, 0.9);
    color: rgba(255, 255, 255, 0.7);
    padding: 12px;
}

@media (forced-colors: active) {
    .contact-form select option {
        background-color: Canvas;
        color: CanvasText;
    }
}

.form-message {
    padding: 0.75rem;
    margin: 0;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    animation: slideIn 0.3s ease;
    order: 6; /* Place it just before the submit button */
}

.form-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-message.error {
    background-color: #fbe9e7;
    color: #c62828;
    border: 1px solid #ffab91;
}

.submit-button {
    padding: 1.2rem;
    background: #FFED00;
    color: var(--dark);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    order: 7;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    z-index: 5;
}

.info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 237, 0, 0.3);
    background: rgba(0, 0, 0, 0.5) !important;
}

.info-item i {
    font-size: 1.8rem;
    color: #FFED00;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.info-item:hover i {
    color: #FFED00;
    transform: scale(1.1);
}

.info-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.info-item h3,
.info-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.info-item:hover h3,
.info-item:hover h4 {
    color: #FFED00;
}

.info-item a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-item:hover a {
    color: var(--white);
}

.info-item a:hover {
    color: #FFED00;
}

/* Phone number specific styling */
.info-item .phone-number {
    color: #FFED00;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.info-item:hover .phone-number {
    color: #FFED00;
    transform: scale(1.05);
}

.info-item .phone-number:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .info-item {
        padding: 1.2rem;
        background: rgba(0, 0, 0, 0.4) !important;
    }

    .info-item:hover {
        transform: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        background: rgba(0, 0, 0, 0.4) !important;
    }

    .info-item:hover i {
        transform: none;
    }

    .info-item i {
        font-size: 1.5rem;
    }

    .info-item .phone-number:hover,
    .info-item:hover .phone-number {
        transform: none;
    }
}

.info-item:hover .service-content h3 {
    color: var(--accent);
}

.info-item:hover .service-content p {
    color: rgba(255, 255, 255, 1);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    cursor: pointer;
}

.footer-logo img {
    height: 100px;
    width: auto;
    cursor: pointer;
}

.footer-logo img:hover {
    transform: none;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FFED00;
}

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

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #FFED00;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-logo {
        align-items: center;
    }

    .footer-logo img {
        height: 200px;
        margin: 0 auto;
    }

    .footer-links a {
        padding-left: 0;
    }

    .footer-links a::before {
        display: none;
    }

    .social-links {
        justify-content: center;
    }
}

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

.hero {
    padding-top: 0;
}

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

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

.social-links {
    justify-content: center;
}
    
.info-item:hover {
    transform: none;
}

.nav-links {
    margin-top: 20px;
}

.hero-buttons {
    flex-direction: column;
    align-items: center;
}

.nav-links .phone-link {
    display: none;
}
    
.mobile-menu .phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: #FFED00;
    color: #000;
    font-weight: 600;
    margin-top: 10px;
}

/* Reviews Section */
.reviews {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    padding: 8rem 0;
}

.reviews-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 2rem 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 3rem;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background: #FFED00;
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
    left: -20px;
}

.carousel-button.next {
    right: -20px;
}

.carousel-button i {
    font-size: 1.2rem;
    color: var(--dark);
    transition: color 0.3s ease;
}

.carousel-button:hover i {
    color: var(--dark);
}

.reviews-grid::-webkit-scrollbar {
    display: none;
}

.review-card {
    padding: 2rem;
    flex: 0 0 auto;
    width: calc(33.333% - 1.33rem);
    min-width: 300px;
    scroll-snap-align: start;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #FFED00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 1;
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-initial {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FFED00;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.reviewer-info h4 {
    margin: 0;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stars {
    color: #FFED00;
    font-size: 1.2rem;
}

.review-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.review-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FFED00;
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-auto-columns: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 4rem 0;
    }
    
    .reviews h2 {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-auto-columns: 100%;
    }
    
    .review-card {
        width: calc(100% - 2rem);
        min-width: 280px;
        transform: none;
    }
    
    .review-card:hover {
        transform: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .carousel-button {
        display: none;
    }

    .reviews-carousel {
        padding: 0 2rem;
    }
}

/* Modern scrollbar styling */
.reviews-grid,
.clients-grid {
    scrollbar-width: none; /* Firefox */
}

.reviews-grid::-webkit-scrollbar,
.clients-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

@media (forced-colors: active) {
    .reviews-grid,
    .clients-grid {
        scrollbar-width: auto;
    }

    .reviews-grid::-webkit-scrollbar,
    .clients-grid::-webkit-scrollbar {
        display: block;
    }
}

/* Clients Section */
.clients {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    padding: 8rem 0;
}

.clients-carousel,
.reviews-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.clients-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 2rem 3rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.clients-grid::-webkit-scrollbar {
    display: none;
}

.client-logo {
    padding: 2rem;
    flex: 0 0 auto;
    width: calc(25% - 1.5rem);
    min-width: 200px;
    scroll-snap-align: start;
    background: var(--white) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #FFED00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 1;
}

.client-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #FFED00;
    background: var(--white) !important;
}

.client-logo:hover::before {
    transform: scaleX(1);
}

.client-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

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

@media (max-width: 1024px) {
    .client-logo {
        width: calc(33.333% - 1.33rem);
    }
}

@media (max-width: 768px) {
    .client-logo {
        width: calc(50% - 1rem);
        min-width: 150px;
        padding: 1.5rem;
    }
    
    .client-logo:hover {
        transform: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }
    
    .client-logo:hover img {
        transform: none;
    }
    
    .client-logo img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-auto-columns: calc(50% - 10px);
    }
}

/* Hero Info Section */
.hero-info {
    position: relative;
    padding: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.hero-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    pointer-events: none;
}

.hero-info .container {
    position: relative;
    z-index: 2;
    padding: 100px 40px;
}

.hero-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-info-main {
    color: var(--white);
}

.hero-info-main h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-info-subtitle {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 40px;
}

.hero-info-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    padding: 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.stat-item .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFED00 !important;
    margin-bottom: 0.5rem;
    line-height: 1;
    display: block;
}

.stat-item .stat-label {
    font-size: 1rem;
    color: var(--white);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-info-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-item {
    padding: 1.5rem;
    text-align: left;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 1;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--accent);
    background: rgba(0, 0, 0, 0.5) !important;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-content h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

.service-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.service-item:hover .service-content h3 {
    color: var(--accent);
}

.service-item:hover .service-content p {
    color: rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
    .service-item {
        padding: 1.2rem;
    }

    .service-item:hover {
        transform: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .service-item:hover i {
        transform: none;
    }

    .service-item:hover .service-content h3 {
        color: var(--white);
    }

    .service-item:hover .service-content p {
        color: rgba(255, 255, 255, 0.9);
    }
}

.hero-info-cta {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.cta-primary {
    display: inline-block;
    background: #FFED00;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #FFED00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 237, 0, 0.3);
}

.cta-secondary {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.cta-secondary i {
    font-size: 1.5rem;
    color: #FFED00;
}

.cta-text {
    display: flex;
    flex-direction: column;
}

.cta-text span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 4px;
    font-weight: 500;
}

.cta-text a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-text a:hover {
    color: #FFED00;
}

@media (max-width: 1200px) {
    .hero-info-main h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .hero-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-info-main {
        text-align: center;
    }

    .hero-info-stats {
        max-width: 600px;
        margin: 40px auto;
    }

    .hero-info-services {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-info {
        margin-top: -80px;
    }

    .hero-info .container {
        padding: 80px 20px;
    }

    .hero-info-main h2 {
        font-size: 2.4rem;
    }

    .hero-info-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-info-services {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

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

/* Video Section */
.video-section {
    padding: 8rem 0;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: relative;
}

.video-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 3px;
    background-color: var(--accent) !important;
    z-index: 1;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .video-section {
        padding: 4rem 0;
    }
    
    .video-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Standard Section Spacing */
.about,
.video-section,
.services,
.reviews,
.clients,
.contact {
    padding: 8rem 0;
    position: relative;
}

/* Standard Section Title Styling */
.about h2,
.video-section h2,
.services h2,
.reviews h2,
.clients h2,
.contact h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about h2::after,
.video-section h2::after,
.services h2::after,
.reviews h2::after,
.clients h2::after,
.contact h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 3px;
    background-color: var(--accent) !important;
    z-index: 1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .about,
    .video-section,
    .services,
    .reviews,
    .clients,
    .contact {
        padding: 4rem 0;
    }

    .about h2,
    .video-section h2,
    .services h2,
    .reviews h2,
    .clients h2,
    .contact h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 1rem;
        font-size: 1rem;
    }

    .contact-form textarea {
        height: 150px;
    }

    .submit-button {
        padding: 1rem;
        font-size: 1rem;
    }

    .contact-info {
        gap: 1rem;
    }

    .info-item {
        padding: 1.2rem;
        gap: 1rem;
        flex-direction: row;
        align-items: center;
        background-color: var(--bg-light);
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }

    .info-item i {
        font-size: 1.5rem;
        min-width: 1.5rem;
    }

    .info-item div {
        flex: 1;
    }

    .info-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .info-item p {
        font-size: 0.9rem;
        margin: 0;
        line-height: 1.4;
    }

    .info-item:hover {
        transform: none;
        background-color: var(--bg-light);
    }

    .info-item:hover i {
        color: var(--accent);
    }
}

/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Montserrat', sans-serif;
}

.chatbot-container .chat-button {
    background-color: #FFED00;
    color: var(--dark);
    padding: 15px 25px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.chatbot-container .chat-button:hover {
    transform: translateY(-2px);
}

.chatbot-container .chat-button i {
    font-size: 1.2rem;
}

.chatbot-container .chat-box {
    position: absolute;
    bottom: calc(100% + 20px);
    right: 0;
    width: 350px;
    height: 500px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-box.active {
    display: flex;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: transparent;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.chat-title::before {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    background-color: #FFED00;
    background-image: url('assets/Marty.png');
    background-size: 90%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    border: 2px solid #FFED00;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    flex-shrink: 0;
    object-fit: cover;
    filter: none;
}

.bot-message::before {
    content: '';
    display: block;
    width: 26px;
    height: 26px;
    background-color: #FFED00;
    background-image: url('assets/Marty.png');
    background-size: 90%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    border: 2px solid #FFED00;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    flex-shrink: 0;
    object-fit: cover;
    filter: none;
}

.chat-title i {
    display: none !important;
}

.chat-title span {
    display: flex;
    align-items: center;
    line-height: 1.1;
    color: var(--white);
}

.bot-message {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.bot-message i {
    display: none !important;
}

.close-chat {
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0;
    margin: 0;
    align-self: center;
    transition: all 0.3s ease;
}

.close-chat:hover {
    color: var(--primary);
    background: none;
    transform: scale(1.1);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--white);
}

.message {
    display: flex;
    gap: 10px;
    max-width: 80%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message i {
    font-size: 1.5rem;
    color: var(--accent);
    align-self: flex-start;
}

.message-content {
    background: rgba(30,30,30,0.4);
    color: var(--white);
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 0.95rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
}
.user-message .message-content {
    background: rgba(255,237,0,0.15);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.quick-reply {
    text-decoration: none !important;
    padding: 8px 18px !important;
    border-radius: 20px !important;
    font-size: 1rem !important;
    font-weight: 500;
    margin-bottom: 6px;
    margin-right: 6px;
    display: inline-block;
    outline: none;
    box-shadow: none;
    border: 1.5px solid var(--primary);
    background: rgba(30,30,30,0.3);
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.quick-reply:hover {
    background: var(--primary);
    color: var(--dark);
}

.chatbot-container .chat-input {
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
    display: flex;
    gap: 10px;
}
.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    background: rgba(0,0,0,0.5);
    color: var(--white);
    outline: none;
    box-shadow: none;
    transition: background 0.2s;
}
.chat-input input::placeholder {
    color: rgba(255,255,255,0.7);
}

.chat-input button {
    background: var(--primary);
    color: var(--dark);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.chat-input button:hover {
    background: #fff200;
    color: var(--dark);
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .chatbot-container {
        display: none;
    }

    .chat-button span {
        display: none;
    }

    .chat-button {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
    }

    .chat-box {
        width: calc(100vw - 30px);
        height: calc(100vh - 100px);
        bottom: 70px;
    }
}

.bot-message i {
    display: none;
}

.service-card,
.review-card,
.client-logo,
.stat-item,
.info-item {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.service-card:hover,
.review-card:hover,
.client-logo:hover,
.stat-item:hover,
.info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Update review card specific styles */
.review-card {
    flex: 0 0 auto;
    width: calc(33.333% - 1.33rem);
    min-width: 300px;
    scroll-snap-align: start;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 1;
}

.review-card:hover::before {
    transform: scaleX(1);
}

/* Update client logo specific styles */
.client-logo {
    scroll-snap-align: start;
    background: var(--white) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.client-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #FFED00;
    background: var(--white) !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .service-card:hover,
    .review-card:hover,
    .client-logo:hover,
    .stat-item:hover,
    .info-item:hover {
        transform: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    filter: brightness(0.75);
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
    pointer-events: none;
}

/* Update section backgrounds for better contrast while keeping video clear */
.hero, .about, .services, .contact, .reviews, .clients, .video-section {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    position: relative;
    z-index: 1;
}

.hero::before, .about::before, .services::before, 
.contact::before, .reviews::before, .clients::before, 
.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: -1;
}

/* Ensure text remains visible */
.service-card h3,
.stat-item .stat-number,
.about-stats .stat h3,
.review-card h4,
.service-item h3 {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-card p,
.stat-item .stat-label,
.about-stats .stat p,
.review-card p,
.service-item p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.service-modal {
    display: none;
    width: 90%;
    max-width: 600px;
    margin: 20px;
    animation: modalFadeIn 0.3s ease-out;
    position: relative;
    z-index: 1001;
}

.modal-content {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 1002;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.modal-header {
    padding: 24px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(0, 0, 0, 0.4);
}

.modal-header i {
    font-size: 28px;
    color: #FFED00;
}

.modal-header h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    flex-grow: 1;
    letter-spacing: 0.5px;
}

.close-modal {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #FFED00;
    color: #000;
    transform: rotate(90deg);
}

.modal-body {
    padding: 28px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.4);
}

.modal-body p {
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.modal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    border-color: rgba(255, 237, 0, 0.3);
}

.feature i {
    color: #FFED00;
    font-size: 18px;
}

.feature span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.modal-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
}

.modal-cta .cta-primary {
    background: #FFED00;
    color: #000;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.modal-cta .cta-primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 237, 0, 0.3);
}

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

@media (max-width: 768px) {
    .service-modal {
        width: 95%;
        margin: 10px;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature {
        padding: 12px;
    }

    .modal-cta {
        flex-direction: column;
    }

    .modal-cta .cta-primary {
        width: 100%;
        text-align: center;
    }
}

/* Show modal when active */
.modal-container.active {
    display: flex;
}

.service-modal.active {
    display: block;
}

/* Office Location Cards */
.office-card {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #FFED00;
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #FFED00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.office-card:hover::before {
    transform: scaleX(1);
}

.office-card i,
.office-card .location-icon {
    color: #FFED00;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.office-card:hover i,
.office-card:hover .location-icon {
    transform: scale(1.1);
}

.office-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.office-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.office-card .phone {
    color: #FFED00;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.office-card .phone:hover {
    transform: scale(1.05);
}

/* Stats Cards */
.stats-card {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #FFED00;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #FFED00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.stats-card:hover::before {
    transform: scaleX(1);
}

.stats-card .stat-value {
    color: #FFED00;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.stats-card:hover .stat-value {
    transform: scale(1.1);
}

.stats-card .stat-label {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .office-card,
    .stats-card {
        padding: 1.5rem;
    }

    .office-card:hover,
    .stats-card:hover {
        transform: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .office-card:hover i,
    .office-card:hover .location-icon,
    .stats-card:hover .stat-value {
        transform: none;
    }

    .stats-card .stat-value {
        font-size: 2.5rem;
    }

    .stats-card .stat-label {
        font-size: 1rem;
    }
}

/* Service Cards Base Styles */
.service-card {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    z-index: 2;
}

/* Hero Service Cards Specific Styles */
.hero-services .service-card {
    background: rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    transform: translateZ(0);
    will-change: transform;
    isolation: isolate;
}

.hero-services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.35) !important;
}

@media (max-width: 768px) {
    .hero-services .service-card {
        background: rgba(0, 0, 0, 0.25) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }
    
    .hero-services .service-card:hover {
        background: rgba(0, 0, 0, 0.35) !important;
    }
}

.hero-services .service-item i {
    color: #FFED00 !important;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: block;
    transform-origin: center;
}

.hero-services .service-item:hover i {
    transform: none;
    color: #FFED00 !important;
}

/* Contact Form File Upload Styles */
.cv-upload-container {
    margin-bottom: 1.5rem;
    width: 100%;
}

.cv-upload-container label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.cv-upload-container input[type="file"] {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.cv-upload-container input[type="file"]:hover {
    border-color: rgba(255, 237, 0, 0.3);
    background: rgba(0, 0, 0, 0.5) !important;
}

.cv-upload-container input[type="file"]:focus {
    outline: none;
    border-color: #FFED00;
    box-shadow: 0 0 0 2px rgba(255, 237, 0, 0.2);
}

.cv-upload-container input[type="file"]::-webkit-file-upload-button {
    display: none;
}

.cv-upload-container input[type="file"]::before {
    content: 'Choose File';
    display: inline-block;
    background: rgba(255, 237, 0, 0.1);
    border: 1px solid rgba(255, 237, 0, 0.2);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    margin-right: 1rem;
    color: #FFED00;
    font-weight: 500;
    cursor: pointer;
}

.cv-upload-container input[type="file"]:hover::before {
    background: rgba(255, 237, 0, 0.2);
    border-color: rgba(255, 237, 0, 0.3);
}

.contact-form select {
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    color: rgba(255, 255, 255, 0.7);
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
    cursor: pointer;
}

.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1);
}

/* Honeypot field */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Awards Section */
.awards {
    position: relative;
    padding: 80px 0;
    background: transparent;
    z-index: 1;
}

.awards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: -1;
}

.awards .container {
    position: relative;
    z-index: 1;
}

.awards h2 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.awards h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #FFED00;
}

.awards .section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 300;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.award-year {
    position: absolute;
    top: 0;
    right: 0;
    background: #FFED00;
    color: black;
    padding: 8px 15px;
    border-radius: 0 10px 0 0;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.award-content {
    margin-top: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.award-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #FFED00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 1;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 237, 0, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.award-card:hover::before {
    transform: scaleX(1);
}

.award-year {
    position: absolute;
    top: 0;
    right: 0;
    background: #FFED00;
    color: black;
    padding: 8px 15px;
    border-radius: 0 10px 0 0;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.award-content {
    margin-top: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.award-content h3 {
    color: #FFED00;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.award-card:hover .award-content h3 {
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(255, 237, 0, 0.2);
}

.award-content p {
    margin: 5px 0;
    color: white;
    font-weight: 300;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.award-recipient {
    font-weight: 600;
    color: white;
    margin-top: 15px;
    font-style: italic;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.award-card:hover .award-content p,
.award-card:hover .award-recipient {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .awards h2 {
        font-size: 2rem;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .award-card {
        padding: 20px;
        min-height: 160px;
    }

    .award-card:hover {
        transform: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

.awards .container h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.awards .container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 3px;
    background-color: var(--accent) !important;
    z-index: 1;
}

/* Force black color for service CTA card arrow */
.services .service-cta-card .cta-button i,
.services .service-cta-card .cta-button:hover i {
    color: #000000 !important;
}

/* Add chatbot specific styles */
.chatbot-intro {
    margin-bottom: 8px;
}

.chatbot-tip {
    font-size: 0.95em;
    color: #FFED00;
    margin: 0 0 14px 0;
}

.quick-replies {
    margin-bottom: 6px;
}

/* Social Sharing Styles */
.social-sharing {
    margin-top: 0;
    text-align: center;
}

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

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.share-btn:hover::before {
    opacity: 1;
}

.share-btn i {
    z-index: 1;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.twitter:hover {
    background: #1a91da;
    transform: translateY(-2px);
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.linkedin:hover {
    background: #006799;
    transform: translateY(-2px);
}

.share-btn.copy {
    background: #6c757d;
}

.share-btn.copy:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.share-btn.copy.copied {
    background: #28a745;
    animation: pulse 0.5s ease;
}

img {
    transition: opacity 0.3s ease;
    opacity: 1;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

@media (max-width: 768px) {
    .social-sharing {
        margin-top: 1.5rem;
    }
    
    .share-buttons {
        gap: 0.8rem;
    }
    
    .share-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}