/* ===== CSS RESET AND VARIABLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}


:root {
    --header-height: 4rem;
    
    /* Colors */
    --primary-color: #2563eb;
    --primary-color-alt: #1d4ed8;
    --secondary-color: #64748b;
    --accent-color: #0ea5e9;
    --text-color: #1e293b;
    --text-color-light: #64748b;
    --white-color: #ffffff;
    --light-gray: #f8fafc;
    --border-color: #e2e8f0;
    --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-large: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --body-font: 'Inter', sans-serif;
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.75rem;
    
    /* Font Weight */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Margins */
    --mb-0-5: 0.5rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;
    
    /* Z-index */
    --z-tooltip: 10;
    --z-fixed: 100;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Responsive Typography */
@media screen and (min-width: 768px) {
    :root {
        --h1-font-size: 3.5rem;
        --h2-font-size: 2.5rem;
        --h3-font-size: 1.75rem;
        --normal-font-size: 1.125rem;
    }
}

/* ===== BASE STYLES ===== */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    padding: 0;
    margin: 0; /* No margin to let video go to top */
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--white-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1 {
    color: #fff !important;
}

h2, h3, h4 {
    color: var(--text-color);
    font-weight: var(--font-semibold);
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button, input, textarea, select {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

/* ===== REUSABLE CLASSES ===== */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.section {
    padding: 4rem 0 2rem;
}

.section__header {
    text-align: center;
    margin-bottom: var(--mb-3);
}

.section__subtitle {
    display: block;
    font-size: var(--small-font-size);
    color: var(--primary-color);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-0-5);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.section__title {
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-1);
}

.button {
    display: inline-flex;
    align-items: center;
    column-gap: 0.5rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: var(--font-medium);
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.button:hover {
    background-color: var(--primary-color-alt);
    transform: translateY(-2px);
}

.button--primary {
    background-color: var(--primary-color);
}

.button--outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.button--outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.highlight {
    color: var(--primary-color);
}

/* ===== HEADER - FULLY TRANSPARENT ===== */
.header {
    width: 100%;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100; /* Above video but below modals */
    transition: var(--transition);
    backdrop-filter: blur(10px); /* Subtle blur effect */
}

/* Header on scroll - add background when scrolling */
.header.scroll-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scroll-header .logo-text {
    color: var(--primary-color) !important;
    text-shadow: none !important;
}

.header.scroll-header .logo-subtitle {
    color: var(--text-color-light) !important;
    text-shadow: none !important;
}

.header.scroll-header .nav__link {
    color: var(--text-color) !important;
    text-shadow: none !important;
}

.header.scroll-header .nav__toggle {
    color: var(--text-color) !important;
    text-shadow: none !important;
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container img {
    width: 120px; /* Adjust this value as needed */
    height: auto;
    display: block;
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-top: 5px;
    text-align: center;
    letter-spacing: 0.5px;
}

.nav__list {
    display: flex;
    column-gap: 2rem;
}

.nav__link {
    color: var(--white-color);
    font-weight: var(--font-medium);
    transition: var(--transition);
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* HOME PAGE NAV LINKS */

.nav__link_home {
    color: white;
}

.nav__link:hover,
.nav__link.active-link {
    color: rgba(255, 255, 255, 0.9);
}

.nav__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--white-color);
    left: 0;
    bottom: -4px;
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 100%;
}

.nav__toggle,
.nav__close {
    display: none;
}

/* ===== MOBILE NAVIGATION CONTRAST FIX - SITE-WIDE ===== */

@media screen and (max-width: 768px) {
    /* Mobile menu background */
    .nav__menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        transition: var(--transition);
        z-index: var(--z-fixed);
        padding: 2rem;
        box-shadow: var(--shadow-medium);
        border: 1px solid var(--border-color);
        border-top: none;
    }
    
    /* Mobile navigation list */
    .nav__list {
        flex-direction: column;
        gap: 2rem;
        margin-top: 1rem;
    }
    
    /* MOBILE NAV LINKS - DARK TEXT ON LIGHT BACKGROUND */
    .nav__menu .nav__link {
        color: black !important;
        font-size: 1.125rem;
        text-shadow: none !important;
        font-weight: var(--font-semibold);
        padding: 0.5rem 0;
        display: block;
        transition: var(--transition);
    }
    
    .nav__menu .nav__link:hover,
    .nav__menu .nav__link.active-link {
        color: var(--primary-color) !important;
    }
    
    .nav__menu .nav__link::after {
        background-color: var(--primary-color) !important;
    }
    
    /* Mobile menu close button */
    .nav__close {
        position: absolute;
        top: 1rem;
        right: 1.3rem;
        color: var(--text-color) !important;
        text-shadow: none !important;
        font-size: 1.5rem;
        cursor: pointer;
        display: block;
    }
    
    /* Mobile toggle button (hamburger) - keep as is for desktop styling */
    .nav__toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    /* Show mobile menu */
    .show-menu {
        left: 0;
    }
    
    /* Add separator lines between menu items */
    .nav__item:not(:last-child) {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1rem;
    }
    
    /* Improve menu item spacing */
    .nav__item {
        width: 100%;
    }
    
    /* Menu fade-in animation */
    .nav__menu.show-menu {
        animation: slideInLeft 0.3s ease;
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* ===== CRITICAL VIDEO HERO SECTION - FULL SCREEN ===== */
.home {
    position: relative;
    min-height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height); /* Add space for transparent header */
}

/* Video container - covers entire viewport */
.video-background {
    position: fixed; /* Fixed to cover entire viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Full viewport height */
    z-index: -1; /* Behind everything except fallback background */
}

/* The actual video element - full screen */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    
}

/* When video loads successfully */
.hero-video.video-loaded {
    opacity: 1;
}

/* Video overlay - covers entire video */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(134, 124, 6, 0.18) 0%
    );
    z-index: 1; /* Above video, below content */
}

