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

:root {
    /* Colors */
    /* --primary: #0a6e31; */
    --primary: #024b92;
    --primary-light: #0d8a3d;
    --primary-dark: #085526;
    --primary-transparent: rgba(10, 110, 49, 0.05);
    --secondary: #1a5f7a;
    --secondary-light: #2286af;
    --secondary-dark: #124759;
    --accent: #f8b400;
    --accent-dark: #e0a400;
    --light: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --dark: #212529;
    --black: #000000;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.12);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-primary: 0 5px 15px rgba(10, 110, 49, 0.2);
    --shadow-accent: 0 5px 15px rgba(248, 180, 0, 0.2);

    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Typography */
    --font-heading: 'Roboto', serif;
    --font-body: 'Poppins', sans-serif;
    --font-alt: 'Montserrat', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --section-spacing: 100px;
    --section-spacing-sm: 60px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

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

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 1000px;
}

.container-lg {
    max-width: 1400px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-icon {
    display: inline-flex;
    margin-left: 0.5rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--dark);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

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

.btn-outline-light:hover {
    background-color: var(--light);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.btn-rounded {
    border-radius: var(--radius-full);
}

/* Sections */
.section {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
}

.section-sm {
    padding: var(--section-spacing-sm) 0;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

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

.section-title p {
    max-width: 700px;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
}

.section-subtitle {
    font-family: var(--font-alt);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

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

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

.text-secondary {
    color: var(--secondary);
}

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

.text-light {
    color: var(--light);
}

.text-dark {
    color: var(--dark);
}

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

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

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

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

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

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

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.ml-1 {
    margin-left: 0.5rem;
}

.ml-2 {
    margin-left: 1rem;
}

.mr-1 {
    margin-right: 0.5rem;
}

.mr-2 {
    margin-right: 1rem;
}

.p-1 {
    padding: 0.5rem;
}

.p-2 {
    padding: 1rem;
}

.p-3 {
    padding: 1.5rem;
}

.p-4 {
    padding: 2rem;
}

.p-5 {
    padding: 3rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    height: 70px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.logo:hover .logo-text {
    color: var(--primary-dark);
}

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

.nav-link {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    opacity: 1;
}

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

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

.nav-cta .btn {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.nav-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 1001;
    background: transparent;
    border: none;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
    top: 10px;
}

.hamburger span:nth-child(4) {
    top: 20px;
}

.hamburger.open span:nth-child(1),
.hamburger.open span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.hamburger.open span:nth-child(2) {
    transform: rotate(45deg);
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Responsive Styles for Navigation */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--light);
        flex-direction: column;
        padding: 100px 2rem 2rem;
        transition: all 0.5s ease;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        justify-content: flex-start;
        gap: 1.5rem;
        overflow-y: auto;
    }

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

    .hamburger {
        display: block;
    }

    .nav-link {
        width: 100%;
        text-align: left;
        font-size: 1.1rem;
        padding: 0.6rem 0;
    }

    .nav-cta {
        margin: 1rem 0 0 0;
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
        text-align: center;
    }

    .logo-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .nav-links {
        width: 100%;
        padding: 90px 1.5rem 2rem;
    }
}

/* Add overlay for mobile menu */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--light);
    overflow: hidden;
    padding: calc(var(--header-height) + 2rem) 0 2rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: var(--primary-transparent);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--primary);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.05;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 60%;
    background-color: var(--primary);
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
    opacity: 0.03;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    position: relative;
}

.hero-subtitle {
    position: relative;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--primary);
    display: inline-block;
    padding-bottom: 0.8rem;
    font-family: var(--font-alt);
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary);
}

.hero-title {
    font-size: clamp(2rem, 3vw, 3.3rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--accent);
    opacity: 0.3;
    z-index: -1;
}

