:root {
    --primary: #FDB913;
    --dark: #111111;
    --dark2: #1c1c1c;
    --text: #2c2c2c;
    --light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* ── Scroll Progress Bar ── */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary) 0%, #FF8C00 100%);
    z-index: 9999;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* ── Float Buttons ── */
.whatsapp-float,
.phone-float {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
    cursor: pointer;
}

.whatsapp-float {
    bottom: 140px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.phone-float {
    bottom: 70px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, #FF8C00 100%);
}

.whatsapp-float:hover,
.phone-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 30px rgba(0,0,0,0.4);
}

.whatsapp-float svg,
.phone-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* ── Header ── */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 200px;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #FF8C00 100%);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.cta-button:hover {
    background: linear-gradient(135deg, #FF8C00 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button svg {
    width: 20px;
    height: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ── Hero — Koyu Tema ── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/taksi1.jpg') center/cover;
    opacity: 0.12;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

/* Sarı ışık efekti sol altta */
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253,185,19,0.18) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(17,17,17,0.92) 0%, rgba(28,28,28,0.88) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 0;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253,185,19,0.15);
    border: 1px solid rgba(253,185,19,0.4);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.hero-badge svg {
    color: var(--primary);
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-title-accent {
    color: var(--primary);
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
}

.btn svg, .btn i {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
}

.btn-primary:hover {
    background: #ffc933;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(253,185,19,0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #25D366;
    border-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(253,185,19,0.12);
    border-color: rgba(253,185,19,0.3);
    transform: translateY(-3px);
}

.feature-item svg, .feature-item i {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

/* ── Stats ── */
.stats {
    background: linear-gradient(135deg, var(--dark) 0%, #2c2c2c 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/taksi2.jpg') center/cover;
    opacity: 0.05;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(253, 185, 19, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(253, 185, 19, 0.1);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(253, 185, 19, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(1);
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    filter: grayscale(0);
    transform: scale(1.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(253, 185, 19, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ── Sections ── */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #FF8C00 100%);
    border-radius: 2px;
}

/* ── Services ── */
.services {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #FF8C00 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(253,185,19,0.15) 0%, rgba(255,140,0,0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: var(--transition);
}

.service-icon i {
    width: 32px;
    height: 32px;
    color: #c49102;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #FF8C00 100%);
}

.service-card:hover .service-icon i {
    color: var(--dark);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* ── Pricing ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.pricing-card.featured::before {
    content: '⭐ POPÜLER';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--dark);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow);
}

.pricing-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(253,185,19,0.15) 0%, rgba(255,140,0,0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.pricing-icon i {
    width: 28px;
    height: 28px;
    color: #c49102;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0.75rem 0;
}

.pricing-card p {
    color: #888;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    margin-top: auto;
}

.pricing-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253,185,19,0.4);
}

.pricing-btn i {
    width: 18px;
    height: 18px;
}

/* ── Testimonials ── */
.testimonials {
    background: var(--white);
    padding: 5rem 0;
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-slide {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: slideTestimonials 40s linear infinite;
}

.testimonial-slide:hover {
    animation-play-state: paused;
}

@keyframes slideTestimonials {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.testimonial-card {
    min-width: 400px;
    max-width: 400px;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light);
    transition: var(--transition);
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(253, 185, 19, 0.2);
    border-color: var(--primary);
}

.testimonial-stars {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 1.8rem;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0; top: -10px;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-top: 1rem;
    border-top: 2px solid var(--light);
}

.testimonial-author strong {
    color: var(--dark);
    font-size: 1.15rem;
    font-weight: 700;
}

.testimonial-author span {
    color: #999;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ── About ── */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-images img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-images img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-lg);
}

/* ── Why Choose ── */
.why-choose {
    background: var(--light);
    padding: 5rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(253,185,19,0.15) 0%, rgba(255,140,0,0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: var(--transition);
}

.why-icon i {
    width: 30px;
    height: 30px;
    color: #c49102;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #FF8C00 100%);
}

.why-card:hover .why-icon i {
    color: var(--dark);
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.why-card p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ── Contact ── */
.contact {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
    margin-bottom: 0.3rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--dark);
}

.contact-item a {
    color: #7a5c00;
    font-weight: 700;
    font-size: 1.1rem;
}

.contact-item a:hover {
    color: var(--dark);
    text-decoration: underline;
}

.contact-item p {
    color: var(--text);
    line-height: 1.6;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 420px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

/* ── Footer ── */
.footer {
    background: linear-gradient(135deg, #111111 0%, #1c1c1c 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #FFD700 50%, var(--primary) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(1.2);
}

.footer-logo p {
    color: var(--primary);
    font-weight: 500;
    font-size: 1.1rem;
}

.footer-links .footer-heading,
.footer-contact .footer-heading {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '→';
    color: var(--primary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    font-size: 0.9rem;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-images {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 78px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }
    .nav-menu.active { left: 0; }
    .hamburger { display: flex; }
    .cta-button { display: none; }
    .hero { min-height: 80vh; }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .about-images { grid-template-columns: 1fr; }
    .contact-map { height: 350px; }
    .whatsapp-float, .phone-float {
        width: 50px;
        height: 50px;
        right: 20px;
    }
    .whatsapp-float { bottom: 120px; }
    .phone-float { bottom: 60px; }
    .whatsapp-float svg, .phone-float svg {
        width: 24px;
        height: 24px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-logo img {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-links a::before { display: none; }
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
    }
    .hero-features { gap: 0.75rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    section { padding: 3rem 0; }
    .pricing-grid, .services-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .why-grid { grid-template-columns: 1fr; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

::selection {
    background: var(--primary);
    color: var(--dark);
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: #FF8C00; }

/* ── SEO Metin Bölümü ── */
.seo-text {
    background: var(--white);
    padding: 4rem 0 2rem;
}

.seo-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.seo-text-block h2 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}

.seo-text-block p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 0.97rem;
}

.seo-text-block a { color: #7a5c00; font-weight: 700; }

/* ── SSS / FAQ ── */
.faq { background: var(--light); padding: 5rem 0; }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

.faq-item.open { border-color: var(--primary); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.4rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.faq-question:hover { color: #c49102; }

.faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.75rem;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.75rem 1.4rem;
}

.faq-answer p {
    color: #555;
    line-height: 1.9;
    font-size: 0.95rem;
    border-top: 1px solid var(--light);
    padding-top: 1rem;
}

.faq-answer a { color: #7a5c00; font-weight: 700; }

@media (max-width: 768px) {
    .seo-text-grid { grid-template-columns: 1fr; gap: 2rem; }
    .faq-question { font-size: 0.95rem; padding: 1.2rem 1.25rem; }
    .faq-answer { padding: 0 1.25rem; }
    .faq-item.open .faq-answer { padding: 0 1.25rem 1.2rem; }
}