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

:root {
    --primary: #0284c7; /* Cool Sky Blue */
    --primary-hover: #0369a1;
    --secondary: #0f172a; /* Slate Dark */
    --accent: #f97316; /* Warm Heating Orange */
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --text-dark: #1e293b;
    --text-light: #f8fafc;
    --text-muted: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(226, 232, 240, 0.8);
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --font-outfit: 'Outfit', sans-serif;
    --font-inter: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-outfit);
    font-weight: 700;
    color: var(--secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: var(--card-shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-family: var(--font-outfit);
    font-weight: 800;
    color: var(--secondary);
}

.logo span {
    color: var(--primary);
}

.logo i {
    color: var(--primary);
    font-size: 1.8rem;
    animation: rotateFan 8s linear infinite;
    transition: var(--transition);
}

.logo:hover i {
    animation: rotateFan 1.5s linear infinite;
    color: var(--accent);
}

@keyframes rotateFan {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary);
}

.btn-header {
    background: var(--primary);
    color: white !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.btn-header:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0.3) 100%),
                url('../images/hero_bg.png') no-repeat center center / cover;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(2, 132, 199, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(2, 132, 199, 0.15);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--primary);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 36px;
    max-width: 580px;
    text-shadow: 0 1px 4px rgba(255,255,255,0.8);
}

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

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px -5px rgba(2, 132, 199, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(2, 132, 199, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--secondary);
    border: 1px solid var(--glass-border);
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--card-shadow);
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

.hero-price-note {
    margin-top: 10px;
    margin-bottom: 25px;
}
.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(16, 185, 129, 0.4);
    color: #047857;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(16,185,129,0.12);
    backdrop-filter: blur(6px);
}
.price-badge i {
    color: #10b981;
}
.price-badge strong {
    font-weight: 800;
    color: #047857;
    font-size: 1.05rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 2px solid rgba(2, 132, 199, 0.2);
    padding-top: 32px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 20px 24px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-number {
    font-family: var(--font-outfit);
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(255,255,255,0.6);
}

.feature-text {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.15) 0%, rgba(249, 115, 22, 0.1) 100%);
    filter: blur(40px);
    z-index: 1;
}

.hero-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 380px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.12);
}

.visual-badge {
    background: white;
    border: 1px solid var(--glass-border);
    padding: 16px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    box-shadow: var(--card-shadow);
}

.badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(2, 132, 199, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.badge-info h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.badge-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.about {
    padding: 100px 0 20px;
    background-color: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-box {
    padding: 32px 24px;
    border-radius: var(--border-radius);
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.about-box.highlight {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
    color: white;
}

.about-box.highlight h3,
.about-box.highlight p {
    color: white;
}

.about-box i {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.about-box.highlight i {
    color: var(--accent);
}

.about-box h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.about-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-box.highlight p {
    color: rgba(255, 255, 255, 0.7);
}

.section-tag {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-brands {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 24px;
    text-align: center;
    width: 100%;
}

.about-brands-title {
    font-family: var(--font-outfit);
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.5px;
}

/* Brand Marquee */
.brands-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    min-width: 0;
    /* Fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brands-marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marquee-scroll 22s linear infinite;
}

.brands-marquee-track:hover {
    animation-play-state: paused;
}

.brand-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid rgba(2, 132, 199, 0.12);
    border-radius: 16px;
    padding: 22px 36px;
    min-width: 145px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    flex-shrink: 0;
}

.brand-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(2, 132, 199, 0.16);
    border-color: rgba(2, 132, 199, 0.4);
    background: linear-gradient(to bottom, #ffffff, #f0f9ff);
}

.brand-logo-card i {
    font-size: 1.85rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.brand-logo-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.brand-logo-card span {
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--secondary);
    white-space: nowrap;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(2, 132, 199, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 28px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing Banner Info */
.pricing-banner {
    max-width: 1152px;
    margin: 50px auto 0;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 20px 40px -15px rgba(2, 132, 199, 0.3);
    color: white;
}
.pricing-banner-content {
    display: flex;
    align-items: center;
    gap: 24px;
}
.pricing-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}
.pricing-details h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 6px 0;
    letter-spacing: -0.3px;
    color: white;
}
.pricing-details p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.95;
    line-height: 1.5;
    color: #e0f2fe;
}
.pricing-details p strong {
    font-weight: 800;
    font-size: 1.15rem;
    color: #f0fdf4;
    background: rgba(255, 255, 255, 0.12);
    padding: 2px 8px;
    border-radius: 6px;
    display: inline-block;
}
.pricing-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #0284c7;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
    white-space: nowrap;
}
.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
    background: #f8fafc;
}
.pricing-btn i {
    transition: transform 0.3s ease;
}
.pricing-btn:hover i {
    transform: translateX(4px);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: white;
}

