* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #c41e3a;
    --red-light: #e63950;
    --red-dark: #9a1830;
    --red-darker: #6d1122;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --gray-900: #212529;
    --sahibinden-yellow: #ffb800;
    --sahibinden-dark: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--gray-800);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

.navbar.scrolled .logo { color: var(--gray-900); }
.navbar.scrolled .nav-menu a { color: var(--gray-800); }
.navbar.scrolled .nav-toggle span { background: var(--gray-900); }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 3px;
    transition: color 0.3s;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo span {
    color: var(--red-light);
    font-weight: 500;
    background: linear-gradient(135deg, var(--red-light), var(--sahibinden-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a.nav-btn {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
}

.nav-menu a.nav-btn:hover { 
    color: var(--white);
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

.navbar.scrolled .nav-menu a.nav-btn {
    color: var(--gray-800);
    border: 1px solid var(--gray-300);
    background: var(--gray-100);
}

.navbar.scrolled .nav-menu a.nav-btn:hover {
    color: var(--red);
    background: rgba(196, 30, 58, 0.1);
    border-color: var(--red);
}

.nav-menu-close {
    display: none;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--sahibinden-yellow);
    border-radius: 50px;
    color: var(--sahibinden-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
}

.s-icon-sm {
    width: 20px;
    height: 20px;
    background: var(--sahibinden-dark);
    color: var(--sahibinden-yellow);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--red-darker) 0%, var(--red-dark) 30%, var(--red) 70%, var(--red-light) 100%);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Baloncuklar - Soft */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    filter: blur(1px);
    animation: float 20s ease-in-out infinite;
}

.bubble.b1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 8%;
    animation-duration: 25s;
}

.bubble.b2 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    left: 5%;
    animation-duration: 20s;
    animation-delay: -5s;
}

.bubble.b3 {
    width: 150px;
    height: 150px;
    top: 25%;
    left: 3%;
    animation-duration: 30s;
    animation-delay: -10s;
}

.bubble.b4 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 12%;
    animation-duration: 18s;
    animation-delay: -3s;
}

.bubble.b5 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 40%;
    animation-duration: 22s;
    animation-delay: -8s;
}

.bubble.b6 {
    width: 70px;
    height: 70px;
    top: 70%;
    left: 15%;
    animation-duration: 28s;
    animation-delay: -12s;
}

.bubble.b7 {
    width: 90px;
    height: 90px;
    top: 5%;
    left: 25%;
    animation-duration: 24s;
    animation-delay: -15s;
}

.bubble.b8 {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 25%;
    animation-duration: 16s;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
    }
    25% {
        transform: translate(15px, -20px) scale(1.05);
    }
    50% { 
        transform: translate(-10px, 15px) scale(0.95); 
    }
    75% {
        transform: translate(20px, 10px) scale(1.02);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    margin-bottom: 16px;
}

.title-line {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 6px;
    line-height: 1;
    text-transform: uppercase;
}

.title-line.accent {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), var(--sahibinden-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-slogan {
    font-size: 1.1rem;
    letter-spacing: 8px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    font-weight: 300;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}

.hero-slogan::before,
.hero-slogan::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 2px;
    transform: translateX(-50%) scaleX(0);
    animation: lineExpand 1s ease-out forwards;
}

.hero-slogan::before {
    width: 100px;
    bottom: 8px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation-delay: 0.3s;
}

.hero-slogan::after {
    width: 60px;
    bottom: 0;
    background: linear-gradient(90deg, transparent, var(--sahibinden-yellow), transparent);
    animation-delay: 0.6s;
}

@keyframes lineExpand {
    from { transform: translateX(-50%) scaleX(0); }
    to { transform: translateX(-50%) scaleX(1); }
    background: var(--sahibinden-yellow);
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
}

/* Sahibinden Button */
.sahibinden-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--sahibinden-dark);
    border: 2px solid var(--sahibinden-yellow);
    border-radius: 50px;
    color: var(--sahibinden-yellow);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.sahibinden-btn:hover {
    background: var(--sahibinden-yellow);
    color: var(--sahibinden-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3);
}

.sahibinden-btn:hover .s-icon {
    background: var(--sahibinden-dark);
    color: var(--sahibinden-yellow);
}

.s-icon {
    width: 28px;
    height: 28px;
    background: var(--sahibinden-yellow);
    color: var(--sahibinden-dark);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}

.sahibinden-btn.small {
    padding: 10px 18px;
    font-size: 0.8rem;
}

.sahibinden-btn.small .s-icon {
    width: 22px;
    height: 22px;
    font-size: 0.85rem;
}

.sahibinden-btn.large {
    padding: 18px 36px;
    font-size: 1rem;
}

.sahibinden-btn.large .s-icon {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
}


/* Hero Stats Box */
.hero-stats-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-stat {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-stat:last-child { border-bottom: none; }

.hero-stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 4px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

/* Trust Banner */
.trust-banner {
    background: var(--gray-900);
    padding: 24px 0;
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.trust-icon {
    width: 40px;
    height: 40px;
    color: var(--red-light);
}

.trust-icon svg {
    width: 100%;
    height: 100%;
}

.trust-content p {
    color: var(--white);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.trust-content strong {
    color: var(--red-light);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light h2 { color: var(--white); }
.section-header.light .section-tag { color: rgba(255,255,255,0.7); }
.section-header.light .section-tag::before,
.section-header.light .section-tag::after { background: rgba(255,255,255,0.3); }

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--red);
    opacity: 0.4;
}

.section-tag::before { right: calc(100% + 12px); }
.section-tag::after { left: calc(100% + 12px); }

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--gray-600);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}