.hero-description {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-buttons .btn {
    border-radius: var(--radius-full);
    padding: 1rem 2.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hero-image {
    position: relative;
    width: 100%;
    z-index: 1;
}

.hero-image-inner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-image-inner:hover {
    transform: perspective(1000px) rotateY(0);
}

.hero-image-inner img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.hero-image-inner:hover img {
    transform: scale(1.05);
}

.hero-badge {
    position: absolute;
    background-color: var(--accent);
    color: var(--dark);
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    bottom: 30px;
    right: -20px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    z-index: 2;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: clamp(2.5rem, 3vw, 3.5rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    font-family: var(--font-heading);
}

.hero-stat-text {
    font: 500 1.5rem Poppins;
    color: var(--dark-gray);
    margin-top: 0.5rem;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }
}

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

    .hero-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: calc(var(--header-height) + 1rem);
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.3rem;
        text-align: center;
    }

    .hero-description {
        font-size: 1rem;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        max-width: 300px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

    .hero-badge {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
        right: 0;
    }
}

/* Features Section */
.features-section {
    position: relative;
    overflow: hidden;
    background-color: var(--light-gray);
}

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

.feature-card {
    background-color: var(--light);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-transparent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon svg {
    fill: var(--light);
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.feature-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    flex: 1;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-link svg {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.feature-link:hover {
    color: var(--primary-dark);
}

.feature-link:hover svg {
    transform: translateX(5px);
}

/* Products Section */
.products-section {
    position: relative;
    overflow: hidden;
    background-color: var(--light-gray);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.products-title {
    margin-bottom: 0;
    flex: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* Redesigned Product Card Styling */
.product-card {
    background-color: var(--light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 100%;
}

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

.product-image {
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
}

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

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ffff00;
    color: var(--black);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(10, 110, 49, 0.2);
}

.product-content {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--light);
    border-top: 2px solid var(--primary);
}

.product-category {
    color: var(--primary);
    font-size: 0.7rem;
    margin-bottom: 0.3rem;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card:hover .product-title {
    color: var(--primary);
}

.product-description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    flex: 1;
    line-height: 1.5;
    color: var(--dark-gray);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.product-btn {
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: var(--primary-transparent);
    color: var(--primary);
    white-space: nowrap;
}

.product-btn:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .product-content {
        padding: 1rem;
    }

    .product-title {
        font-size: 1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.05;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"%3E%3Cpath fill="%230a6e31" d="M0,0 L100,0 L100,100 L0,100 Z" /%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
}

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

.testimonial-card {
    background-color: var(--light);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    font-family: 'Georgia', serif;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    line-height: 1.8;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.testimonial-author-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
    border: 3px solid var(--light-gray);
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.testimonial-author-title {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.stats-wrapper {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-card-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-icon svg {
    color: var(--light);
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    position: relative;
    display: inline-flex;
    align-items: baseline;
}

.stat-label {
    color: #fff !important;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-ring {
    width: 120px;
    height: 120px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--light);
    animation: spin 2s linear infinite;
    opacity: 0.1;
}

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

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .stat-card {
        padding: 1.5rem;
    }

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

    .stat-icon {
        width: 56px;
        height: 56px;
    }

    .progress-ring {
        width: 100px;
        height: 100px;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    padding: 7rem 0;
    color: var(--light);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content-box {
    position: relative;
}

.cta-overline {
    display: inline-block;
    font-family: var(--font-alt);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 40px;
}

.cta-overline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
    transform: translateY(-50%);
}

.cta-title {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 90%;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon svg {
    color: var(--accent);
}

.feature-content h4 {
    color: var(--light);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.cta-action {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.action-note {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--accent);
    font-weight: 500;
}

.action-note svg {
    stroke: var(--accent);
}

.cta-image-box {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
}

.stats-container {
    position: absolute;
    bottom: -2rem;
    left: 2rem;
    right: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

@media (max-width: 1200px) {
    .cta-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-description {
        max-width: 100%;
    }

    .stats-container {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 2rem;
    }

    .image-container {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 5rem 0;
    }

    .cta-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 2.2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

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

    .stat-box {
        padding: 1.2rem;
    }

    .stat-value {
        font-size: 2rem;
    }
}

/* Page Header */
.page-header {
    position: relative;
    padding: calc(var(--header-height) + 3rem) 0 5rem;
    background-color: var(--primary-transparent);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--primary);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.05;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 60%;
    background-color: var(--primary);
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
    opacity: 0.03;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.page-subtitle {
    font-family: var(--font-alt);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary);
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.breadcrumb-item {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.breadcrumb-item a {
    color: var(--primary);
}

.breadcrumb-separator {
    color: var(--dark-gray);
}

/* About Hero Section */
.about-hero {
    position: relative;
    padding: 5rem 0;
    background-color: var(--light);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-content {
    position: relative;
}

.about-hero-subtitle {
    position: relative;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--primary);
    display: inline-block;
    padding-bottom: 0.8rem;
    font-family: var(--font-alt);
}

.about-hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary);
}

.about-hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.about-hero-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.about-hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--accent);
    opacity: 0.3;
    z-index: -1;
}

.about-hero-description {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.about-hero-image {
    position: relative;
    z-index: 1;
}

.about-hero-image-inner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.about-hero-image-inner:hover {
    transform: perspective(1000px) rotateY(0);
}

.about-hero-image-inner img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-hero-image-inner:hover img {
    transform: scale(1.05);
}

.about-hero-badge {
    position: absolute;
    background-color: var(--primary);
    color: var(--light);
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    bottom: 30px;
    right: -20px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    z-index: 2;
}

/* Our Story Section */
.our-story-section {
    position: relative;
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.story-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.2;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 2rem);
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 2rem);
}

.timeline-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow);
}

.timeline-content {
    background-color: var(--light);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.timeline-year {
    position: absolute;
    top: -15px;
    background-color: var(--primary);
    color: var(--light);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-item:nth-child(odd) .timeline-year {
    right: 20px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: 20px;
}

.timeline-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.timeline-text {
    font-size: 1rem;
    line-height: 1.7;
}

/* Our Values Section */
.values-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background-color: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-transparent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background-color: var(--primary);
}

.value-icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    transition: var(--transition);
}

.value-card:hover .value-icon svg {
    stroke: var(--light);
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.value-text {
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Team Section */
.team-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    place-content: center;
    place-items: center;
}

.team-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    position: relative;
    overflow: hidden;
    width: 150%;
    height: 100%;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-content {
    padding: 1.5rem;
    text-align: center;
    border-top: 3px solid var(--primary);
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.team-position {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: var(--primary-transparent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    transition: var(--transition);
}

.social-link:hover svg {
    stroke: var(--light);
}

/* Achievements Section */
.achievements-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--light);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.achievement-card {
    background-color: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-transparent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.achievement-icon svg {
    width: 35px;
    height: 35px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.achievement-text {
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.4;
}

/* Contact Info Section */
.contact-info-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--light);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-info-card {
    background-color: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-transparent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    background-color: var(--primary);
}

.contact-info-icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon svg {
    stroke: var(--light);
}

.contact-info-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact-info-text {
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.contact-info-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
    display: inline-block;
    margin-top: auto;
}

.contact-info-link:hover {
    color: var(--primary-dark);
}

.contact-info-address {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    font-style: normal;
    margin-top: auto;
}

/* Contact Form Section */
.contact-form-section {
    position: relative;
    padding: 5rem 0;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-form-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.contact-form-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--dark-gray);
}

.contact-form-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contact-form-container {
    background-color: var(--light);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-transparent);
}

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

/* Map Section */
.map-section {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Office Hours Section */
.office-hours-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--light);
}

.office-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.office-hours-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.office-hours-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--dark-gray);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}

.day {
    font-weight: 600;
    color: var(--dark);
}

.time {
    color: var(--primary);
    font-weight: 600;
}

.office-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.office-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.office-image:hover img {
    transform: scale(1.05);
}

/* FAQ Section */


/* FAQ Styles */
.faq-section {
    padding: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-header:hover {
    background-color: #f8f8f8;
}

.faq-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 24px;
    color: #666;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-content {
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-content {
    height: auto;
    opacity: 1;
    visibility: visible;
    padding: 0 20px 20px;
}

.faq-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--dark);
    padding: 5rem 0 0;
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    opacity: 0.95;
}

.footer-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-newsletter {
    max-width: 500px;
}

.footer-about-text,
.footer-tagline,
.cta-description {
    color: rgba(255, 255, 255, 0.8) !important;
}

.newsletter-title {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    background-color: var(--accent);
    color: var(--dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    color: var(--light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

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

.footer-menu li,
.footer-contact li {
    margin-bottom: 1rem;
}

.footer-menu a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-menu a:hover,
.footer-contact a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--light);
    transition: var(--transition);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-bottom-links a:hover {
    color: var(--accent);
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .footer-brand,
    .footer-newsletter {
        max-width: 100%;
    }
}

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


    .footer {
        padding: 4rem 0 0;
    }

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

    .team-card,
    .newsletter-form {
        flex-direction: column;
    }

    .team-image {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-top {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .footer-logo {
        font-size: 1.8rem;
    }

    .newsletter-title {
        font-size: 1.3rem;
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    top: -150px;
    right: 0;
    background-color: var(--light);
    color: var(--dark);
    padding: 0.8rem 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--light);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .back-to-top {
        bottom: 20px;
        right: 80px;
        width: 40px;
        height: 40px;
    }
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.zoom-in.active {
    opacity: 1;
    transform: scale(1);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .page-title {
        font-size: 3rem;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .about-hero-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-right: 0;
        padding-left: 3rem;
    }

    .timeline-marker {
        left: 0;
        transform: none;
    }

    .story-timeline::before {
        left: 15px;
        transform: none;
    }

    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        left: 20px;
        right: auto;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .office-hours-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .office-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .about-hero-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .about-hero-subtitle {
        text-align: center;
        display: block;
    }

    .about-hero-subtitle::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-hero-description {
        text-align: center;
        font-size: 1rem;
    }

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

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

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

    .footer-top,
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .newsletter-form {
        justify-content: flex-start;
    }

    .footer-col {
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-title {
        font-size: 1.3rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }

    .value-icon svg {
        width: 30px;
        height: 30px;
    }

    .value-title {
        font-size: 1.3rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .contact-form-title {
        font-size: 2rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}