@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Barlow:wght@300;400;500;600;700&family=Heebo:wght@300;400&display=swap');

:root {
    --accent-color: #00BCD4;
    --accent-light: #ACE9F1;
    --accent-bg: #E0F7FA;
    --dark-color: #212121;
    --light-color: #FFFFFF;
    --section-gray: #F5F7FA;
    --white-color: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.7);
    --heading-font: 'Inter', sans-serif;
    --body-font: 'Barlow', sans-serif;
    --footer-font: 'Heebo', sans-serif;
}

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

body {
    font-family: var(--body-font);
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    background-color: var(--white-color);
}

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

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

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

ul {
    list-style: none;
}

/* --- Typography (Earwyn System) --- */
h1, h2, h3, h4, h5 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
}

h1 { font-size: 68px; }
h2 { font-size: 48px; }
h3 { font-size: 36px; }
h4 { font-size: 27px; }
h5 { font-size: 19px; }

h6 {
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
    color: var(--accent-color);
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 0.5rem;
    display: block;
}

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

/* --- Buttons (Earwyn pill shape) --- */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--accent-light);
    color: var(--dark-color);
    border: none;
    border-radius: 30px;
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 24px;
    font-size: 13px;
    letter-spacing: 1.5px;
}

/* --- Header / Navigation (Earwyn style) --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    padding: 0;
    background: var(--white-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
}

.site-header.scrolled {
    background: var(--white-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.site-header > .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.main-nav {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    min-height: 70px;
}

.logo {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: 1px;
    z-index: 9998;
    position: relative;
    padding-left: 30px;
}

.logo:hover {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.nav-links > li > a {
    color: var(--dark-color);
    padding: 24px 0;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    display: block;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
    width: 100%;
}

/* Social icons area (right side of nav) — Earwyn dark strip */
.nav-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    padding: 0 30px 0 40px;
    align-self: stretch;
    position: relative;
    overflow: visible;
}

.nav-social::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--dark-color);
    clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
}