/* Content must be above everything */
.home__container {
    position: relative;
    z-index: 10; /* CRITICAL: Above overlay and header */
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 4rem;
}

/* Loading indicator */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white-color);
    font-size: 1.2rem;
    z-index: 15;
    opacity: 1;
    transition: opacity 0.5s ease;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
}

.video-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-loading i {
    margin-right: 0.5rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== FALLBACK STYLES ===== */
body.no-video .home {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

body.no-video .video-background {
    display: none;
}

/* Error notification */
.video-error {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* ===== HOME CONTENT STYLES ===== */
.home__data {
    margin-bottom: var(--mb-2);
}

.home__title {
    font-size: var(--h1-font-size);
    margin-bottom: var(--mb-1);
    line-height: 1.1;
    color: var(--white-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.home__description {
    margin-bottom: var(--mb-2);
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.home .highlight {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.home__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: var(--mb-3);
}

.home__buttons .button {
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.home__buttons .button--primary {
    background-color: rgba(37, 99, 235, 0.9);
    color: var(--white-color);
}

.home__buttons .button--primary:hover {
    background-color: rgba(37, 99, 235, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.home__buttons .button--outline {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.home__buttons .button--outline:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.home__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat__item {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat__item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat__number {
    font-size: 2rem;
    font-weight: var(--font-bold);
    color: var(--white-color);
    margin-bottom: var(--mb-0-5);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--small-font-size);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.home__image {
    justify-self: center;
}

.home__blob {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}



.home__icon {
    font-size: 8rem;
    color: var(--white-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--white-color);
}

.about__container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about__description {
    margin-bottom: var(--mb-2);
    color: var(--text-color-light);
    line-height: 1.8;
}

.about__features {
    display: grid;
    gap: 1.5rem;
}

.feature__item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature__icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature__title {
    font-size: 1.125rem;
    margin-bottom: var(--mb-0-5);
}

.feature__description {
    color: var(--text-color-light);
}

.about__mission {
    display: grid;
    gap: 2rem;
}

.mission__card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: var(--transition);
}

.mission__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.mission__icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--mb-1);
}

.mission__icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.mission__title {
    margin-bottom: var(--mb-1);
}

.mission__text {
    color: var(--text-color-light);
    line-height: 1.7;
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--light-gray);
}

.services__container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service__card {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.service__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--mb-1-5);
}

.service__icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.service__title {
    margin-bottom: var(--mb-1);
    font-size: 1.25rem;
}

.service__description {
    color: var(--text-color-light);
    line-height: 1.7;
}

/* ===== TEAM SECTION ===== */
.team {
    background-color: var(--white-color);
}

.team__container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    justify-items: center;
}

.team__card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 400px;
    width: 100%;
    transition: var(--transition);
}

.team__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.team__image {
    margin-bottom: var(--mb-1-5);
}

.team__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.team__avatar i {
    font-size: 3rem;
    color: var(--white-color);
}

.team__name {
    font-size: 1.5rem;
    margin-bottom: var(--mb-0-5);
}

.team__role {
    color: var(--primary-color);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-1);
    font-size: 1.125rem;
}

.team__description {
    color: var(--text-color-light);
    line-height: 1.7;
    margin-bottom: var(--mb-1-5);
}

.team__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.credential {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
}

/* ===== PROJECTS SECTION ===== */
.projects {
    background-color: var(--light-gray);
}

.projects__container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.project__card {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.project__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.project__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--mb-1);
}

.project__icon i {
    font-size: 1.75rem;
    color: var(--white-color);
}

.project__title {
    margin-bottom: var(--mb-0-5);
    font-size: 1.25rem;
}

.project__units {
    color: var(--primary-color);
    font-weight: var(--font-semibold);
    margin-bottom: var(--mb-1);
}

.project__description {
    color: var(--text-color-light);
    line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--white-color);
}

.contact__container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__info {
    display: grid;
    gap: 2rem;
}

.contact__card {
    display: flex;
    gap: 1rem;
    align-items: start;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 0.75rem;
    transition: var(--transition);
}

.contact__card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.contact__icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__icon i {
    font-size: 1.25rem;
    color: var(--white-color);
}

.contact__title {
    font-size: 1.125rem;
    margin-bottom: var(--mb-0-5);
}

.contact__text {
    color: var(--text-color-light);
    line-height: 1.6;
}

.contact__form {
    display: grid;
    gap: 1.5rem;
}

.form__group {
    display: grid;
    gap: 0.5rem;
}

.form__input {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    background-color: var(--white-color);
    color: var(--text-color);
    transition: var(--transition);
}

.form__input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__button {
    justify-self: start;
    min-width: 200px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: black;
    color: var(--white-color);
    padding: 3rem 0 1rem;
}

.footer__container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: var(--mb-2);
}

.footer__logo {
    margin-bottom: var(--mb-1);
}

.footer__logo .logo-text {
    color: var(--white-color);
}

.footer__logo .logo-subtitle {
    color: var(--white-color);
}

.footer__description {
    color: var(--white-color);
    line-height: 1.7;
}