.testimonials-header {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 24px;
    text-align: center;
}

.testimonials-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
    height: 560px;
}

.testimonials-left {
    display: flex;
    flex-direction: column;
    height: 560px;
    min-width: 0;
}

.testimonials-list-wrapper {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.testimonials-slider {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    padding-right: 10px;
    scroll-behavior: smooth;
}

/* Custom thin scrollbar for testimonials */
.testimonials-slider::-webkit-scrollbar {
    width: 5px;
}

.testimonials-slider::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
    background: rgba(2, 132, 199, 0.3);
    border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb:hover {
    background: rgba(2, 132, 199, 0.6);
}

/* Pagination alongside scrollbar */
.testimonials-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
    flex-shrink: 0;
}

.testimonials-right {
    width: 100%;
    height: 560px;
    position: relative;
    padding: 16px 0 0 16px; /* Space for the decorative offset frame */
}

/* Decorative offset frame behind the photo */
.testimonials-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 28px;
    border: 2px solid var(--primary);
    opacity: 0.25;
    z-index: 0;
}

.testimonials-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    box-shadow: 0 20px 50px rgba(2, 132, 199, 0.15), 0 8px 20px rgba(15, 23, 42, 0.12);
    border: 3px solid white;
    z-index: 1;
}

.testimonials-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Gradient overlay at the bottom of the photo */
.testimonials-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.45) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.testimonials-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: white;
    padding: 14px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    border: 1px solid rgba(2, 132, 199, 0.1);
}

.testimonials-img-badge i {
    color: #10b981;
    font-size: 1.25rem;
}

.testimonials-img-badge span {
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--secondary);
}

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

.page-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(2, 132, 199, 0.15);
    background: white;
    color: var(--secondary);
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover {
    border-color: var(--primary);
    background: var(--bg-light);
    color: var(--primary);
    transform: translateY(-2px);
}

.page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

@media (max-width: 992px) {
    .testimonials-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        height: auto;
    }
    .testimonials-left {
        height: auto;
    }
    .testimonials-right {
        height: 320px;
    }
    .testimonials-image-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* Mobile: use hide/show pagination, no scrollbar needed */
    .testimonials-slider {
        overflow-y: visible;
        flex: unset;
        min-height: unset;
        padding-right: 0;
    }
    .testimonials-list-wrapper {
        flex: unset;
        overflow: visible;
        min-height: unset;
    }
    .testimonials-left {
        height: auto;
        min-height: unset;
    }
}


.testimonial-card {
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.stars {
    color: #eab308;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.stars i {
    margin-right: 2px;
}

.comment {
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-style: italic;
    line-height: 1.6;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 0.95rem;
}

.client-meta h4 {
    font-size: 0.92rem;
    font-weight: 600;
}

.client-meta p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Contact / Request Section */
.contact {
    padding: 100px 0;
    background: radial-gradient(circle at 10% 20%, rgba(2, 132, 199, 0.05) 0%, rgba(255, 255, 255, 0) 50%),
                radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.04) 0%, rgba(255, 255, 255, 0) 50%);
}

.contact-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 12px auto 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 40px;
}

/* Sol Kolon - Sleek Dark Card */
.contact-info-card {
    background: linear-gradient(145deg, #0e1e38 0%, #081224 100%);
    padding: 50px 40px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, rgba(2, 132, 199, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-info-card-content {
    position: relative;
    z-index: 2;
}

.sleek-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sleek-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-decoration: none;
    color: white;
}

a.sleek-contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(2, 132, 199, 0.3);
    transform: translateY(-2px);
}

a.sleek-contact-item.whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.3);
}

.sleek-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(2, 132, 199, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.sleek-contact-item.whatsapp .sleek-contact-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.sleek-contact-item.hours .sleek-contact-icon {
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent);
}

.sleek-contact-item.address .sleek-contact-icon {
    background: rgba(2, 132, 199, 0.15);
    color: var(--primary);
}

