
/* ========== CSS VARIABLES ========== */
:root {
    /* Ana — kullanım: rgb(var(--primary)), rgb(var(--primary) / 0.4) */
    --primary: 0 200 255;
    --primary-dark: 0 150 210;
    --primary-light: 88 225 255;

    /* İkincil vurgular — tek tek kart / rozet / çizgide döndürülür */
    --accent-forest: 34 197 94;
    --accent-teal: 6 182 212;
    --accent-brick: 255 33 101;
    --accent-plum: 124 58 237;
    --accent-sun: 56 189 248;

    --secondary: #1e293b;
    --secondary-light: #334155;

    --dark: #0f172a;
    --text-main: #334155;
    --text-light: #64748b;
    --text-lighter: #94a3b8;

    --white: #ffffff;
    --bg-light: #f8fafc;
    --bg-lighter: #f1f5f9;
    --border: #e2e8f0;
    
    /* Gölgeler */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 30px -5px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.18);
    --shadow-hover: 0 20px 50px -10px rgb(var(--primary) / 0.4);
    
    /* Fontlar */
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Boyutlar */
    --container: 1240px;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background:
        radial-gradient(ellipse 90% 70% at 100% -10%, rgb(var(--primary) / 0.09), transparent 55%),
        radial-gradient(ellipse 80% 60% at -5% 30%, rgb(var(--accent-forest) / 0.07), transparent 50%),
        radial-gradient(ellipse 50% 45% at 85% 85%, rgb(var(--accent-plum) / 0.06), transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 55%, #f6f7fb 100%);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.6;
    padding-bottom: 19px;
    padding-top: 19px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: #2cb1a8;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* ========== UTILITY CLASSES ========== */
.container {
    width: 90%;
    max-width: var(--container);
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
    background: linear-gradient(
        105deg,
        rgb(var(--accent-plum)) 0%,
        rgb(var(--accent-brick)) 22%,
        rgb(var(--primary)) 48%,
        rgb(var(--accent-forest)) 72%,
        rgb(var(--accent-teal)) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        rgb(var(--primary)) 0%,
        rgb(var(--accent-sun)) 45%,
        rgb(var(--accent-brick)) 100%
    );
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(
        135deg,
        rgb(var(--primary-dark)) 0%,
        rgb(var(--primary)) 50%,
        rgb(var(--accent-forest)) 100%
    );
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-outline.light {
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}

.btn-outline.light:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ========== NAVBAR ========== */
.navbar {
    height: 85px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-xs);
}

.navbar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        rgb(var(--primary)) 0%,
        rgb(var(--accent-brick)) 18%,
        rgb(var(--accent-forest)) 38%,
        rgb(var(--accent-teal)) 58%,
        rgb(var(--accent-plum)) 78%,
        rgb(var(--accent-sun)) 100%
    );
    pointer-events: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}

.brand:hover {
    transform: translateY(-2px);
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(
        135deg,
        rgb(var(--primary)) 0%,
        rgb(var(--accent-brick)) 38%,
        rgb(var(--accent-forest)) 68%,
        rgb(var(--accent-teal)) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.5rem;
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-light);
}

.brand-main {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-weight: 500;
    color: var(--secondary);
    position: relative;
    padding: 5px 0;
}

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

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

.btn-nav {
    padding: 12px 24px;
}

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