.footer__title {
    font-size: 1.125rem;
    margin-bottom: var(--mb-1);
    color: var(--white-color);
}

.footer__list {
    display: grid;
    gap: 0.75rem;
}

.footer__link {
    color: var(--white-color);
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--white-color);
}

.footer__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white-color);
}

.footer__icon {
    font-size: 1rem;
    color: var(--primary-color);
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-color);
    text-align: center;
}

.footer__copy {
    color: var(--white-color);
    font-size: var(--small-font-size);
}

/* ===== SCROLL UP ===== */
.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -20%;
    background-color: var(--primary-color);
    opacity: 0.8;
    padding: 0.5rem;
    border-radius: 0.4rem;
    z-index: var(--z-tooltip);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scrollup:hover {
    background-color: var(--primary-color-alt);
    opacity: 1;
}

.scrollup__icon {
    font-size: 1.5rem;
    color: var(--white-color);
}

.show-scroll {
    bottom: 5rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 992px) {
    .container {
        margin-left: var(--mb-1-5);
        margin-right: var(--mb-1-5);
    }
    
    .home__container,
    .about__container,
    .contact__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .home__image {
        order: -1;
    }
    
    .home__blob {
        width: 150px;
        height: 150px;
        margin-top: 80px;
    }
    
    .home__icon {
        font-size: 6rem;
    }
}

@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgb(14 9 0 / 95%);
        transition: var(--transition);
        z-index: var(--z-fixed);
        padding: 2rem;
        backdrop-filter: blur(10px);
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav__link {
        font-size: 1.125rem;
        color: var(--text-color);
        text-shadow: none;
    }
    
    .nav__close,
    .nav__toggle {
        display: block;
        font-size: 1.5rem;
        color: var(--white-color);
        cursor: pointer;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .nav__close {
        position: absolute;
        top: 1rem;
        right: 1.3rem;
        color: var(--text-color);
        text-shadow: none;
    }
    
    .show-menu {
        left: 0;
    }
    
    .section {
        padding: 2rem 0 4rem;
    }
    
    .home__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .home__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .logo-subtitle {
        display: none;
    }
    
    .services__container,
    .projects__container {
        grid-template-columns: 1fr;
    }
    
    .team__container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .home__stats {
        grid-template-columns: 1fr;
    }
    
    .home__title {
        font-size: 2rem;
    }
    
    .home__description {
        font-size: 1rem;
    }
}

/* ===== ANIMATION CLASSES ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.loading {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        animation-play-state: paused;
    }
    
    .home__blob {
        animation: none;
    }
    
    .stat__item:hover,
    .home__buttons .button:hover {
        transform: none;
    }
}

/* ===== TEAM PAGE STYLES ===== */

/* ===== PAGE HEADER ===== */
.page-header {
    background: transparent;
    color: var(--white-color);
    padding: 6rem 0 4rem;
    margin-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.1);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.page-header__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--mb-1-5);
    font-size: var(--small-font-size);
}

.breadcrumb__link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb__link:hover {
    color: var(--white-color);
}

.breadcrumb__separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb__current {
    color: var(--white-color);
    font-weight: var(--font-medium);
}

.page-header__title {
    font-size: var(--h1-font-size);
    margin-bottom: var(--mb-1);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== TEAM OVERVIEW ===== */
.team-overview {
    background-color: var(--white-color);
}

.section__description {
    max-width: 700px;
    margin: 0 auto var(--mb-3);
    color: var(--text-color-light);
    line-height: 1.8;
    text-align: center;
}

.overview__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: var(--mb-3);
}

.overview__stat {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.overview__stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.overview__stat .stat__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--mb-1);
}

.overview__stat .stat__icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.overview__stat .stat__number {
    font-size: 2.5rem;
    font-weight: var(--font-bold);
    color: var(--primary-color);
    margin-bottom: var(--mb-0-5);
}

.stat__label {
    font-size: 1.125rem;
    font-weight: var(--font-semibold);
    color: var(--text-color);
    margin-bottom: var(--mb-0-5);
}

.stat__description {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
}

/* ===== TEAM MEMBERS ===== */
.team-members {
    background-color: var(--light-gray);
}

.team__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: var(--mb-3);
}

.team__member {
    display: flex;
    justify-content: center;
}

.member__card {
    background-color: var(--white-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    max-width: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.member__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.member__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

/* ===== MEMBER HEADER ===== */
.member__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--mb-2);
}

.member__avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.member__avatar i {
    font-size: 2rem;
    color: var(--white-color);
}

.member__badge {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
}

/* ===== MEMBER INFO ===== */
.member__info {
    text-align: center;
    margin-bottom: var(--mb-2);
}

.member__name {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: var(--mb-0-5);
    font-weight: var(--font-bold);
}

.member__role {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: var(--font-semibold);
    margin-bottom: var(--mb-0-5);
}

.member__qualification {
    color: var(--text-color-light);
    font-style: italic;
}

/* ===== MEMBER EXPERIENCE ===== */
.member__experience {
    text-align: center;
    margin-bottom: var(--mb-2);
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 1rem;
}

.experience__highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.experience__number {
    font-size: 2.5rem;
    font-weight: var(--font-bold);
    color: var(--primary-color);
}

.experience__label {
    color: var(--text-color-light);
    font-weight: var(--font-medium);
}

/* ===== MEMBER DESCRIPTION ===== */
.member__description {
    margin-bottom: var(--mb-2);
}