.sleek-contact-details {
    display: flex;
    flex-direction: column;
}

.sleek-contact-details span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.sleek-contact-details strong {
    font-size: 1rem;
    font-weight: 600;
}

/* Sağ Kolon - Tabbed Form Card */
.contact-tab-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--glass-border);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.form-tabs {
    display: flex;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 16px;
    margin-bottom: 30px;
    gap: 4px;
}

.form-tab-btn {
    flex: 1;
    border: none;
    background: none;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    font-family: var(--font-inter);
}

.form-tab-btn i {
    font-size: 1rem;
}

.form-tab-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.form-tab-content {
    position: relative;
    flex: 1;
}

.form-panel {
    display: none;
    animation: fadeInForm 0.4s ease;
}

.form-panel.active {
    display: block;
}

@keyframes fadeInForm {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-panel-title {
    font-size: 1.5rem;
    margin-bottom: 6px;
    font-family: var(--font-outfit);
    color: var(--secondary);
}

.form-panel-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.comment-form-card {
    border-top: 4px solid var(--accent) !important;
}

.rating-stars-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 4px;
}

.rating-stars-input input {
    display: none;
}

.rating-stars-input label {
    font-size: 1.6rem;
    color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}

.rating-stars-input label:hover,
.rating-stars-input label:hover ~ label,
.rating-stars-input input:checked ~ label {
    color: #eab308;
}

.rating-stars-input label i {
    transition: transform 0.2s ease;
}

.rating-stars-input label:hover i {
    transform: scale(1.2);
}

/* Fan Alert Modal styles */
.fan-alert-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fan-alert-modal.active {
    display: flex;
    opacity: 1;
}

