* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --accent-red: #ff4655;
    --accent-orange: #ff6b35;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --gradient-primary: linear-gradient(135deg, #ff4655 0%, #ff6b35 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== PREMIUM NAVIGATION ===== */
.premium-navbar {
    background: rgba(10, 10, 10, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-navbar.scrolled {
    background: rgba(10, 10, 10, 0.98) !important;
    padding: 0.8rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.premium-navbar .navbar-brand {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    letter-spacing: 3px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.premium-navbar .navbar-brand:hover {
    transform: scale(1.02);
}

.premium-navbar .brand-text {
    color: var(--text-white);
    font-weight: 400;
}

.premium-navbar .brand-highlight {
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-navbar .navbar-nav {
    gap: 0.5rem;
}

.premium-navbar .nav-link {
    color: var(--text-gray) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem !important;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.premium-navbar .nav-link:hover {
    color: var(--text-white) !important;
    background: rgba(255, 255, 255, 0.05);
}

.premium-navbar .nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 10px;
}

.premium-navbar .nav-link:hover::before {
    width: 60%;
}

/* CTA Button in Navbar */
.nav-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 70, 85, 0.4);
}

.nav-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 70, 85, 0.6);
    color: var(--text-white);
}

.nav-cta-button i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-cta-button:hover i {
    transform: translateX(4px);
}

/* Custom Hamburger Menu */
.premium-navbar .navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent !important;
    box-shadow: none !important;
}

.premium-navbar .navbar-toggler:focus {
    box-shadow: none !important;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    width: 100%;
}

.hamburger span:nth-child(2) {
    width: 70%;
}

.hamburger span:nth-child(3) {
    width: 85%;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
    width: 100%;
}

/* Mobile Menu */
@media (max-width: 991px) {
    .premium-navbar .navbar-collapse {
        background: rgba(15, 15, 15, 0.98);
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .premium-navbar .navbar-nav {
        gap: 0;
    }

    .premium-navbar .nav-link {
        padding: 1rem !important;
        border-radius: 10px;
    }

    .nav-cta-button {
        margin: 1rem 0 0 0;
        justify-content: center;
        width: 100%;
    }
}

/* ===== HERO SECTION WITH SWIPER ===== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--primary-black);
    /* SIYAH ARKA PLAN */
}

.hero-swiper {
    width: 100%;
    height: 100vh;
    background: var(--primary-black);
    /* SIYAH ARKA PLAN */
}

.swiper-slide {
    display: flex;
    align-items: center;
    position: relative;
    background: var(--primary-black);
    /* SIYAH ARKA PLAN */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    background: var(--gradient-primary);
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) rotate(120deg);
    }

    66% {
        transform: translateY(30px) rotate(240deg);
    }
}

.hero-shape.shape-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.hero-shape.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
    animation-delay: 7s;
}

.hero-shape.shape-3 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 0;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--text-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(255, 70, 85, 0.5);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 70, 85, 0.8);
    color: var(--text-white);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.1) 0%, rgba(255, 140, 50, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 70, 85, 0.4);
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 60px rgba(255, 70, 85, 0.3),
        0 0 120px rgba(255, 70, 85, 0.15),
        inset 0 0 60px rgba(255, 70, 85, 0.1);
    animation: heroGlow 4s ease-in-out infinite alternate;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange), var(--accent-red));
    z-index: -1;
    animation: rotateBorder 8s linear infinite;
    opacity: 0.5;
}

@keyframes heroGlow {
    0% {
        box-shadow:
            0 0 60px rgba(255, 70, 85, 0.3),
            0 0 120px rgba(255, 70, 85, 0.15),
            inset 0 0 60px rgba(255, 70, 85, 0.1);
        transform: scale(1);
    }

    100% {
        box-shadow:
            0 0 80px rgba(255, 70, 85, 0.5),
            0 0 160px rgba(255, 70, 85, 0.25),
            inset 0 0 80px rgba(255, 70, 85, 0.15);
        transform: scale(1.02);
    }
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.image-placeholder i {
    font-size: 8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 70, 85, 0.6));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ===== SWIPER NAVIGATION - UPDATED ===== */
/* Okları içe al */
.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-red) !important;
    background: rgba(255, 255, 255, 0.1);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Okları container içinde tut */
.swiper-button-prev {
    left: 100px !important;
    /* İçe aldık */
}

.swiper-button-next {
    right: 100px !important;
    /* İçe aldık */
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--gradient-primary);
    box-shadow: 0 0 20px rgba(255, 70, 85, 0.6);

    &::after {
        color: var(--text-white);
    }
}