.member__description p {
    color: var(--text-color-light);
    line-height: 1.8;
    text-align: justify;
}

/* ===== MEMBER CERTIFICATIONS ===== */
.member__certifications {
    margin-bottom: var(--mb-2);
}

.certifications__title,
.expertise__title,
.responsibilities__title {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: var(--mb-1);
    font-weight: var(--font-semibold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.certifications__title::before {
    content: '';
    width: 4px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.certifications__list {
    display: grid;
    gap: 0.75rem;
}

.certification__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: var(--light-gray);
    border-radius: 0.5rem;
    transition: var(--transition);
}

.certification__item:hover {
    background-color: rgba(37, 99, 235, 0.1);
}

.certification__item i {
    color: var(--primary-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.certification__item span {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
}

/* ===== MEMBER EXPERTISE ===== */
.member__expertise {
    margin-bottom: var(--mb-2);
}

.expertise__title::before {
    content: '';
    width: 4px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.expertise__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise__tag {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.375rem 0.75rem;
    border-radius: 1.5rem;
    font-size: var(--smaller-font-size);
    font-weight: var(--font-medium);
    transition: var(--transition);
}

.expertise__tag:hover {
    background-color: var(--primary-color-alt);
    transform: translateY(-2px);
}

/* ===== MEMBER RESPONSIBILITIES ===== */
.member__responsibilities {
    margin-bottom: var(--mb-1);
}

.responsibilities__title::before {
    content: '';
    width: 4px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.responsibilities__list {
    list-style: none;
    padding: 0;
}

.responsibilities__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color-light);
    line-height: 1.6;
}

.responsibilities__list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: var(--small-font-size);
}

/* ===== TEAM EXPERTISE SECTION ===== */
.team-expertise {
    background-color: var(--white-color);
}

.expertise__container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.expertise__content {
    display: grid;
    gap: 2rem;
}

.expertise__item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 1rem;
    transition: var(--transition);
}

.expertise__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.expertise__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.expertise__icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.expertise__details {
    flex: 1;
}

.expertise__heading {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: var(--mb-1);
}

.expertise__description {
    color: var(--text-color-light);
    line-height: 1.7;
    margin-bottom: var(--mb-1);
}

.expertise__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature__item {
    background-color: var(--white-color);
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: var(--smaller-font-size);
    font-weight: var(--font-medium);
    border: 1px solid var(--border-color);
}

/* ===== EXPERTISE STATS ===== */
.expertise__stats {
    display: grid;
    gap: 1.5rem;
}

.stat__card {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: var(--transition);
}

.stat__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat__card .stat__icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--mb-1);
}

.stat__card .stat__icon i {
    color: var(--white-color);
    font-size: 1.25rem;
}

.stat__title {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: var(--mb-0-5);
}

.stat__description {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
    line-height: 1.5;
}

/* ===== PROFESSIONAL STANDARDS ===== */
.professional-standards {
    background-color: var(--light-gray);
}

.standards__container {
    margin-top: var(--mb-3);
}

.standards__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.standard__card {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.standard__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.standard__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--mb-1-5);
}

.standard__icon i {
    font-size: 1.75rem;
    color: var(--white-color);
}

.standard__title {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: var(--mb-1);
}

.standard__description {
    color: var(--text-color-light);
    line-height: 1.7;
}

/* ===== WHY CHOOSE TEAM ===== */
.why-choose-team {
    background-color: var(--white-color);
}

.choose-team__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: var(--mb-3);
}

.choose__reasons {
    display: grid;
    gap: 2rem;
}

.reason__item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.reason__number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.reason__content {
    flex: 1;
}

.reason__title {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: var(--mb-0-5);
}

.reason__description {
    color: var(--text-color-light);
    line-height: 1.7;
}

/* ===== TESTIMONIAL CARD ===== */
.choose__testimonial {
    display: flex;
    align-items: center;
}

.testimonial__card {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 1.5rem;
    position: relative;
    border: 1px solid var(--border-color);
}

.testimonial__quote {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--mb-1);
}

.testimonial__text {
    color: var(--text-color-light);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--mb-1-5);
}

.testimonial__footer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial__author {
    font-weight: var(--font-semibold);
    color: var(--text-color);
}

.testimonial__role {
    color: var(--primary-color);
    font-size: var(--small-font-size);
}

/* ===== CONTACT TEAM ===== */
.contact-team {
    background-color: var(--light-gray);
}

.contact-team__container {
    margin-top: var(--mb-3);
}

.contact__methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: var(--mb-3);
}