.fan-alert-content {
    background: white;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    width: 95%;
    max-width: 400px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fan-alert-modal.active .fan-alert-content {
    transform: scale(1);
}

.fan-spinner-wrapper {
    margin-bottom: 24px;
    display: inline-block;
}

.fan-spinner-icon {
    font-size: 4rem;
    color: var(--primary);
    animation: rotateFan 1.5s linear infinite;
    display: inline-block;
}

.fan-alert-success-icon {
    font-size: 4.5rem;
    color: #10b981;
    margin-bottom: 24px;
    display: none;
    animation: bounceCheck 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fan-alert-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-family: var(--font-outfit);
}

.fan-alert-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.btn-fan-close {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: none;
    margin: 0 auto;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.btn-fan-close:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

@keyframes bounceCheck {
    0% { transform: scale(0); }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.contact-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(2, 132, 199, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--glass-border);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    font-family: var(--font-inter);
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.btn-form {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 20px -5px rgba(2, 132, 199, 0.3);
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-form:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(2, 132, 199, 0.4);
}

.form-alert {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: none;
}

.form-alert.success {
    display: block;
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-alert.error {
    display: block;
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Footer */
footer {
    background: var(--secondary);
    color: white;
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 50px;
}

.footer-info .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-info .logo i {
    color: var(--primary);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 24px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.admin-link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

.admin-link:hover {
    color: var(--primary);
}

/* Floating WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-visual {
        order: 1; /* Shows text first, visual card second on smaller viewports */
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 30px;
        transition: var(--transition);
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-features {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
        padding-top: 20px;
    }
    
    .feature-item {
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item:not(:last-child) {
        border-right: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .feature-number {
        font-size: 1.3rem;
        margin-bottom: 2px;
    }
    
    .feature-text {
        font-size: 0.75rem;
        padding: 0 4px;
        line-height: 1.2;
    }
    
    /* 2x2 grid for About boxes instead of vertical stack */
    .about-visual {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .about-box {
        padding: 24px 16px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 14px 20px;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 16px;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-cta a {
        width: 100%;
        justify-content: center;
    }
    
    .hero-circle {
        width: 280px;
        height: 280px;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .about {
        padding: 40px 0;
    }
    
    .about-visual {
        gap: 12px;
    }
    
    .about-box {
        padding: 16px 10px;
    }
    
    .about-box h3 {
        font-size: 1.2rem;
    }
    
    .about-box i {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .services {
        padding: 40px 0;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .contact {
        padding: 40px 0;
    }
    
    .contact-item {
        padding: 16px;
        gap: 14px;
    }
    
    .contact-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .contact-form-container,
    .contact-info-card,
    .contact-tab-card {
        padding: 30px 20px;
    }
    
    .sleek-contact-item {
        padding: 12px 14px;
        gap: 12px;
    }
    
    .form-tab-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .whatsapp-btn {
        width: 52px;
        height: 52px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Why Choose Us Section Refined Layout */
.why-us {
    padding: 60px 0 120px;
    background: linear-gradient(180deg, white 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}
.why-us::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}
.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
.why-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* AC Visual Column Styles */
.why-us-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 580px;
    height: 440px;
    background: radial-gradient(circle at center, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
    border-radius: 24px;
    border: 1px solid rgba(2, 132, 199, 0.06);
    background-image: radial-gradient(rgba(2, 132, 199, 0.06) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    box-shadow: inset 0 0 40px rgba(2, 132, 199, 0.02);
}
.why-us-visual::after {
    content: '';
    position: absolute;
    top: 35px;
    bottom: 35px;
    left: 35px;
    right: 35px;
    border: 2px dashed rgba(2, 132, 199, 0.12);
    border-radius: 20px;
    z-index: 2;
    pointer-events: none;
}
.ac-unit-mockup {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid rgba(2, 132, 199, 0.2);
    border-radius: 16px;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.15),
                inset 0 2px 4px rgba(255, 255, 255, 0.8);
    padding: 24px;
    position: relative;
    z-index: 3;
}
.ac-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #94a3b8;
    margin-bottom: 16px;
    text-align: right;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    padding-bottom: 8px;
}
.ac-display {
    background: #0f172a;
    border-radius: 8px;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #38bdf8;
    font-family: monospace;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}
.ac-temp {
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}
.ac-mode-icon {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}
.ac-mode-icon i {
    animation: rotateFan 4s linear infinite;
}
.ac-vent {
    position: relative;
    background: #e2e8f0;
    height: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}
.ac-flap {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 2px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 3px;
    transform-origin: top center;
    animation: swingFlap 6s ease-in-out infinite;
}
.ac-airflow {
    position: absolute;
    top: 100%;
    left: 10%;
    right: 10%;
    height: 60px;
    display: flex;
    justify-content: space-around;
    pointer-events: none;
    overflow: hidden;
}
.ac-airflow .wave {
    width: 2px;
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.6) 0%, transparent 100%);
    height: 100%;
    animation: airflowDown 1.8s linear infinite;
    opacity: 0;
}
.ac-airflow .wave:nth-child(2) {
    animation-delay: 0.6s;
}
.ac-airflow .wave:nth-child(3) {
    animation-delay: 1.2s;
}
.ac-fan-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    background: #f8fafc;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px dashed rgba(2, 132, 199, 0.2);
}
.spin-ac-fan {
    animation: rotateFan 2s linear infinite;
    color: var(--primary);
    font-size: 1.1rem;
}
.fan-speed-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
}

/* Badges styling decoration */
.ac-visual-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(2, 132, 199, 0.15);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 30px -10px rgba(15, 23, 42, 0.15);
    z-index: 4;
    transition: all 0.3s ease;
    width: 245px;
}
.ac-visual-badge i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(2, 132, 199, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.ac-visual-badge h4 {
    margin: 0 0 2px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
}
.ac-visual-badge p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.badge-1 {
    top: 15px;
    left: -15px;
    animation: floatBadge1 6s ease-in-out infinite;
}
.badge-2 {
    top: 15px;
    right: -15px;
    animation: floatBadge2 6s ease-in-out infinite;
}
.badge-3 {
    bottom: 15px;
    left: -15px;
    animation: floatBadge1 6s ease-in-out infinite;
    animation-delay: 3s;
}
.badge-4 {
    bottom: 15px;
    right: -15px;
    animation: floatBadge2 6s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes floatBadge1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes floatBadge2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}
@keyframes swingFlap {
    0%, 100% { transform: rotate(15deg); }
    50% { transform: rotate(35deg); }
}
@keyframes airflowDown {
    0% { transform: translateY(-100%); opacity: 0; }
    30% { opacity: 0.8; }
    100% { transform: translateY(100%); opacity: 0; }
}

/* Header styling overrides for Why Us Section */
.why-us-header {
    text-align: left;
    margin-bottom: 40px;
}
.why-us-tag {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(2, 132, 199, 0.08);
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 1.5px;
}
.why-us-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Feature Cards Column Styles */
.why-us-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.why-us-feature-card {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.02);
}
.why-us-feature-card:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 30px -10px rgba(15, 23, 42, 0.08);
    border-color: rgba(2, 132, 199, 0.15);
}
.why-us-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.why-us-feature-text h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
}
.why-us-feature-text p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Process Section */
.process {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}
.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 12%;
    right: 12%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(2, 132, 199, 0.15) 100%);
    z-index: 1;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px 24px 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.process-step:hover {
    transform: translateY(-8px);
    background: white;
    box-shadow: var(--card-shadow);
    border-color: rgba(2, 132, 199, 0.25);
}
.step-icon-wrapper {
    position: relative;
    margin-bottom: 24px;
}
.step-number {
    position: absolute;
    top: -12px;
    left: -12px;
    background: var(--accent);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}
.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    border: 3px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}
.process-step:hover .step-icon {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
}
.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--secondary);
    font-weight: 700;
}
.step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-left: 20px;
    }
    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 50px;
        width: 4px;
        height: auto;
        background: linear-gradient(180deg, var(--primary) 0%, rgba(2, 132, 199, 0.15) 100%);
    }
    .process-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 24px;
        padding: 24px;
    }
    .step-icon-wrapper {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .step-number {
        top: -8px;
        left: -8px;
    }
}