.nav-social a {
    color: var(--accent-color);
    font-size: 16px;
    transition: color 0.3s ease, opacity 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-social a:hover {
    color: var(--white-color);
    opacity: 1;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
    min-width: 220px;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 24px;
    color: var(--dark-color);
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown li a:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
}

/* Hamburger */
.menu-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hamburger-menu {
    display: none;
}

.mobile-cta {
    display: none;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    z-index: 1;
    color: var(--white-color);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: var(--heading-font);
    font-size: 68px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-content p {
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-content .cta-button {
    background-color: var(--accent-light);
    color: var(--dark-color);
}

.hero-content .cta-button:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
}

/* --- Stats Bar --- */
.stats-bar {
    background-color: var(--dark-color);
    padding: 40px 0;
}

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

.stat-item .stat-number {
    font-family: var(--heading-font);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 5px;
}

.stat-item .stat-label {
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Intro Section --- */
.intro {
    background-color: var(--white-color);
}

.intro h2 {
    text-align: center;
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.intro p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

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

/* --- Activity & Branch Cards (Earwyn style) --- */
.grid-item {
    background-color: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Activity card inner content */
.card-content {
    padding: 1.5rem 2rem 2rem;
}

.grid-item h3 {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.grid-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.activity-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
}

.activity-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.activity-price {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

/* --- Branch Cards --- */
.branch-card {
    background-color: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.branch-card h3 {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.branch-card p {
    margin-bottom: 0.6rem;
    line-height: 1.6;
    font-size: 15px;
    color: #666;
}

/* --- Activities Section --- */
.activities {
    background-color: var(--section-gray);
}

/* --- Branches Section --- */
.branches {
    background-color: var(--white-color);
}

/* --- Features Section (Earwyn light teal bg) --- */
.features {
    background-color: var(--accent-bg);
    color: var(--dark-color);
}

.features .section-title {
    color: var(--dark-color);
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h3 {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.feature-item p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* --- Footer (Earwyn dark style + background image) --- */
.site-footer {
    background: url('../img/footer-bg.jpg') center center / cover no-repeat;
    color: var(--white-color);
    padding: 0;
    font-family: var(--footer-font);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(33, 33, 33, 0.9);
    z-index: 0;
}

.site-footer > .container {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 40px;
}

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

.footer-col h4 {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--white-color);
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    font-family: var(--footer-font);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-col p {
    font-family: var(--footer-font);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-col p a {
    color: var(--accent-color);
}

.footer-col p a:hover {
    color: var(--accent-light);
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-color);
    color: var(--white-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--footer-font);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Testimonials --- */
.testimonials {
    background-color: var(--white-color);
}

.testimonial-card {
    background-color: var(--section-gray);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-family: var(--heading-font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-text {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    font-style: italic;
}

/* =========================================
   RESPONSIVE
   ========================================= */

/* TABLET (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }

    h1 { font-size: 51px; }
    h2 { font-size: 38px; }
    h3 { font-size: 30px; }
    h4 { font-size: 23px; }
    h5 { font-size: 17px; }
    h6 { font-size: 12px; }
    body { font-size: 15px; }

    .section-title {
        font-size: 38px;
    }

    .hero-content h1 {
        font-size: 51px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .intro h2 {
        font-size: 38px;
    }

    .intro p {
        font-size: 16px;
    }

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

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

    .main-nav {
        grid-template-columns: auto 1fr auto;
    }

    .nav-links {
        gap: 25px;
    }
}

/* TABLET MENU (992px ve altı) */
@media (max-width: 992px) {
    .site-header {
        padding: 0;
        overflow: visible;
    }

    .site-header > .container {
        padding: 0 5%;
    }

    .main-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 60px;
    }

    /* Earwyn: Menü üstten aşağı açılır */
    .menu-container {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        z-index: 9997;
    }

    .menu-toggle:checked ~ .menu-container,
    .menu-container.active {
        max-height: 500px;
        overflow-y: auto;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 10px 0;
    }

    .nav-links > li {
        width: 100%;
        text-align: left;
        padding: 0;
        border-bottom: 1px solid #eee;
    }

    .nav-links > li:last-child {
        border-bottom: none;
    }

    .nav-links > li > a {
        color: var(--dark-color);
        font-family: var(--body-font);
        font-size: 16px;
        font-weight: 500;
        display: block;
        padding: 14px 20px;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .nav-links > li > a::after {
        display: none;
    }

    .nav-links > li > a:hover,
    .nav-links > li > a.active {
        background-color: var(--accent-color);
        color: var(--white-color);
    }

    .dropdown {
        position: static;
        display: none;
        background-color: var(--white-color);
        box-shadow: none;
        padding: 0;
        border: none;
        width: 100%;
        border-radius: 0;
    }

    .has-dropdown > a::after {
        content: ' ▾';
    }

    .has-dropdown.active .dropdown {
        display: block;
    }

    .dropdown li a {
        color: var(--dark-color);
        padding: 12px 20px 12px 40px;
        font-size: 15px;
        font-weight: 400;
        border-bottom: 1px solid #f5f5f5;
    }

    .dropdown li a:hover {
        background-color: var(--accent-color);
        color: var(--white-color);
    }

    .desktop-cta {
        display: none;
    }

    .nav-social {
        display: none !important;
    }

    .mobile-cta {
        display: none;
    }

    /* Earwyn: Sağ üst siyah köşe + hamburger — keskin diagonal */
    .hamburger-menu {
        display: grid;
        grid-template-columns: repeat(3, 5px);
        grid-template-rows: repeat(3, 5px);
        gap: 3px;
        width: 60px;
        height: 60px;
        cursor: pointer;
        z-index: 10001;
        position: absolute;
        right: 0;
        top: 0;
        background-color: var(--dark-color);
        justify-content: center;
        align-content: center;
        clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%);
        border-radius: 0;
    }

    .hamburger-menu span {
        display: block;
        width: 5px;
        height: 5px;
        background-color: var(--accent-color);
        border-radius: 50%;
        transition: all 0.3s ease-in-out;
    }

    /* 3 span -> 9 dot: ilk 3 span göster, CSS ile ek dotları :before/:after ile oluştur */
    .hamburger-menu span:nth-child(1),
    .hamburger-menu span:nth-child(2),
    .hamburger-menu span:nth-child(3) {
        position: relative;
    }

    .hamburger-menu span:nth-child(1)::before,
    .hamburger-menu span:nth-child(1)::after {
        content: '';
        position: absolute;
        width: 5px;
        height: 5px;
        background-color: var(--accent-color);
        border-radius: 50%;
    }

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

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

    .hamburger-menu span:nth-child(2)::before,
    .hamburger-menu span:nth-child(2)::after {
        content: '';
        position: absolute;
        width: 5px;
        height: 5px;
        background-color: var(--accent-color);
        border-radius: 50%;
    }

    .hamburger-menu span:nth-child(2)::before {
        top: 8px;
        left: 0;
    }

    .hamburger-menu span:nth-child(2)::after {
        top: 16px;
        left: 0;
    }

    .hamburger-menu span:nth-child(3)::before,
    .hamburger-menu span:nth-child(3)::after {
        content: '';
        position: absolute;
        width: 5px;
        height: 5px;
        background-color: var(--accent-color);
        border-radius: 50%;
    }

    .hamburger-menu span:nth-child(3)::before {
        top: 8px;
        left: 0;
    }

    .hamburger-menu span:nth-child(3)::after {
        top: 16px;
        left: 0;
    }

    /* Açıkken X'e dönüşsün — siyah köşe korunur */
    .menu-toggle:checked + .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        gap: 0;
        background-color: var(--dark-color);
        clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%);
        border-radius: 0;
        position: absolute;
        right: 0;
        top: 0;
    }

    .menu-toggle:checked + .hamburger-menu span {
        width: 20px;
        height: 2px;
        border-radius: 2px;
        background-color: var(--accent-color);
    }

    .menu-toggle:checked + .hamburger-menu span:nth-child(1) {
        transform: rotate(45deg) translate(1px, 1px);
    }

    .menu-toggle:checked + .hamburger-menu span:nth-child(1)::before,
    .menu-toggle:checked + .hamburger-menu span:nth-child(1)::after,
    .menu-toggle:checked + .hamburger-menu span:nth-child(2)::before,
    .menu-toggle:checked + .hamburger-menu span:nth-child(2)::after,
    .menu-toggle:checked + .hamburger-menu span:nth-child(3)::before,
    .menu-toggle:checked + .hamburger-menu span:nth-child(3)::after {
        display: none;
    }

    .menu-toggle:checked + .hamburger-menu span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked + .hamburger-menu span:nth-child(3) {
        transform: rotate(-45deg) translate(1px, -1px);
    }

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

/* MOBİL (767px ve altı) */
@media (max-width: 767px) {
    h1 { font-size: 39px; }
    h2 { font-size: 29px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
    h5 { font-size: 16px; }
    h6 { font-size: 11px; }
    body { font-size: 14px; }

    .container {
        width: 95%;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 29px;
        margin-bottom: 1rem;
    }

    .site-header {
        padding: 0;
    }

    .logo {
        font-size: 1.3rem;
    }

    .hero {
        height: 80vh;
        margin-top: 60px;
    }

    .hero-content h1 {
        font-size: 39px;
        margin-bottom: 0.8rem;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 13px;
    }

    .intro h2 {
        font-size: 29px;
        margin-bottom: 1rem;
    }

    .intro p {
        font-size: 15px;
    }

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

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

    .stat-item .stat-number {
        font-size: 28px;
    }

    .stat-item .stat-label {
        font-size: 12px;
    }

    .grid-item h3 {
        font-size: 20px;
    }

    .activity-price {
        font-size: 18px;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-item h3 {
        font-size: 18px;
    }

    .feature-item p {
        font-size: 14px;
    }

    .branch-card h3 {
        font-size: 20px;
    }

    .branch-card p {
        font-size: 14px;
    }

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

    .footer-col {
        text-align: center;
    }

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

/* KÜÇÜK MOBİL (479px ve altı) */
@media (max-width: 479px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .logo {
        font-size: 1.1rem;
    }

    .hero {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .stats-bar {
        padding: 30px 0;
    }

    .stat-item .stat-number {
        font-size: 24px;
    }

    .stat-item .stat-label {
        font-size: 11px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 12px;
    }
}