.contact__method {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    gap: 1.5rem;
    align-items: start;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.contact__method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.method__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method__icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.method__content {
    flex: 1;
}

.method__title {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: var(--mb-0-5);
}

.method__description {
    color: var(--text-color-light);
    margin-bottom: var(--mb-1);
}

.method__details p {
    color: var(--primary-color);
    font-weight: var(--font-medium);
    margin-bottom: 0.25rem;
}

/* ===== CONTACT CTA ===== */
.contact__cta {
    background-color: var(--white-color);
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.cta__title {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: var(--mb-1);
}

.cta__description {
    color: var(--text-color-light);
    line-height: 1.7;
    margin-bottom: var(--mb-2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN FOR TEAM PAGE ===== */
@media screen and (max-width: 992px) {
    .page-header {
        padding: 5rem 0 3rem;
    }
    
    .team__container {
        grid-template-columns: 1fr;
    }
    
    .expertise__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .choose-team__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .member__card {
        padding: 2rem;
    }
    
    .expertise__item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .reason__item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .page-header {
        padding: 4rem 0 2rem;
    }
    
    .page-header__title {
        font-size: 2rem;
    }
    
    .overview__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .team__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .standards__grid {
        grid-template-columns: 1fr;
    }
    
    .contact__methods {
        grid-template-columns: 1fr;
    }
    
    .member__header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .button {
        width: 100%;
        max-width: 280px;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 576px) {
    .overview__stats {
        grid-template-columns: 1fr;
    }
    
    .member__card {
        padding: 1.5rem;
    }
    
    .expertise__features {
        justify-content: center;
    }
    
    .contact__method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .testimonial__card {
        padding: 2rem;
    }
    
    .contact__cta {
        padding: 2rem;
    }
}

/* ===== ANIMATIONS FOR TEAM PAGE ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.member__card,
.standard__card,
.contact__method {
    animation: fadeInUp 0.6s ease forwards;
}

.member__card:nth-child(2) {
    animation-delay: 0.2s;
}

.standard__card:nth-child(even) {
    animation-delay: 0.1s;
}

.standard__card:nth-child(3n) {
    animation-delay: 0.2s;
}

.header .logo-text {
    color: var(--primary-color);
    text-shadow: none;
}

.header .logo-subtitle {
    color: var(--text-color-light);
    text-shadow: none;
}

.header .nav__link:hover,
.header .nav__link.active-link {
    color: var(--primary-color);
}

.header .nav__link::after {
    background-color: var(--primary-color);
}

.header .nav__toggle {
    color: var(--text-color);
    text-shadow: none;
}

/* ===== PROJECTS PAGE STYLES ===== */

/* ===== PROJECTS OVERVIEW ===== */
.projects-overview {
    background-color: var(--white-color);
}

/* ===== FEATURED PROJECTS ===== */
.featured-projects {
    background-color: var(--light-gray);
}

.featured__container {
    display: grid;
    gap: 4rem;
    margin-top: var(--mb-3);
}

.featured__project {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background-color: var(--white-color);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.featured__project:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.featured__project:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.featured__project:nth-child(even) .project__image {
    order: 2;
}

.featured__project:nth-child(even) .project__content {
    order: 1;
}

/* ===== PROJECT IMAGE ===== */
.project__image1 {
    position: relative;
    background: url("assets/Images/lake basin mall.jpg") no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.project__image2 {
    background: url("assets/Images/garden city business park.jpg") no-repeat center/cover;
}

.project__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.project__placeholder i {
    font-size: 3rem;
    color: var(--white-color);
}

.project__badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: var(--small-font-size);
    font-weight: var(--font-semibold);
    backdrop-filter: blur(10px);
}

/* ===== PROJECT CONTENT ===== */
.project__content {
    padding: 2.5rem;
}

.project__header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: var(--mb-1-5);
    flex-wrap: wrap;
    gap: 1rem;
}

.project__title {
    font-size: 1.75rem;
    color: var(--text-color);
    font-weight: var(--font-bold);
    flex: 1;
}

.project__category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    color: var(--text-color-light);
    font-size: var(--small-font-size);
}

.project__stats {
    display: flex;
    gap: 2rem;
    margin-bottom: var(--mb-1-5);
}

.project__stat {
    text-align: center;
}

.project__stat .stat__number {
    font-size: 1.75rem;
    font-weight: var(--font-bold);
    color: var(--primary-color);
    display: block;
}

.project__stat .stat__label {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
}

.project__description {
    color: var(--text-color-light);
    line-height: 1.8;
    margin-bottom: var(--mb-2);
}

.project__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: var(--mb-2);
}

.project__features .feature__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--small-font-size);
    color: var(--text-color-light);
}

.project__features .feature__item i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.project__details {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: var(--mb-1-5);
}

.detail__item {
    margin-bottom: 0.75rem;
    font-size: var(--small-font-size);
    color: var(--text-color-light);
}

.detail__item:last-child {
    margin-bottom: 0;
}

.detail__item strong {
    color: var(--text-color);
}

/* ===== ALL PROJECTS GRID ===== */
.all-projects {
    background-color: var(--white-color);
}

.projects__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    gap: 2rem;
    margin-top: var(--mb-3);
}

/* ===== PROJECT CARDS ===== */
.project__card {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.project__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.project__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.project__card--large {
    grid-column: span 2; /* Large card spans 2 columns */
}

/* ===== CARD HEADER ===== */
.card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--mb-1-5);
}

.card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card__icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.card__badge {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.375rem 0.75rem;
    border-radius: 1.5rem;
    font-size: var(--smaller-font-size);
    font-weight: var(--font-semibold);
}

/* ===== CARD CONTENT ===== */
.card__title {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: var(--mb-0-5);
    font-weight: var(--font-semibold);
}

.card__category {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
    margin-bottom: var(--mb-1);
    font-style: italic;
}

.card__description {
    color: var(--text-color-light);
    line-height: 1.6;
    margin-bottom: var(--mb-1-5);
    font-size: var(--small-font-size);
}

.card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--mb-1-5);
}

.card__features .feature {
    background-color: var(--light-gray);
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: var(--smaller-font-size);
    font-weight: var(--font-medium);
}

.card__status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: var(--font-medium);
    font-size: var(--small-font-size);
}

.card__status i {
    color: #10b981;
}

/* ===== PROJECT CATEGORIES ===== */
.project-categories {
    background-color: var(--light-gray);
}

.categories__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: var(--mb-3);
}