/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: white;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}
.faq-item {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    background: #f8fafc;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    color: var(--secondary);
    transition: color 0.3s ease;
}
.faq-question i {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}
.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    padding-bottom: 20px;
    line-height: 1.6;
}
.faq-item.active {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 10px 30px -10px rgba(2, 132, 199, 0.15);
}
.faq-item.active .faq-question h3 {
    color: var(--primary);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}
.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}
.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.map-wrapper {
    margin-top: 40px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    background: #e5e7eb;
    height: 450px;
}
.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    /* ── Tablet: stack columns, visual box full-width ── */
    .why-us-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-us-visual {
        width: 100%;
        height: auto;
        max-width: 620px;
        margin: 0 auto;

        /* Switch from abs-positioned badges to CSS grid inside the box */
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 14px;
        padding: 28px !important;

        background-color: #f0f7ff;
        background-image: radial-gradient(rgba(2,132,199,0.09) 1.5px, transparent 1.5px);
        background-size: 22px 22px;
        border-radius: 24px;
        border: 1px solid rgba(2,132,199,0.1);
    }
    .why-us-visual::after {
        display: none;
    }

    /* AC mockup spans both grid columns */
    .ac-unit-mockup {
        grid-column: 1 / -1;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 20px !important;
    }

    /* All badges: static in-flow, auto-sized */
    .badge-1, .badge-2, .badge-3, .badge-4 {
        position: static !important;
        animation: none !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 14px 16px !important;
        border-radius: 14px !important;
        gap: 12px !important;
        background: white !important;
        border: 1px solid rgba(2,132,199,0.14) !important;
        box-shadow: 0 4px 16px rgba(15,23,42,0.07) !important;
        display: flex !important;
        align-items: center !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
    }
    .ac-visual-badge i {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
        flex-shrink: 0 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .ac-visual-badge h4 {
        font-size: 0.88rem !important;
        font-weight: 700 !important;
        margin: 0 0 3px !important;
        color: var(--secondary) !important;
        line-height: 1.2 !important;
    }
    .ac-visual-badge p {
        display: block !important;
        font-size: 0.75rem !important;
        color: var(--text-muted) !important;
        margin: 0 !important;
        line-height: 1.35 !important;
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 50px 0;
    }
    .why-us-wrapper {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
    .why-us-visual {
        max-width: 100% !important;
        gap: 12px !important;
        padding: 22px !important;
    }
    .ac-unit-mockup {
        padding: 16px !important;
    }
    .badge-1, .badge-2, .badge-3, .badge-4 {
        padding: 12px 14px !important;
        gap: 10px !important;
    }
    .ac-visual-badge i {
        width: 34px !important;
        height: 34px !important;
        font-size: 0.9rem !important;
    }
    .ac-visual-badge h4 {
        font-size: 0.82rem !important;
    }
    .ac-visual-badge p {
        font-size: 0.7rem !important;
    }
    .why-us-header {
        text-align: center !important;
        margin-bottom: 22px !important;
    }
    .why-us-title {
        font-size: 2rem !important;
    }
    .why-us-feature-card {
        padding: 20px !important;
        gap: 16px !important;
    }
    .process, .faq {
        padding: 40px 0;
    }
    .map-section {
        padding: 20px 0 40px;
    }
    .process-step {
        padding: 24px 20px;
    }
    .map-wrapper {
        height: 260px;
        margin-top: 15px;
        border-radius: 12px;
    }
    .process-timeline, .faq-list {
        margin-top: 20px;
    }
    
    /* Pricing Banner Mobile */
    .pricing-banner {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 24px !important;
        text-align: center !important;
        gap: 20px !important;
        margin: 40px 16px 0 !important;
    }
    .pricing-banner-content {
        flex-direction: column !important;
        gap: 16px !important;
    }
    .pricing-icon {
        margin: 0 auto !important;
    }
    .pricing-btn {
        justify-content: center !important;
        padding: 12px 24px !important;
    }
}

@media (max-width: 480px) {
    .why-us-visual {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 18px !important;
    }
    .ac-visual-badge h4 {
        font-size: 0.85rem !important;
    }
    .ac-visual-badge p {
        font-size: 0.72rem !important;
    }
    .process-timeline {
        padding-left: 0;
    }
    .process-timeline::before {
        display: none;
    }
    .process-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 16px;
    }
}