/* ========== HERO SECTION ========== */
.hero {
    padding: 120px 0;
    background:
        radial-gradient(ellipse 85% 65% at 95% 15%, rgb(var(--primary) / 0.16), transparent 52%),
        radial-gradient(ellipse 70% 55% at 5% 90%, rgb(var(--accent-forest) / 0.11), transparent 48%),
        radial-gradient(ellipse 55% 45% at 70% 95%, rgb(var(--accent-plum) / 0.09), transparent 42%),
        linear-gradient(155deg, #f8fafc 0%, #eef2f7 38%, #ecf4f2 72%, #f5f3ff 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--secondary);
    color: rgb(var(--primary));
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    border-radius: 6px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-title span {
    display: block;
    background: linear-gradient(
        100deg,
        rgb(var(--accent-brick)) 0%,
        rgb(var(--primary)) 35%,
        rgb(var(--accent-sun)) 65%,
        rgb(var(--accent-forest)) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    gap: 40px;
    border-top: 2px solid var(--border);
    padding-top: 35px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-item i {
    font-size: 2.5rem;
    color: rgb(var(--primary));
}

.trust-item strong {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
    font-family: var(--font-head);
    color: var(--secondary);
}

.trust-item span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-visual {
    position: relative;
}

.hero-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
    transform: perspective(1000px) rotateY(-8deg);
    transition: var(--transition);
}

.hero-visual:hover .hero-image {
    transform: perspective(1000px) rotateY(-3deg) translateY(-10px);
}

.float-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.float-badge i {
    font-size: 1.2rem;
}

.fb-1 {
    top: 50px;
    left: -30px;
    border-left: 4px solid rgb(var(--primary));
}

.fb-1 i {
    color: rgb(var(--primary));
}

.fb-2 {
    bottom: 100px;
    right: -40px;
    border-left: 4px solid rgb(var(--accent-forest));
}

.fb-2 i {
    color: rgb(var(--accent-forest));
}

.fb-3 {
    bottom: 30px;
    left: 20px;
    border-left: 4px solid rgb(var(--accent-teal));
}

.fb-3 i {
    color: rgb(var(--accent-teal));
}

/* ========== SERVICES SECTION ========== */
.services-section {
    background: linear-gradient(185deg, #ffffff 0%, #fafbff 40%, #fffefb 100%);
    border-top: 1px solid rgb(var(--accent-teal) / 0.1);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 42px;
}

.brand-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, #0d1020 0%, #090b16 100%);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 90% -5%, rgba(255, 255, 255, 0.1), transparent 45%);
}

.brand-card-blue {
    border-color: rgba(0, 210, 255, 0.28);
}

.brand-card-red {
    border-color: rgba(255, 46, 112, 0.28);
}

.brand-card-header {
    margin-bottom: 18px;
}

.brand-title {
    font-family: 'Montserrat', var(--font-head);
    font-weight: 900;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    line-height: 1.2;
    color: #fff;
    padding: 0;
    margin-bottom: 6px;
    text-transform: none;
}

.brand-subtitle {
    color: #94a3b8;
}

.brand-card-body ul {
    list-style: none;
}

.brand-card-body {
    flex: 1;
}

.brand-card-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 1.5rem;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.brand-card:hover .brand-card-image {
    opacity: 1;
}

.brand-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.brand-feature strong {
    color: #fff;
}

.feature-dot-blue,
.feature-dot-red {
    width: 8px;
    height: 8px;
    margin-top: 10px;
    border-radius: 999px;
    flex: 0 0 8px;
}

.feature-dot-blue {
    background: #00d7ff;
    box-shadow: 0 0 10px rgba(0, 215, 255, 0.8);
}

.feature-dot-red {
    background: #ff2e70;
    box-shadow: 0 0 10px rgba(255, 46, 112, 0.8);
}

.brand-badge-blue,
.brand-badge-red {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 12px;
    margin-bottom: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.brand-badge-blue {
    color: #35dfff;
    background: rgba(0, 215, 255, 0.12);
    border: 1px solid rgba(0, 215, 255, 0.34);
}

.brand-badge-red {
    color: #ff5f95;
    background: rgba(255, 46, 112, 0.12);
    border: 1px solid rgba(255, 46, 112, 0.34);
}

.text-neon-blue {
    color: #00d7ff;
}

.text-racing-red {
    color: #ff2e70;
}

.text-steel-300 {
    color: #94a3b8;
}

.text-steel-400 {
    color: #7f8da5;
}

.services-grid-categories {
    margin-top: 34px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: rgb(var(--primary));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgb(var(--primary));
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    opacity: 1;
}

.services-grid .service-card:nth-child(5n+1)::before { background: rgb(var(--primary)); }
.services-grid .service-card:nth-child(5n+2)::before { background: rgb(var(--accent-forest)); }
.services-grid .service-card:nth-child(5n+3)::before { background: rgb(var(--accent-teal)); }
.services-grid .service-card:nth-child(5n+4)::before { background: rgb(var(--accent-brick)); }
.services-grid .service-card:nth-child(5n+5)::before { background: rgb(var(--accent-plum)); }

.services-grid .service-card:nth-child(5n+1):hover { border-color: rgb(var(--primary)); }
.services-grid .service-card:nth-child(5n+2):hover { border-color: rgb(var(--accent-forest)); }
.services-grid .service-card:nth-child(5n+3):hover { border-color: rgb(var(--accent-teal)); }
.services-grid .service-card:nth-child(5n+4):hover { border-color: rgb(var(--accent-brick)); }
.services-grid .service-card:nth-child(5n+5):hover { border-color: rgb(var(--accent-plum)); }

.service-icon {
    font-size: 2.5rem;
    color: rgb(var(--primary));
    margin-bottom: 20px;
}

.services-grid .service-card:nth-child(5n+1) .service-icon { color: rgb(var(--primary)); }
.services-grid .service-card:nth-child(5n+2) .service-icon { color: rgb(var(--accent-forest)); }
.services-grid .service-card:nth-child(5n+3) .service-icon { color: rgb(var(--accent-teal)); }
.services-grid .service-card:nth-child(5n+4) .service-icon { color: rgb(var(--accent-brick)); }
.services-grid .service-card:nth-child(5n+5) .service-icon { color: rgb(var(--accent-plum)); }

.service-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.service-cat {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-arrow {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--border);
    font-size: 1.2rem;
    transition: var(--transition);
}

.service-card:hover .service-arrow {
    color: rgb(var(--primary));
    right: 20px;
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgb(var(--accent-teal) / 0.08), transparent 55%),
        linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(12%) saturate(1.05);
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 25px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ========== LOCATIONS SECTION ========== */
.locations-section {
    background: linear-gradient(
        145deg,
        #0f172a 0%,
        #1e1b4b 28%,
        #134e4a 55%,
        #0f172a 100%
    );
    color: var(--white);
}

.locations-section .section-title {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.locations-section .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.location-item {
    padding: 10px 20px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--transition);
}

.location-item i {
    margin-right: 6px;
    color: rgb(var(--primary));
}

.location-item:hover {
    background: rgb(var(--primary));
    color: var(--secondary);
    border-color: rgb(var(--primary));
    transform: translateY(-3px);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgb(var(--accent-plum) / 0.06), transparent 50%),
        radial-gradient(ellipse 70% 50% at 90% 80%, rgb(var(--primary) / 0.07), transparent 48%),
        var(--white);
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgb(var(--primary));
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: rgb(var(--primary));
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    background:
        radial-gradient(ellipse 70% 50% at 0% 100%, rgb(var(--accent-brick) / 0.06), transparent 45%),
        var(--bg-light);
}

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

.faq-item {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgb(var(--primary));
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question span {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.05rem;
}

.faq-question i {
    color: rgb(var(--primary));
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    padding-bottom: 25px;
}

/* Active state for FAQ (JavaScript will toggle) */
.faq-answer[style*="display: block"] {
    max-height: 500px;
    padding: 0 30px;
}

/* ========== DETAIL PAGE ========== */
.page-header-detail {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 25px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: rgb(var(--primary));
}

.breadcrumb i {
    font-size: 0.7rem;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 30px;
}

.page-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.detail-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    gap: 60px;
    margin: 80px auto;
}

/* Article Content */
.detail-content {
    background: var(--white);
}

.article-content {
    color: var(--text-main);
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-main);
}

.content-section strong {
    color: var(--secondary);
    font-weight: 600;
}

.content-image {
    margin: 40px 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover {
    border-color: rgb(var(--primary));
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: rgb(var(--primary));
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.step {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius);
    border-left: 4px solid rgb(var(--primary));
}

.step-num {
    width: 50px;
    height: 50px;
    background: rgb(var(--primary));
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-head);
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.cta-section {
    margin-top: 60px;
}

.cta-card {
    background: linear-gradient(135deg, rgb(var(--primary)) 0%, rgb(var(--primary-dark)) 100%);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--secondary);
    box-shadow: var(--shadow-lg);
}

.cta-card h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sidebar */
.detail-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    margin-bottom: 30px;
}

.widget-location {
    background: linear-gradient(135deg, #fff9e6 0%, var(--bg-light) 100%);
    border-color: rgb(var(--primary));
}

.widget-change-location {
    background: linear-gradient(135deg, #f0f9ff 0%, var(--bg-light) 100%);
    border-color: #3b82f6;
}

.widget-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
    text-align: center;
}

.widget-select-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 400px;
    overflow-y: auto;
}

/* İl / ilçe tam listeleri: kaydırma olmadan tüm öğeler */
.widget-select-list.widget-select-list--full {
    max-height: none;
    overflow: visible;
}

.widget-select-list::-webkit-scrollbar {
    width: 6px;
}

.widget-select-list::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 10px;
}

