:root {
    --bg: #f8fafc;
    --surface: #ffffff;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --brand: #3b82f6;
    --brand-dark: #2563eb;
    --brand-light: #60a5fa;
    --brand-2: #10b981;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --danger: #ef4444;
    --success: #10b981;
    --warning: #f59e0b;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,.1), 0 2px 4px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,.1), 0 10px 10px rgba(0,0,0,.04);
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    margin: 0;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.95);
    backdrop-filter: saturate(120%) blur(8px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: .2px;
}

.brand-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform .3s;
}

.brand-link:hover .brand-logo {
    transform: scale(1.05);
}

.brand-text {
    display: inline-block;
}

/* Logo varsa site adını gizle */
.brand-link.has-logo .brand-text {
    display: none;
}

/* Logo varsa noktayı gizle */
.brand-link.has-logo:before {
    display: none;
}

/* Logo yoksa noktayı göster */
.brand-link:not(.has-logo):before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gradient-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    animation: pulse 2s infinite;
    margin-right: 4px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(2,6,23,.15);
    color: var(--text);
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 20px;
}

.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-links a {
    color: #334155;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 15px;
    transition: all .2s;
}

.nav-links a:hover {
    color: var(--brand);
    background: rgba(14,165,233,.1);
}

.header-phone-btn {
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.header-phone-btn::before {
    content: '📞';
    margin-right: 6px;
}

.header-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

main.container {
    padding: 0;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="heroPattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(59,130,246,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23heroPattern)"/></svg>');
    opacity: 0.6;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
    animation: heroFloat 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.4;
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
        opacity: 0.3;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-left h1 {
    font-size: 52px;
    font-weight: 900;
    margin: 0 0 20px;
    line-height: 1.1;
    color: var(--text);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 18px;
    color: var(--muted);
    margin: 0 0 24px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.hero-info {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(16,185,129,.1), rgba(5,150,105,.05));
    border-radius: 16px;
    color: var(--success);
    font-weight: 600;
    font-size: 13px;
    border: 1px solid rgba(16,185,129,.2);
    transition: all .3s;
}

.hero-info span::before {
    content: '✓';
    font-weight: 700;
    font-size: 14px;
}

.hero-info span:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-right {
    position: relative;
}

.hero-form-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.hero-form-card h3 {
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
}

.quick-form input,
.quick-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 16px;
    font-family: inherit;
    transition: all .3s;
    background: #fff;
}

.quick-form input:focus,
.quick-form textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.quick-form textarea {
    resize: vertical;
    min-height: 80px;
}

.form-note {
    font-size: 13px;
    color: var(--muted);
    margin: 12px 0 0;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    border-radius: 8px;
    transition: all .2s;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    padding: 14px 28px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    transition: left .5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: #fff;
    color: var(--brand);
    padding: 12px 24px;
    border: 2px solid var(--brand);
}

.btn-secondary:hover {
    background: var(--brand);
    color: #fff;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Banner Middle */
.banner-middle {
    background: var(--gradient-primary);
    color: #fff;
    padding: 50px 0;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.banner-middle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.banner-middle-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.banner-middle-left h2 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
}

.banner-middle-left p {
    margin: 0;
    opacity: .95;
    font-size: 16px;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(59,130,246,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform .4s;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-light);
}

.stat-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform .3s;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,.1));
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background: #fff;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 48px;
    color: var(--text);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform .4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-light);
}

.service-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform .3s;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,.1));
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.service-card p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 15px;
    flex-grow: 1;
}

.service-link {
    display: inline-block;
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all .3s;
    margin-top: auto;
}

.service-link:hover {
    color: var(--brand-dark);
    transform: translateX(4px);
}