.category__card {
    background-color: var(--white-color);
    padding: 2.5rem;
    border-radius: 1.5rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.category__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.category__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--mb-1-5);
}

.category__icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.category__title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: var(--mb-1);
}

.category__stats {
    display: flex;
    gap: 2rem;
    margin-bottom: var(--mb-1-5);
}

.category__stat {
    text-align: center;
}

.category__stat .stat__number {
    font-size: 1.75rem;
    font-weight: var(--font-bold);
    color: var(--primary-color);
    display: block;
}

.category__stat .stat__label {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
}

.category__description {
    color: var(--text-color-light);
    line-height: 1.7;
    margin-bottom: var(--mb-2);
}

.category__projects {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project__name {
    background-color: var(--light-gray);
    color: var(--text-color);
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: var(--smaller-font-size);
    font-weight: var(--font-medium);
}

/* ===== SUCCESS METRICS ===== */
.success-metrics {
    background-color: var(--white-color);
}

.metrics__container {
    margin-top: var(--mb-3);
}

.metrics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: var(--mb-3);
}

.metric__card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.metric__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.metric__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--mb-1);
}

.metric__icon i {
    font-size: 1.75rem;
    color: var(--white-color);
}

.metric__number {
    font-size: 2rem;
    font-weight: var(--font-bold);
    color: var(--primary-color);
    margin-bottom: var(--mb-0-5);
}

.metric__label {
    font-size: 1.125rem;
    color: var(--text-color);
    font-weight: var(--font-semibold);
    margin-bottom: var(--mb-0-5);
}

.metric__description {
    color: var(--text-color-light);
    line-height: 1.6;
    font-size: var(--small-font-size);
}

/* ===== METRICS SUMMARY ===== */
.metrics__summary {
    background-color: var(--light-gray);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
}

.summary__title {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: var(--mb-1);
}

.summary__description {
    color: var(--text-color-light);
    line-height: 1.8;
    margin-bottom: var(--mb-2);
}

.summary__highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.highlight__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color-light);
}

.highlight__item i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* ===== CLIENT TESTIMONIALS ===== */
.client-testimonials {
    background-color: var(--light-gray);
}

.testimonials__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: var(--mb-3);
}

.testimonial__card {
    background-color: var(--white-color);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.testimonial__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.testimonial__content {
    padding: 2.5rem;
}

.testimonial__quote {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--mb-1);
}

.testimonial__text {
    color: var(--text-color-light);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--mb-2);
}

.testimonial__footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
    gap: 1rem;
}

.testimonial__author {
    flex: 1;
}

.author__name {
    font-weight: var(--font-semibold);
    color: var(--text-color);
    display: block;
    margin-bottom: 0.25rem;
}

.author__role {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
}

.testimonial__rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial__rating i {
    color: #fbbf24;
    font-size: var(--small-font-size);
}

/* ===== NEXT PROJECT CTA ===== */
.next-project-cta {
    background-color: var(--white-color);
}

.cta__container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(37, 99, 235, 0.05) 100%);
    padding: 4rem;
    border-radius: 2rem;
    margin-top: var(--mb-3);
    border: 1px solid var(--border-color);
}

.cta__subtitle {
    color: var(--primary-color);
    font-size: var(--small-font-size);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.cta__title {
    font-size: 2.25rem;
    color: var(--text-color);
    margin: var(--mb-1) 0;
    line-height: 1.2;
}

.cta__description {
    color: var(--text-color-light);
    line-height: 1.8;
    margin-bottom: var(--mb-2);
}

.cta__stats {
    display: flex;
    gap: 2rem;
    margin-bottom: var(--mb-2);
}

.cta__stat {
    text-align: center;
}

.cta__stat .stat__number {
    font-size: 1.75rem;
    font-weight: var(--font-bold);
    color: var(--primary-color);
    display: block;
}

.cta__stat .stat__label {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
}

.cta__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta__blob {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.cta__blob i {
    font-size: 4rem;
    color: var(--white-color);
}

/* ===== RESPONSIVE DESIGN FOR PROJECTS PAGE ===== */

/* Tablet Styles (768px - 992px) */
@media screen and (max-width: 992px) {
    .projects__grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        gap: 1.5rem;
    }
    
    .project__card--large {
        grid-column: span 1; /* Large card takes 1 column on tablet */
    }
    
    .featured__project {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .featured__project:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .featured__project:nth-child(even) .project__image,
    .featured__project:nth-child(even) .project__content {
        order: 0;
    }
    
    /*.project__image {*/
    /*    min-height: 300px;*/
    /*}*/
    
    .project__features {
        grid-template-columns: 1fr;
    }
    
    .cta__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .categories__container {
        grid-template-columns: 1fr;
    }
    
    .summary__highlights {
        grid-template-columns: 1fr;
    }
}

/* Mobile Styles (up to 768px) */
@media screen and (max-width: 768px) {
    .projects__grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 1rem;
    }
    
    .project__card {
        padding: 1.5rem;
    }
    
    .project__card--large {
        grid-column: span 2; /* Large card spans full width on mobile */
    }
    
    .featured__project {
        margin: 0 -1rem; /* Extend to edges on mobile */
        border-radius: 1rem;
    }
    
    .project__content {
        padding: 2rem;
    }
    
    .project__header {
        flex-direction: column;
        align-items: start;
        gap: 0.5rem;
    }
    
    .project__stats {
        gap: 1rem;
    }
    
    .card__title {
        font-size: 1.125rem;
    }
    
    .card__description {
        font-size: var(--smaller-font-size);
    }
    
    .testimonials__container {
        grid-template-columns: 1fr;
    }
    
    .testimonial__content {
        padding: 2rem;
    }
    
    .testimonial__footer {
        flex-direction: column;
        align-items: start;
        gap: 0.5rem;
    }
    
    .metrics__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .metric__card {
        padding: 1.5rem;
    }
    
    .cta__container {
        padding: 2rem;
    }
    
    .cta__title {
        font-size: 1.75rem;
    }
    
    .cta__stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .button {
        width: 100%;
        max-width: 280px;
    }
    
    .cta__blob {
        width: 150px;
        height: 150px;
    }
    
    .cta__blob i {
        font-size: 3rem;
    }
}

/* Extra Small Mobile (up to 576px) */
@media screen and (max-width: 576px) {
    .projects__grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }
    
    .project__card--large {
        grid-column: span 1;
    }
    
    .metrics__grid {
        grid-template-columns: 1fr;
    }
    
    .overview__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card__features {
        justify-content: center;
    }
    
    .project__placeholder {
        width: 80px;
        height: 80px;
    }
    
    .project__placeholder i {
        font-size: 2rem;
    }
}