.widget-select-list::-webkit-scrollbar-thumb {
    background: rgb(var(--primary));
    border-radius: 10px;
}

.select-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.select-item i {
    color: rgb(var(--primary));
    font-size: 1rem;
}

.select-item:hover {
    background: rgb(var(--primary));
    color: var(--secondary);
    border-color: rgb(var(--primary));
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.select-item:hover i {
    color: var(--secondary);
}

.widget-contact {
    text-align: center;
    border-top: 5px solid rgb(var(--primary));
}

.widget-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.widget-header i {
    font-size: 2rem;
    color: rgb(var(--primary));
}

.widget-header h3 {
    font-size: 1.5rem;
}

.widget-contact p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
    transition: var(--transition);
}

.contact-btn:hover {
    border-color: rgb(var(--primary));
    background: rgb(var(--primary));
}

.contact-btn.whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.contact-btn.whatsapp:hover {
    background: #1ebd59;
}

.widget-features {
    margin-top: 25px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.widget-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-main);
}

.widget-feature i {
    color: rgb(var(--primary));
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title i {
    color: rgb(var(--primary));
    font-size: 1.1rem;
}

.widget-links {
    display: flex;
    flex-direction: column;
}

.widget-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.widget-link:last-child {
    border-bottom: none;
}

.widget-link i {
    color: rgb(var(--primary));
}

.widget-link:hover {
    color: rgb(var(--primary));
    padding-left: 8px;
}

.widget-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    font-size: 0.8rem;
    padding: 6px 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: var(--transition);
}