/* KVKK Banner Styles */
.kvkk-banner {
    position: fixed;
    bottom: -150%;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 20px;
    display: flex;
    justify-content: center;
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
.kvkk-banner.show {
    bottom: 0;
    pointer-events: auto;
}
.kvkk-content {
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1100px;
    width: 100%;
}
.kvkk-icon {
    font-size: 2.2rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
}
.kvkk-text {
    flex-grow: 1;
}
.kvkk-text h4 {
    color: white;
    font-size: 1.15rem;
    margin: 0 0 6px 0;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: var(--font-outfit);
}
.kvkk-text p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}
.kvkk-link {
    color: #38bdf8;
    text-decoration: underline;
    font-weight: 600;
}
.kvkk-link:hover {
    color: #7dd3fc;
}
.kvkk-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.btn-kvkk {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: var(--font-inter);
}
.btn-kvkk.accept {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}
.btn-kvkk.accept:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}
.btn-kvkk.reject {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-kvkk.reject:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .kvkk-content {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
        gap: 12px;
    }
    .kvkk-icon {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
    }
    .kvkk-text h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    .kvkk-text p {
        font-size: 0.8rem;
    }
    .kvkk-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .btn-kvkk {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}
@media (max-width: 480px) {
    .kvkk-banner {
        padding: 10px;
    }
    .kvkk-actions {
        grid-template-columns: 1fr;
    }
}

/* KVKK Details Modal */
.kvkk-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.kvkk-details-modal.active {
    opacity: 1;
    visibility: visible;
}
.kvkk-details-content {
    background: white;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.kvkk-details-modal.active .kvkk-details-content {
    transform: translateY(0) scale(1);
}
.kvkk-details-header {
    padding: 24px 30px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.kvkk-details-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--secondary);
    font-weight: 700;
}
.btn-kvkk-close {
    background: rgba(15, 23, 42, 0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-kvkk-close:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}
.kvkk-details-body {
    padding: 30px;
    overflow-y: auto;
    color: var(--text-dark);
}
.kvkk-details-body h4 {
    color: var(--primary);
    font-size: 1.05rem;
    margin: 24px 0 10px;
    font-weight: 700;
}
.kvkk-details-body h4:first-child {
    margin-top: 0;
}
.kvkk-details-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 0;
}
.kvkk-details-body::-webkit-scrollbar {
    width: 6px;
}
.kvkk-details-body::-webkit-scrollbar-track {
    background: #f1f5f9;
}
.kvkk-details-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .kvkk-details-content {
        width: 95%;
        max-height: 90vh;
    }
    .kvkk-details-header {
        padding: 16px 20px;
    }
    .kvkk-details-header h3 {
        font-size: 1.1rem;
    }
    .btn-kvkk-close {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    .kvkk-details-body {
        padding: 20px;
    }
    .kvkk-details-body h4 {
        font-size: 0.95rem;
        margin: 16px 0 8px;
    }
    .kvkk-details-body p {
        font-size: 0.85rem;
    }
}