/* ===== ANIMATION ENHANCEMENTS ===== */
@keyframes projectFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project__card,
.featured__project,
.category__card,
.metric__card,
.testimonial__card {
    animation: projectFadeIn 0.6s ease forwards;
}

.project__card:nth-child(2) {
    animation-delay: 0.1s;
}

.project__card:nth-child(3) {
    animation-delay: 0.2s;
}

.project__card:nth-child(4) {
    animation-delay: 0.3s;
}

.project__card:nth-child(5) {
    animation-delay: 0.4s;
}

.project__card:nth-child(6) {
    animation-delay: 0.5s;
}

/* ===== SCROLL TO TOP VISIBILITY ===== */
.projects-page .scrollup {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}


/* ===== SERVICES PAGE STYLES ===== */

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
    background-color: var(--white-color);
}

.overview__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: var(--mb-3);
}

.overview__stat {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.overview__stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.overview__stat .stat__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--mb-1);
}

.overview__stat .stat__icon i {
    font-size: 1.75rem;
    color: var(--white-color);
}

.stat__title {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: var(--mb-0-5);
    font-weight: var(--font-semibold);
}

.stat__description {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
}

/* ===== MAIN SERVICES ===== */
.main-services {
    background-color: var(--light-gray);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: var(--mb-3);
}

/* ===== SERVICE CARDS ===== */
.service__card {
    background-color: var(--white-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.service__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.service__card--featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

.service__card--featured::before {
    height: 6px;
}

/* ===== SERVICE HEADER ===== */
.service__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--mb-1-5);
}

.service__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service__icon i {
    font-size: 1.75rem;
    color: var(--white-color);
}

.service__badge {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: var(--smaller-font-size);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

/* ===== SERVICE CONTENT ===== */
.service__title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: var(--mb-1);
    font-weight: var(--font-semibold);
}

.service__description {
    color: var(--text-color-light);
    line-height: 1.7;
    margin-bottom: var(--mb-2);
}

.service__features {
    margin-bottom: var(--mb-2);
}

.service__features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-color-light);
    font-size: var(--small-font-size);
}

.service__features .feature:last-child {
    margin-bottom: 0;
}

.service__features .feature i {
    color: var(--primary-color);
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* ===== SERVICE PRICING ===== */
.service__pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: var(--mb-2);
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 1rem;
    text-align: center;
}

.service__price {
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    color: var(--primary-color);
}

.service__period {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
}

.service__button {
    width: 100%;
    justify-content: center;
}

/* ===== INSPECTION PROCESS ===== */
.inspection-process {
    background-color: var(--white-color);
}

.process__container {
    margin-top: var(--mb-3);
    position: relative;
}

.process__step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process__step:nth-child(even) {
    grid-template-columns: 1fr auto 1fr;
}

.process__step:nth-child(even) .step__content {
    order: -1;
    text-align: right;
}

.step__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: var(--font-bold);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.step__content {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.step__content:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.step__title {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: var(--mb-1);
    font-weight: var(--font-semibold);
}

.step__description {
    color: var(--text-color-light);
    line-height: 1.7;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background-color: var(--light-gray);
}

.pricing__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--mb-3);
}

.pricing__card {
    background-color: var(--white-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.pricing__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.pricing__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.pricing__card--featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
    scale: 1.05;
}

.pricing__card--featured::before {
    height: 6px;
}

.pricing__badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: var(--smaller-font-size);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
}

.pricing__header {
    margin-bottom: var(--mb-2);
}

.pricing__title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: var(--mb-0-5);
    font-weight: var(--font-semibold);
}

.pricing__subtitle {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
}

.pricing__price {
    margin-bottom: var(--mb-2);
}

.price__amount {
    font-size: 2.5rem;
    font-weight: var(--font-bold);
    color: var(--primary-color);
    display: block;
}

.price__period {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
}

.pricing__features {
    margin-bottom: var(--mb-2);
    text-align: left;
}

.pricing__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-color-light);
    font-size: var(--small-font-size);
}

.pricing__feature:last-child {
    margin-bottom: 0;
}

