/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700&family=Outfit:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #1F4A36;
    --primary-dark: #123524;
    --accent-color: #D4AF37;
    /* Gold */
    --text-light: #F5F2E9;
    --text-dark: #333333;
    --bg-light: #FDFBF7;
    /* Light Beige */
    --card-bg: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* ARKA PLAN */
body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* KAPSAYICI */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
header {
    background-color: rgba(31, 74, 54, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    max-width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: white;
    padding: 5px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

/* HERO SECTION */
.hero {
    width: 100%;
    height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('bg2.JPG');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    /* Ensure positioning context for pseudo-element */
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #1F4A36);
    pointer-events: none;
}

.hero-overlay {
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    background-color: #e5c14d;
}

/* PRODUCTS PREVIEW */
.products-preview {
    padding: 80px 0;
    text-align: center;
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, #1F4A36 0%, #123524 100%);
    color: white;
}

.products-preview h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 50px;
    font-family: 'Outfit', sans-serif;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    flex: 1 1 300px;
    max-width: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    height: 400px;
    /* Fixed height for consistency */
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

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

.product-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
    transform: translateY(0);
}

.product-card:hover h3 {
    background: rgba(31, 74, 54, 0.8);
    /* Dark green overlay on hover */
    padding-bottom: 30px;
}

/* FEATURES SECTION */
.features {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-card {
    flex: 1 1 300px;
    max-width: 400px;
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

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

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: rgba(31, 74, 54, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

#modal-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
}

/* FOOTER */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    /* For transition overlay */
}

/* Gradient Transition from Press to Footer - REMOVED */
/* footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, #0a1f15, #123524);
    z-index: 1;
} */

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    /* Ensure content is above gradient */
}

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.footer-brand p {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 20px;
}

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

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

.copyright {
    text-align: center;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: var(--transition);
}

/* ANIMATIONS */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* CONTACT FORM */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

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

/* PHOTO ICONS */
.icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background-color: #fff;
}

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

.feature-card:hover .icon img {
    transform: scale(1.1);
}

/* SVG Styles Removed */

/* FOOTER POLISH */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
}

.footer-subscribe {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.footer-subscribe input {
    padding: 10px;
    border-radius: 6px;
    border: none;
    flex: 1;
}

.footer-subscribe button {
    padding: 10px 20px;
    background: var(--accent-color);
    border: none;
    border-radius: 6px;
    color: var(--primary-dark);
    font-weight: 600;
    cursor: pointer;
}

/* RESPONSIVE */
/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    background-color: #e5c14d;
}

/* HOVER EFFECTS */
.feature-card,
.founder-images img,
.logo-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.founder-images img:hover {
    transform: scale(1.03);
}

.founder-name {
    font-family: 'Playfair Display', serif;
    color: #356b53;
    /* Default Green */
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-align: center;
}

/* FOUNDER PAGE DARK THEME */
body.founder-page-bg {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, #1F4A36 0%, #123524 100%);
    color: white;
}

body.founder-page-bg .founder-name {
    color: white;
}

/* CONTACT PAGE REDESIGN */
.contact-header {
    background-color: #356b53;
    /* Darker Green */
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.contact-header h1 {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.dual-map-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.map-frame {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border: 4px solid #2e5d42;
    /* Darker green border */
    border-radius: 4px;
}

.contact-info-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
    /* Use the light beige theme */
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.press-card {
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.contact-col {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    /* Align text to left for better list readability */
}

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

.contact-col h2 {
    color: #356b53;
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
    /* Keep headers centered */
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

/* Contact List Styles */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Ensure left alignment */
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
    text-align: left;
    /* Ensure text inside is left aligned */
}

.contact-list li span:not(.icon),
.contact-list li a {
    flex: 1;
    /* Allow text to take remaining space */
}

.contact-list .icon {
    font-size: 1.5rem;
    background: #e8f5e9;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-list a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: #356b53;
}

/* Hours List Styles */
.hours-list {
    list-style: none;
    padding: 0;
}

/* FOUNDER BIO CARD */
.founder-bio-card {
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    overflow: hidden;
    border: none;
    /* Remove the border from dark theme */
}

.founder-bio-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 200px;
    color: rgba(53, 107, 83, 0.05);
    /* Very subtle green quote */
    line-height: 1;
}

.bio-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.bio-text strong {
    color: #555;
    /* Same as paragraph */
    font-weight: 600;
}

.drop-cap {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #555;
    /* Same as paragraph */
}

.bio-footer {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.separator {
    width: 60px;
    height: 3px;
    background-color: #c5a059;
    /* Gold accent */
    border-radius: 2px;
}

.signature-block {
    text-align: center;
}

.signature-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #356b53;
    /* Keep signature green */
    font-style: italic;
    margin-bottom: 5px;
}

/* FACILITY MODAL STYLES */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    /* High z-index to sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    /* Black w/ opacity */
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    z-index: 10;
    cursor: pointer;
    transition: color 0.2s;
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    background: white;
}

.modal-body {
    display: flex;
    flex-direction: column;
}

.modal-image-wrapper {
    width: 100%;
    height: 400px;
    background-color: #f0f0f0;
}

.modal-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-text {
    padding: 40px;
}

#modal-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

#modal-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Make feature cards clickable */
.feature-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

@media (min-width: 768px) {
    .modal-body {
        flex-direction: row-reverse;
    }

    .modal-image-wrapper {
        width: 50%;
        height: auto;
        min-height: 400px;
    }

    /* PRESS SECTION */
    .press-section {
        background: linear-gradient(to bottom, rgba(10, 31, 21, 0) 0%, #0a1f15 150px, #0a1f15 100%);
        /* Transparent to Dark Green */
        padding: 120px 20px 80px;
        /* Increased top padding for transition */
        color: white;
        position: relative;
    }

    /* Upward Light Green Gradient */
    .press-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 200px;
        background: linear-gradient(to top, rgba(53, 107, 83, 0.4), transparent);
        pointer-events: none;
        z-index: 1;
    }

    /* Gradient Transition from Founder Bio to Press - REMOVED as it's now in the background */

    .press-grid {
        position: relative;
        z-index: 2;
        /* Ensure content is above gradient */
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .press-card {
        background: rgba(255, 255, 255, 0.05);
        /* Subtle transparent bg */
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .press-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.1);
    }

    .press-img {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

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

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

    .press-content {
        padding: 25px;
    }

    .press-content h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        line-height: 1.4;
        color: #fff;
        font-weight: 600;
    }

    .press-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #ccc;
    }

    .press-card-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .modal-text {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.signature-title {
    display: block;
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    color: #555;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:first-child {
    font-weight: 600;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    /* ... rest of responsive styles ... */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }

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

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

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

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

/* ABOUT US SECTION */
.about-us {
    padding: 140px 0;
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, #1F4A36 0%, #123524 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    color: white;
}

.about-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.about-content {
    text-align: center;
    position: relative;
    padding: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-content::before {
    content: '“';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    color: var(--accent-color);
    opacity: 0.15;
    font-family: serif;
    line-height: 1;
}

.section-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
    font-family: 'Outfit', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 6px;
    background-color: var(--accent-color);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.about-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 300;
    border-left: none;
    padding-left: 0;
    font-family: 'Outfit', sans-serif;
}

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

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

    .about-content {
        padding: 40px 20px;
    }

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

    .about-content p {
        font-size: 1.15rem;
    }

    .about-content::before {
        font-size: 80px;
        top: -30px;
    }
}

/* ANIMATED STATISTICS */
.stats-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
    font-size: 2rem;
    vertical-align: super;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1.2rem;
    color: #555;
    font-weight: 500;
}