/* ===== SWIPER PAGINATION - ÇİZGİ YAPISI ===== */
.swiper-pagination {
    bottom: 50px !important;
    top: auto !important;
    /* ALTA TAŞINDI - 50PX */
}

/* Pagination çizgi */
.swiper-pagination-progressbar {
    background: rgba(255, 255, 255, 0.2) !important;
    height: 3px !important;
    width: 200px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-radius: 10px !important;
}

.swiper-pagination-progressbar-fill {
    background: var(--gradient-primary) !important;
    border-radius: 10px !important;
}

/* Eğer bullet kullanacaksak (fallback) */
.swiper-pagination-bullet {
    background: var(--text-white) !important;
    opacity: 0.5 !important;
    width: 40px !important;
    height: 3px !important;
    border-radius: 10px !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent-red) !important;
    opacity: 1 !important;
    width: 60px !important;
}

/* ===== ABOUT SECTION - EXPANDED ===== */
.about {
    padding: 8rem 0;
    background: var(--secondary-black);
}

.about .section-title.centered {
    text-align: center;
}

.about .section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .about .section-subtitle {
        margin-bottom: 2.5rem;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

/* Profile Section */
.profile-large {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    text-align: center;
}

.profile-image-wrapper {
    width: 250px;
    height: 250px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #4a4a4a;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.profile-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-image-wrapper i {
    font-size: 6rem;
    color: rgba(160, 160, 160, 0.7);
}

.profile-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-info>p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.certifications span {
    background: rgba(255, 70, 85, 0.1);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-gray);
    border: 1px solid rgba(255, 70, 85, 0.3);
}

.certifications i {
    color: var(--accent-red);
    margin-right: 0.5rem;
}

/* Story Section */
.about-story h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-story p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-story strong {
    color: var(--accent-red);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 70, 85, 0.5);
    box-shadow: 0 10px 30px rgba(255, 70, 85, 0.2);
}

.stat-card .stat-icon {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Expertise Section */
.expertise-section h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 70, 85, 0.5);
    box-shadow: 0 10px 30px rgba(255, 70, 85, 0.2);
}

.expertise-card i {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
    display: block;
}

.expertise-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-white);
}

.expertise-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== PACKAGES SECTION - DENGELENMIS ===== */
.packages {
    padding: 8rem 0;
    background: var(--primary-black);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    /* TÜM KARTLAR AYNI YÜKSEKLİKTE */
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 70, 85, 0.5);
    box-shadow: 0 10px 50px rgba(255, 70, 85, 0.2);
}

/* Popular kart artık scale edilmiyor - sadece border */
.package-card.popular {
    border: 2px solid var(--accent-red);
    box-shadow: 0 0 50px rgba(255, 70, 85, 0.3);
}

.package-card.popular:hover {
    transform: translateY(-10px);
    /* scale kaldırıldı */
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 2rem;
}

.package-price .currency {
    font-size: 1.5rem;
    color: var(--accent-red);
}

.package-price .amount {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-price .period {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
    /* Buton alta yaslanacak */
}

.package-features li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.package-features i {
    color: var(--accent-red);
    font-size: 0.9rem;
}

.package-button {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    /* Link için */
    display: block;
    /* Link için */
    text-align: center;
    /* Link için */
}

.package-button:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-white);
    box-shadow: 0 0 20px rgba(255, 70, 85, 0.5);
    transform: translateY(-2px);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 8rem 0;
    background: var(--secondary-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
    margin-left: -1rem;
}

.contact-item:hover {
    background: rgba(255, 70, 85, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-red);
    margin-top: 0.3rem;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--text-white);
}

.contact-item p {
    color: var(--text-gray);
}

.contact-item div p {
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(255, 70, 85, 0.5);
    color: var(--text-white);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 20px rgba(255, 70, 85, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(255, 70, 85, 0.4);
}

.form-button:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 70, 85, 0.7);
}

.form-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===== PREMIUM FOOTER ===== */
.premium-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    letter-spacing: 3px;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.footer-logo .brand-text {
    color: var(--text-white);
    font-weight: 400;
}

.footer-logo .brand-highlight {
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.footer-brand .footer-social-links {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 70, 85, 0.4);
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--accent-red);
    transform: translateX(5px);
}

.footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-contact li a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--accent-red);
    transform: translateX(5px);
}