/* Services Section */
.services {
    padding: 100px 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--red-light));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(196, 30, 58, 0.15);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border: none;
}

.service-card.featured::before { display: none; }
.service-card.featured .service-icon { color: var(--white); background: rgba(255,255,255,0.15); }
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.85); }

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--sahibinden-yellow);
    color: var(--gray-900);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: var(--gray-100);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    transition: all 0.3s;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-box {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--red);
    border-radius: 50%;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    max-width: 500px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--red);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.cta-btn svg {
    width: 22px;
    height: 22px;
}

.cta-btn:hover {
    background: var(--red-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(196, 30, 58, 0.4);
}


/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.about-left .section-tag {
    margin-bottom: 16px;
}

.about-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-highlight {
    font-size: 1.1rem;
    color: var(--gray-800);
    border-left: 4px solid var(--red);
    padding-left: 20px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-left p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-800);
    font-weight: 500;
}

.feature svg {
    width: 22px;
    height: 22px;
    color: var(--red);
}

.about-right {
    position: sticky;
    top: 100px;
}

.about-card {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.about-card-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.about-card-header .year {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

.about-card-header .label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-card-body {
    padding: 30px;
}

.about-card-body p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-item {
    background: var(--gray-100);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 4px;
}

.stat-text {
    font-size: 0.8rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.why-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.why-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: rgba(255,255,255,0.2);
    margin-bottom: 16px;
    line-height: 1;
}

.why-item h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 600;
}

.why-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}


/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.contact-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.4s;
    border: 1px solid var(--gray-200);
    position: relative;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--red);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-icon svg {
    width: 26px;
    height: 26px;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.contact-link {
    display: block;
    color: var(--red);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.contact-link:hover { color: var(--red-dark); }

.contact-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-note {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    background: var(--gray-100);
    border-radius: 20px;
}

.contact-map {
    margin: 40px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

.contact-cta {
    text-align: center;
}

/* Footer */
.footer {
    background: var(--gray-900);
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.footer .logo {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 16px;
    display: inline-flex;
}

.footer .logo span { 
    background: linear-gradient(135deg, var(--red-light), var(--sahibinden-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-slogan {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-address {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-nav h4,
.footer-contact h4,
.footer-cta h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav a,
.footer-contact a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-nav a:hover,
.footer-contact a:hover { color: var(--red-light); }

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}


/* Responsive */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-right { position: static; }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
    .hero-container { grid-template-columns: 1fr; }
    .hero-stats-box {
        flex-direction: row;
        justify-content: space-around;
        padding: 30px;
    }
    .hero-stat { border-bottom: none; padding: 0 20px; }
}

@media (max-width: 768px) {
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: #9a1830;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 9999;
        padding: 0;
        margin: 0;
    }
    
    .nav-menu.active { 
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        list-style: none;
    }
    
    .nav-menu li:first-child {
        border-top: 1px solid rgba(255,255,255,0.15);
    }
    
    .nav-menu a.nav-btn { 
        color: #ffffff;
        font-size: 1.3rem; 
        font-family: 'Oswald', sans-serif;
        letter-spacing: 3px;
        text-transform: uppercase;
        padding: 25px 30px;
        border: none;
        border-radius: 0;
        display: block;
        text-align: center;
        width: 100%;
        background: transparent;
        text-decoration: none;
    }
    
    .nav-menu a.nav-btn:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .navbar.scrolled .nav-menu {
        background: #9a1830;
    }
    
    .navbar.scrolled .nav-menu a.nav-btn {
        color: #ffffff;
        border: none;
        background: transparent;
    }
    
    .nav-toggle {
        z-index: 10000;
        position: relative;
    }
    
    .logo { font-size: 1.4rem; letter-spacing: 2px; }
    
    .hero-container { padding: 120px 24px 80px; }
    .hero-stats-box { flex-direction: column; gap: 20px; }
    .hero-stat { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    
    .services-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }
    
    .trust-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .about-stats-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .title-line { font-size: 2.8rem; letter-spacing: 4px; }
    .hero-slogan { letter-spacing: 4px; font-size: 0.9rem; }
    .section-tag::before, .section-tag::after { display: none; }
    .hero-buttons { flex-direction: column; }
    .btn-outline, .sahibinden-btn { width: 100%; justify-content: center; }
    .logo { font-size: 1.2rem; letter-spacing: 1px; }
    .nav-menu a { font-size: 1.3rem; }
}


/* WhatsApp Floating Button - Desktop Only */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: whatsappRing 2s ease-out infinite;
    z-index: -1;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-btn:hover::before {
    animation: none;
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes whatsappRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
}

.mobile-bottom-nav {
    display: none;
    grid-template-columns: repeat(5, 1fr);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    text-decoration: none;
    color: var(--gray-600);
    font-size: 0.65rem;
    font-weight: 500;
    transition: all 0.2s;
    gap: 4px;
}

.bottom-nav-item svg {
    width: 22px;
    height: 22px;
}

.bottom-nav-item:active {
    transform: scale(0.95);
}

.bottom-nav-item.whatsapp {
    color: #25D366;
}

.bottom-nav-item.whatsapp svg {
    width: 24px;
    height: 24px;
}

.bottom-nav-item.sahibinden {
    color: var(--sahibinden-dark);
}

.s-icon-nav {
    width: 24px;
    height: 24px;
    background: var(--sahibinden-yellow);
    color: var(--sahibinden-dark);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .whatsapp-btn.desktop-only {
        display: none;
    }
    
    .mobile-bottom-nav {
        display: grid;
    }
    
    .footer {
        padding-bottom: 100px;
    }
}