/* Banner Bottom */
.banner-bottom {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    padding: 60px 0;
    margin: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-bottom::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59,130,246,.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.banner-bottom-content h2 {
    margin: 0 0 12px;
    font-size: 32px;
    font-weight: 700;
}

.banner-bottom-content p {
    margin: 0;
    font-size: 18px;
    opacity: .9;
}

/* Why Us Section */
.why-us-section {
    padding: 60px 0;
    background: #f8fafc;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.why-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform .4s;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-light);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.why-card h3 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.why-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

/* Steps Section */
.steps-section {
    padding: 60px 0;
    background: #fff;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-light) 0%, var(--brand) 50%, var(--brand-light) 100%);
    z-index: 0;
    display: none;
}

@media (min-width: 900px) {
    .steps-container::before {
        display: block;
    }
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all .3s;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.3;
    z-index: -1;
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.step-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.step-item h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.step-item p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-slider {
    display: flex;
    transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 12px;
}

.testimonials-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 10px;
    z-index: 10;
}

.testimonials-prev,
.testimonials-next {
    pointer-events: auto;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(8px);
    border: 2px solid var(--border-light);
    color: var(--brand);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    box-shadow: var(--shadow-md);
}

.testimonials-prev:hover,
.testimonials-next:hover {
    background: var(--brand);
    color: #fff;
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(59,130,246,.3);
    cursor: pointer;
    transition: all .3s;
    border: none;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--brand);
    transform: scale(1.2);
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 80px;
    color: var(--brand-light);
    opacity: 0.2;
    font-weight: 900;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform .4s;
}

.testimonial-card:hover::before {
    transform: scaleY(1);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 12px;
}

.testimonial-text {
    margin: 0 0 20px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.testimonial-author strong {
    display: block;
    color: var(--text);
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--muted);
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #fff;
}

.faq-search {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 16px 20px 16px 48px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 16px;
    transition: all .3s;
    background: #fff;
}

.faq-search input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.faq-search::before {
    content: '🔍';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    pointer-events: none;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-no-results {
    text-align: center;
    padding: 40px;
    color: var(--muted);
    font-size: 18px;
    display: none;
}

.faq-no-results.show {
    display: block;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
    list-style: none;
    position: relative;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: var(--brand);
    transition: transform .3s;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-content {
    padding: 0 20px 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.faq-content p {
    margin: 0;
}

/* Footer */
.site-footer {
    border-top: 2px solid var(--border-light);
    margin-top: 80px;
    padding: 60px 0 24px;
    color: var(--muted);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

.footer-column h3 {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-column h4 {
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.footer-column p {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all .3s;
    box-shadow: var(--shadow-md);
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
    transition: all .2s;
    padding: 4px 0;
}

.footer-nav a:hover {
    color: var(--brand);
    padding-left: 8px;
}

.footer-contact p {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact strong {
    color: var(--text);
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.footer-contact a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

.footer-bottom-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s;
}

.footer-bottom-nav a:hover {
    color: var(--brand);
}

/* FAB */
.fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 28px;
    box-shadow: var(--shadow-xl);
    z-index: 50;
    transition: all .3s;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.fab:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.show {
    opacity: 1;
    transform: none;
}

.reveal.fade-up {
    transform: translateY(20px);
}

.reveal.fade-in {
    transform: none;
}

/* Banner Carousel (existing) */
.banner-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background: #0f172a;
    border-radius: 0;
}

.banner-slider {
    display: flex;
    transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    opacity: 0;
    animation: bannerFadeIn 0.8s ease forwards;
}

.banner-slide.active {
    opacity: 1;
}

@keyframes bannerFadeIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: bannerZoom 20s ease-in-out infinite;
}

@keyframes bannerZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.banner-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.4), transparent);
    padding: 50px 20px 40px;
    color: #fff;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    animation: bannerContentSlide 0.8s ease 0.3s forwards;
}

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

.banner-content h2 {
    font-size: 36px;
    margin: 0 0 12px;
    color: #fff;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,.5);
    transform: translateY(10px);
    opacity: 0;
    animation: bannerTextSlide 0.6s ease 0.5s forwards;
}

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

.banner-content p {
    font-size: 18px;
    margin: 0 0 16px;
    opacity: .95;
    text-shadow: 0 1px 5px rgba(0,0,0,.5);
    transform: translateY(10px);
    opacity: 0;
    animation: bannerTextSlide 0.6s ease 0.7s forwards;
}

.banner-content .btn {
    transform: translateY(10px);
    opacity: 0;
    animation: bannerTextSlide 0.6s ease 0.9s forwards;
}

.banner-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 10px;
}

.banner-prev, .banner-next {
    pointer-events: auto;
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.banner-prev:hover, .banner-next:hover {
    background: rgba(255,255,255,.35);
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: background .2s;
    border: none;
    padding: 0;
}

.banner-dot.active {
    background: #fff;
}

/* Other Pages Styles */
.card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    background: var(--card);
    box-shadow: var(--shadow);
}

form label {
    display: block;
    margin: 12px 0 6px;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=datetime-local],
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    transition: border-color .2s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--brand);
}

button:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.muted {
    color: var(--muted);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .banner-middle-content {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid,
    .why-us-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        background: #ffffff;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 12px 16px;
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links a {
        padding: 12px 10px;
        display: block;
    }
    
    .nav-links.open {
        display: flex;
    }
    
    .nav-toggle {
        display: inline-flex;
    }
    
    .header-phone-btn {
        display: none;
    }
    
    .hero-left h1 {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid,
    .why-us-grid,
    .testimonials-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .banner-slide {
        height: 280px;
    }
    
    .banner-content {
        padding: 24px 16px;
    }
    
    .banner-content h2 {
        font-size: 22px;
    }
    
    .banner-content p {
        font-size: 14px;
    }
    
    .banner-prev, .banner-next {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

/* Blog Styles */
.blog-preview-section {
    padding: 60px 0;
    background: #f8fafc;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.blog-preview-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .3s;
}

.blog-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-preview-image {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.blog-preview-card:hover .blog-preview-image img {
    transform: scale(1.05);
}

.blog-preview-content {
    padding: 20px;
}

.blog-preview-content h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
}

.blog-preview-content h3 a {
    color: var(--text);
    text-decoration: none;
    transition: color .2s;
}

.blog-preview-content h3 a:hover {
    color: var(--brand);
}

.blog-preview-date {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 12px;
}

.blog-preview-content p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.blog-preview-link {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color .2s;
}

.blog-preview-link:hover {
    color: var(--brand-dark);
}

.blog-preview-footer {
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .3s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

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

.blog-card-content {
    padding: 20px;
}

.blog-card-content h2,
.blog-card-content h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
}

.blog-card-content h2 a,
.blog-card-content h3 a {
    color: var(--text);
    text-decoration: none;
    transition: color .2s;
}

.blog-card-content h2 a:hover,
.blog-card-content h3 a:hover {
    color: var(--brand);
}

.blog-card-date {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 12px;
}

.blog-card-content p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.blog-card-link {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color .2s;
}

.blog-card-link:hover {
    color: var(--brand-dark);
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.blog-post-image {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-header {
    margin-bottom: 24px;
}

.blog-post-header h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.2;
}

.blog-post-date {
    display: block;
    font-size: 14px;
    color: var(--muted);
}

.blog-post-excerpt {
    font-size: 18px;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.blog-post-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.blog-post-content p {
    margin-bottom: 20px;
}

.blog-post-content h2,
.blog-post-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.related-posts {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.related-posts h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 40px 0;
    padding: 20px 0;
}

.pagination-link {
    padding: 10px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: all .2s;
}

.pagination-link:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.pagination-info {
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 700px) {
    .blog-post {
        padding: 24px;
    }
    
    .blog-post-header h1 {
        font-size: 28px;
    }
    
    .blog-grid,
    .blog-preview-grid {
        grid-template-columns: 1fr;
    }
}