.footer-contact i {
    color: var(--accent-red);
    font-size: 0.9rem;
    width: 16px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-copyright p {
    color: rgba(160, 160, 160, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-copyright span {
    color: var(--accent-red);
    font-weight: 600;
}

.footer-credits p {
    color: rgba(160, 160, 160, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-credits i {
    color: var(--accent-red);
    margin: 0 3px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-brand .footer-social-links {
        justify-content: center;
    }

    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ===== TRANSFORMATIONS SECTION ===== */
.transformations {
    padding: 8rem 0;
    background: var(--primary-black);
}

.transformations-swiper {
    padding-bottom: 50px;
}

.transformation-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.before-image,
.after-image {
    width: 150px;
    height: 180px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.before-image:hover,
.after-image:hover {
    border-color: rgba(255, 70, 85, 0.5);
}

.before-image .label,
.after-image .label {
    position: absolute;
    top: -12px;
    background: var(--gradient-primary);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.before-image i,
.after-image i {
    font-size: 4rem;
    color: var(--text-gray);
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.after-image {
    border-color: rgba(255, 70, 85, 0.3);
}

.after-image i {
    color: var(--accent-red);
}

.arrow-divider {
    font-size: 2rem;
    color: var(--accent-red);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.transformation-info {
    text-align: left;
}

.transformation-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.transformation-info .duration {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.transformation-info .duration i {
    color: var(--accent-red);
    margin-right: 0.5rem;
}

.transformation-info .result {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.transformation-info .result strong {
    color: var(--accent-red);
}

.transformation-info .quote {
    font-style: italic;
    color: var(--text-gray);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid var(--accent-red);
}

.transformations-pagination {
    bottom: 0 !important;
}

/* ===== PROCESS SECTION ===== */
.process {
    padding: 8rem 0;
    background: var(--secondary-black);
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    max-width: 220px;
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 1.5rem auto 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 70, 85, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--accent-red);
}

.process-step:hover .step-icon {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 0 30px rgba(255, 70, 85, 0.5);
}

.process-step:hover .step-icon i {
    color: var(--text-white);
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-white);
}

.process-step p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 4rem;
    color: var(--accent-red);
    font-size: 1.5rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 8rem 0;
    background: var(--primary-black);
}

.testimonials-swiper {
    padding-bottom: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonials-swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 3rem;
    color: var(--accent-red);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
    margin-top: 1rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-red);
}

.author-avatar i {
    font-size: 2rem;
    color: var(--accent-red);
}

.author-info h5 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-white);
}

.author-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.stars i {
    margin-right: 2px;
}

/* Testimonials Navigation Arrows */
.testimonials-swiper {
    position: relative;
    padding-left: 60px;
    padding-right: 60px;
}

.testimonials-prev,
.testimonials-next {
    color: var(--accent-red) !important;
    background: rgba(255, 255, 255, 0.1);
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonials-prev {
    left: 0 !important;
}

.testimonials-next {
    right: 0 !important;
}

.testimonials-prev:after,
.testimonials-next:after {
    font-size: 16px !important;
}

.testimonials-prev:hover,
.testimonials-next:hover {
    background: var(--gradient-primary);
    box-shadow: 0 0 20px rgba(255, 70, 85, 0.6);
}

.testimonials-prev:hover:after,
.testimonials-next:hover:after {
    color: var(--text-white);
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 8rem 0;
    background: var(--secondary-black);
}

.faq-container {
    max-width: 100%;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 70, 85, 0.3);
}

.faq-item.active {
    border-color: var(--accent-red);
    box-shadow: 0 5px 30px rgba(255, 70, 85, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
}

.faq-question i {
    color: var(--accent-red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--accent-red);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 5px 40px rgba(37, 211, 102, 0.8);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: #25D366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent transparent #25D366;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 75px;
}

/* ===== COUNTER ANIMATION ===== */
.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .swiper-button-prev {
        left: 50px !important;
    }

    .swiper-button-next {
        right: 50px !important;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-image {
        order: -1;
        display: none;
    }

    .image-placeholder {
        width: 280px;
        height: 280px;
    }

    .image-placeholder i {
        font-size: 5rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.popular {
        transform: scale(1);
    }

    .package-card.popular:hover {
        transform: translateY(-10px);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    .section-title {
        font-size: 2.5rem;
    }

    /* New sections responsive */
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        transform: rotate(90deg);
        padding: 1rem 0;
    }

    .process-step {
        max-width: 100%;
    }

    .before-after {
        flex-direction: column;
        gap: 1rem;
    }

    .arrow-divider {
        transform: rotate(90deg);
    }

    .before-image,
    .after-image {
        width: 200px;
    }

    .transformation-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }

    .transformation-info {
        text-align: center;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .faq-question span {
        font-size: 0.95rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.7rem;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ===== MOBILE BOTTOM NAVIGATION ===== */
/* Default: HIDDEN on desktop */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    padding-bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    min-width: 60px;
    gap: 0.3rem;
}

.bottom-nav-item i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.bottom-nav-item span {
    font-weight: 500;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: var(--accent-red);
}

.bottom-nav-item.active i {
    transform: scale(1.1);
}

/* ===== ENHANCED MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

    /* Prevent horizontal scroll on mobile */
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    /* Container padding for mobile - prevent content clipping */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        max-width: 100% !important;
    }

    /* Show bottom navigation on mobile */
    .mobile-bottom-nav {
        display: flex;
    }

    /* Add padding to body for bottom nav */
    body {
        padding-bottom: 70px;
    }

    /* Move WhatsApp button above bottom nav */
    .whatsapp-float {
        bottom: 90px;
    }

    /* ===== HERO SECTION - KOMPAKT ===== */
    .hero,
    .hero-swiper {
        min-height: 55vh !important;
        height: 55vh !important;
    }

    .hero-content {
        min-height: 55vh !important;
        padding: 1rem 0;
    }

    /* Okları gizle - sadece pagination */
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .image-placeholder {
        width: 150px;
        height: 150px;
    }

    .image-placeholder i {
        font-size: 3.5rem;
    }

    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    /* ===== TÜM BAŞLIKLAR ORTALI ===== */
    .section-title {
        text-align: center !important;
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        text-align: center !important;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .about-story h3 {
        text-align: center !important;
    }

    .expertise-section h3 {
        text-align: center;
    }

    /* ===== AZALTILMIŞ BOŞLUKLAR ===== */
    .about,
    .packages,
    .transformations,
    .testimonials,
    .faq,
    .contact,
    .process {
        padding: 2.5rem 0;
    }

    /* ===== ABOUT SECTION ===== */
    .about-content {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .profile-large {
        padding: 1.2rem;
    }

    .profile-image-wrapper {
        width: 150px;
        height: 150px;
        margin-bottom: 1rem;
    }

    .profile-info h3 {
        font-size: 1.3rem;
    }

    .profile-info>p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .certifications {
        gap: 0.5rem;
    }

    .certifications span {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .about-story {
        padding: 0 1rem;
    }

    .about-story p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    /* Stats Grid - kompakt */
    .stats-grid {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-card .stat-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .stat-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .stat-card p {
        font-size: 0.8rem;
    }

    /* Expertise Grid */
    .expertise-section {
        margin-top: 1rem;
    }

    .expertise-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .expertise-grid {
        gap: 0.8rem;
    }

    .expertise-card {
        padding: 1rem;
    }

    .expertise-card i {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .expertise-card h4 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .expertise-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* ===== TRANSFORMATIONS - TAM GÖRÜNÜR ===== */
    .transformation-card {
        padding: 1rem;
    }

    .before-after {
        gap: 0.5rem;
    }

    .before-image,
    .after-image {
        width: 130px;
    }

    .before-image img,
    .after-image img {
        height: 160px;
    }

    .before-image .label,
    .after-image .label {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }

    .arrow-divider {
        font-size: 1rem;
    }

    .transformation-info {
        padding: 0.5rem 0;
    }

    .transformation-info h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .transformation-info .duration {
        font-size: 0.8rem;
    }

    .transformation-info .result {
        font-size: 0.85rem;
    }

    .transformation-info .quote {
        font-size: 0.85rem;
    }

    /* ===== PROCESS (Nasıl Çalışıyoruz) ===== */
    .process-timeline {
        gap: 0.5rem;
    }

    .process-step {
        padding: 1rem;
    }

    .step-number {
        font-size: 0.8rem;
        width: 24px;
        height: 24px;
    }

    .step-icon {
        width: 45px;
        height: 45px;
    }

    .step-icon i {
        font-size: 1.1rem;
    }

    .process-step h4 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .process-step p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .process-connector {
        padding: 0.3rem 0;
    }

    .process-connector i {
        font-size: 0.8rem;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonial-card {
        padding: 1rem;
    }

    .testimonial-quote i {
        font-size: 1.2rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .testimonial-author {
        gap: 0.8rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
    }

    .author-info h5 {
        font-size: 0.95rem;
    }

    .author-info p {
        font-size: 0.8rem;
    }

    /* ===== FAQ ===== */
    .faq-container {
        gap: 0.5rem;
    }

    .faq-item {
        border-radius: 10px;
    }

    .faq-question {
        min-height: 50px;
        padding: 1rem;
    }

    .faq-question span {
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* ===== PACKAGES - DİKEY LİSTE ===== */
    .packages-grid {
        display: flex;
        flex-direction: column;
        overflow-x: visible;
        scroll-snap-type: none;
        gap: 1rem;
        padding: 0;
    }

    .package-card {
        flex: none;
        width: 100%;
        min-width: auto;
        padding: 1.2rem;
    }

    .package-header h3 {
        font-size: 1.2rem;
    }

    .package-price .amount {
        font-size: 2.2rem;
    }

    .package-price .currency,
    .package-price .period {
        font-size: 0.9rem;
    }

    .package-features {
        margin: 1rem 0;
    }

    .package-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .package-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .popular-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

    /* ===== CONTACT - KOMPAKT FORM ===== */
    .contact-content {
        gap: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .contact-description {
        font-size: 0.9rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .contact-details {
        gap: 0.5rem;
        padding-left: 10px;
    }

    .contact-item {
        padding: 0.8rem;
        min-height: auto;
        gap: 0.8rem;
    }

    .contact-item i {
        font-size: 1.2rem;
    }

    .contact-item h4 {
        font-size: 0.9rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }

    .social-links {
        justify-content: center;
        gap: 0.8rem;
        margin-top: 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Form */
    .contact-form-wrapper {
        margin-top: 1rem;
        padding: 10px 5px;
    }

    .contact-form {
        padding: 1rem;
        border-radius: 12px;
    }

    .form-group {
        margin-bottom: 0.8rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 0.8rem;
        border-radius: 8px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .form-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        min-height: 46px;
    }

    /* ===== FOOTER - KOMPAKT ===== */
    .premium-footer {
        padding: 2rem 0;
    }

    .footer-top {
        gap: 1.5rem;
        flex-direction: column;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 0.8rem;
    }

    .footer-logo .brand-text,
    .footer-logo .brand-highlight {
        font-size: 0.75rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .footer-social-links {
        justify-content: center;
        gap: 0.6rem;
    }

    .footer-social-links a {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        text-align: center;
    }

    .footer-column:nth-child(3) {
        display: none;
    }

    .footer-column h4 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .footer-column ul {
        gap: 0.3rem;
    }

    .footer-column ul li a {
        font-size: 0.8rem;
    }

    .footer-contact li a {
        font-size: 0.75rem;
    }

    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }
}

/* ===== SMALL MOBILE (480px and below) ===== */
@media (max-width: 480px) {

    /* Hero section */
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .image-placeholder {
        width: 180px;
        height: 180px;
    }

    .image-placeholder i {
        font-size: 4rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    /* Stats grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-card h3 {
        font-size: 1.6rem;
    }

    .stat-card p {
        font-size: 0.85rem;
    }

    .stat-card .stat-icon {
        font-size: 2rem;
    }

    /* Profile section */
    .profile-large {
        padding: 1.5rem;
    }

    .profile-image-wrapper {
        width: 180px;
        height: 180px;
    }

    .profile-info h3 {
        font-size: 1.4rem;
    }

    /* Expertise cards */
    .expertise-card {
        padding: 1.5rem 1rem;
    }

    .expertise-card i {
        font-size: 2rem;
    }

    .expertise-card h4 {
        font-size: 1rem;
    }

    /* Package cards - even smaller on tiny screens */
    .package-card {
        flex: 0 0 90%;
        padding: 1.5rem;
    }

    .package-price .amount {
        font-size: 2.5rem;
    }

    /* Process steps */
    .process-step {
        padding: 1.5rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-icon i {
        font-size: 1.2rem;
    }

    /* Transformation cards */
    .before-image,
    .after-image {
        width: 150px;
    }

    .before-image img,
    .after-image img {
        height: 180px;
    }

    /* Testimonial cards */
    .testimonial-card {
        padding: 1.2rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    /* FAQ */
    .faq-question span {
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }

    /* Contact section */
    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-description {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-brand .footer-logo {
        font-size: 0.8rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Bottom nav adjustments */
    .bottom-nav-item {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
        min-width: 50px;
    }

    .bottom-nav-item i {
        font-size: 1.1rem;
    }

    /* WhatsApp button smaller */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 85px;
    }
}

/* ===== TABLET SPECIFIC (768px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Packages grid - 2 columns on tablet */
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About content */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Stats - 4 columns kept */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    /* Expertise - 2 columns */
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}