.tag-link:hover {
    background: rgb(var(--primary));
    color: var(--secondary);
    border-color: rgb(var(--primary));
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(
        165deg,
        #020617 0%,
        #0f172a 35%,
        #1e1b4b 70%,
        #0c4a6e 100%
    );
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-title {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.footer-desc {
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: rgb(var(--primary));
    color: var(--secondary);
    border-color: rgb(var(--primary));
}

.footer-contact, .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li, .footer-links li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: rgb(var(--primary));
    width: 20px;
}

.footer-contact a:hover, .footer-links a:hover {
    color: rgb(var(--primary));
}

.footer-bottom {
    background: #000;
    padding: 25px 0;
    text-align: center;
}

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

/* ========== FLOATING BUTTONS ========== */
.floating-btn {
    position: fixed;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.floating-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

.floating-btn.whatsapp {
    bottom: 100px;
    background: #25D366;
}

.floating-btn.phone {
    bottom: 25px;
    background: rgb(var(--primary));
    color: var(--secondary);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .detail-wrapper {
        grid-template-columns: 1fr;
    }
    
    .detail-sidebar {
        position: static;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-link {
        padding: 12px 15px;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .btn-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .brand-card {
        padding: 22px;
    }

    .brand-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid, .process-steps {
        grid-template-columns: 1fr;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .floating-btn.whatsapp {
        bottom: 80px;
    }
    
    .cta-card {
        padding: 35px 25px;
    }
    
    .page-header-detail {
        padding: 40px 0;
    }
    
    .detail-wrapper {
        margin: 40px auto;
        gap: 40px;
    }
    
    .widget-select-list {
        max-height: 300px;
    }

    .widget-select-list.widget-select-list--full {
        max-height: none;
    }
    
    .select-item {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

/* ========== SMOOTH ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card, .gallery-item, .testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}