.pricing__feature i {
    color: var(--primary-color);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.pricing__button {
    width: 100%;
    justify-content: center;
}

.pricing__note {
    background-color: rgba(37, 99, 235, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: var(--mb-2);
    text-align: center;
}

.pricing__note p {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
    margin: 0;
}

.pricing__note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ===== STANDARDS COMPLIANCE ===== */
.standards-compliance {
    background-color: var(--white-color);
}

.compliance__container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: var(--mb-3);
}

.compliance__heading {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: var(--mb-1);
}

.compliance__description {
    color: var(--text-color-light);
    line-height: 1.8;
    margin-bottom: var(--mb-2);
}

.standards__list {
    display: grid;
    gap: 1.5rem;
}

.standard__item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 1rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.standard__item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.standard__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.standard__icon i {
    font-size: 1.25rem;
    color: var(--white-color);
}

.standard__content {
    flex: 1;
}

.standard__title {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: var(--mb-0-5);
    font-weight: var(--font-semibold);
}

.standard__description {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
    line-height: 1.6;
}

/* ===== COMPLIANCE STATS ===== */
.compliance__stats {
    display: grid;
    gap: 2rem;
}

.compliance__stat {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.compliance__stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.compliance__stat .stat__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--mb-1);
}

.compliance__stat .stat__icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.compliance__stat .stat__number {
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    color: var(--primary-color);
    margin-bottom: var(--mb-0-5);
}

.compliance__stat .stat__label {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background-color: var(--light-gray);
}

#service-contact-form .form__group {
    margin-bottom: var(--mb-1-5);
}

/* ===== RESPONSIVE DESIGN FOR SERVICES PAGE ===== */

/* Tablet Styles (768px - 992px) */
@media screen and (max-width: 992px) {
    .services__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing__container {
        grid-template-columns: 1fr;
    }
    
    .pricing__card--featured {
        scale: 1;
        order: -1;
    }
    
    .compliance__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process__container::before {
        display: none;
    }
    
    .process__step {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        text-align: left;
    }
    
    .process__step:nth-child(even) {
        grid-template-columns: auto 1fr;
    }
    
    .process__step:nth-child(even) .step__content {
        order: 0;
        text-align: left;
    }
    
    .step__number {
        width: 50px;
        height: 50px;
        font-size: 1.125rem;
        align-self: start;
        margin-top: 1rem;
    }
}

/* Mobile Styles (up to 768px) */
@media screen and (max-width: 768px) {
    .overview__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .service__card {
        padding: 2rem;
    }
    
    .service__header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .service__icon {
        width: 60px;
        height: 60px;
    }
    
    .service__icon i {
        font-size: 1.5rem;
    }
    
    .pricing__card {
        padding: 2rem;
    }
    
    .pricing__card--featured {
        margin: 0;
    }
    
    .process__step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .step__number {
        justify-self: center;
        margin: 0;
    }
    
    .standards__list {
        gap: 1rem;
    }
    
    .standard__item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .compliance__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .compliance__stat {
        padding: 1.5rem;
    }
}

/* Extra Small Mobile (up to 576px) */
@media screen and (max-width: 576px) {
    .overview__stats {
        grid-template-columns: 1fr;
    }
    
    .service__pricing {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }
    
    .price__amount {
        font-size: 2rem;
    }
    
    .step__content {
        padding: 1.5rem;
    }
    
    .step__number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .pricing__badge {
        position: static;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .standard__icon {
        width: 45px;
        height: 45px;
    }
    
    .standard__icon i {
        font-size: 1.125rem;
    }
}

/* ===== ANIMATION ENHANCEMENTS ===== */
@keyframes serviceSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service__card,
.pricing__card,
.standard__item {
    animation: serviceSlideUp 0.6s ease forwards;
}

.service__card:nth-child(2) {
    animation-delay: 0.1s;
}

.service__card:nth-child(3) {
    animation-delay: 0.2s;
}

.service__card:nth-child(4) {
    animation-delay: 0.3s;
}

.service__card:nth-child(5) {
    animation-delay: 0.4s;
}

.service__card:nth-child(6) {
    animation-delay: 0.5s;
}

.pricing__card:nth-child(2) {
    animation-delay: 0.1s;
}

.pricing__card:nth-child(3) {
    animation-delay: 0.2s;
}

/* ===== PROCESS STEP ANIMATIONS ===== */
.process__step {
    animation: serviceSlideUp 0.8s ease forwards;
}

.process__step:nth-child(2) {
    animation-delay: 0.2s;
}

.process__step:nth-child(3) {
    animation-delay: 0.4s;
}

.process__step:nth-child(4) {
    animation-delay: 0.6s;
}

.process__step:nth-child(5) {
    animation-delay: 0.8s;
}

/* ===== ENHANCED HOVER EFFECTS ===== */
.service__card--featured:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
}

.pricing__card--featured:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
}

/* ===== FOCUS STATES FOR ACCESSIBILITY ===== */
.service__button:focus,
.pricing__button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.form__input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ===== PRINT STYLES ===== */
@media print {
    .service__card,
    .pricing__card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .process__container::before {
        display: none;
    }
}

/* ==== Whatsapp Button ==== */
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 50px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    color: #FFF;
}

.my-float {
    margin-top: 0;
}

/* Responsive Breakpoints */
@media screen and (max-width: 768px) {
    .float {
        width: 50px;
        height: 50px;
        bottom: 40px;
        left: 25px;
        font-size: 25px;
    }
}

@media screen and (max-width: 480px) {
    .float {
        width: 45px;
        height: 45px;
        bottom: 40px;
        left: 20px;
        font-size: 22px;
    }
}

.team_email {
    margin-left: -100px;
}