/**
 * PürPak Temizlik - Professional Ocean Blue Theme
 * v1.1.0
 */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --blue-dark: #0c4a6e;
    --blue-main: #0ea5e9;
    --blue-light: #38bdf8;
    --cyan: #06b6d4;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --font: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --duration: 0.5s;
    --section-py: 100px;
    --blue-gradient: linear-gradient(135deg, #0c4a6e 0%, #0ea5e9 100%);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--blue-main);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 9999;
    transition: none;
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback for no JS */
.reveal.active { opacity: 1; transform: none; }

/* ========================================
   OVERLINE LABEL
   ======================================== */
.overline {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-main);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.overline::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--blue-main);
}

.overline-white {
    color: var(--blue-light);
}

.overline-white::before {
    background: var(--blue-light);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav.scrolled .logo { color: var(--blue-dark); }

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--blue-main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark svg {
    width: 22px;
    height: 22px;
    stroke: var(--white);
}

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

.nav-links a {
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.nav.scrolled .nav-links a { color: var(--gray-600); }
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a:hover { color: var(--blue-main); }

.nav-cta {
    background: var(--blue-main) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--blue-light) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

.nav.scrolled .nav-toggle span { background: var(--blue-dark); }

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--blue-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,74,110,0.8) 0%, rgba(14,165,233,0.3) 100%);
}

/* Animated orb */
.hero-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14,165,233,0.3) 0%, transparent 70%);
    top: -100px;
    right: -200px;
    animation: orbFloat 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 30px) scale(1.1); }
    66% { transform: translate(20px, -20px) scale(0.95); }
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 140px 0 100px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.4);
    color: var(--blue-light);
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--blue-light);
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

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

.hero-typed-wrapper {
    display: block;
    color: var(--blue-main);
    min-height: 1.2em;
}

.typed-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--blue-main);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: cursorBlink 0.8s infinite;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--gray-300);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-visual-img {
    position: relative;
    overflow: hidden;
}

.hero-visual-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-visual-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--white);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.hero-visual-badge-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-badge-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.hero-visual-badge strong {
    font-size: 1.5rem;
    color: var(--gray-900);
    display: block;
    line-height: 1;
}

.hero-visual-badge span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-main);
    color: var(--white);
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s var(--ease);
}

.btn-primary-lg:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(14,165,233,0.3);
}

.btn-outline-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-lg:hover {
    background: var(--white);
    color: var(--blue-dark);
    border-color: var(--white);
}

/* ========================================
   BRANDS / TRUST SECTION
   ======================================== */
.brands-section {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
}

.brands-label {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.brands-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: marquee 25s linear infinite;
    width: max-content;
}

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

.brand-item {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-300);
    white-space: nowrap;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
}

.brand-item:hover {
    color: var(--blue-main);
}

.brand-dot {
    width: 6px;
    height: 6px;
    background: var(--gray-300);
    flex-shrink: 0;
}

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

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    background: var(--blue-dark);
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stats-section-gradient {
    background: var(--blue-gradient);
    padding: 80px 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--blue-main);
    line-height: 1;
    margin-bottom: 8px;
}

.stats-section-gradient .stat-value {
    color: var(--white);
}

.stat-text {
    font-size: 0.95rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: var(--section-py) 0;
    background: var(--gray-50);
}

.section-head {
    margin-bottom: 60px;
}

.section-head.center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
}

.section-head.center .section-desc {
    margin: 0 auto;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Numbered service cards */
.service-card {
    background: var(--white);
    padding: 32px;
    border: 1px solid var(--gray-200);
    border-left: 4px solid transparent;
    transition: all 0.4s var(--ease);
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(12, 74, 110, 0.12);
    border-left-color: var(--blue-main);
}

.service-card-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.3s;
}

.service-card:hover .service-card-number {
    color: rgba(14,165,233,0.15);
}

.service-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(14,165,233,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background 0.3s;
}

.service-card:hover .service-card-icon {
    background: var(--blue-main);
}

.service-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--blue-main);
    transition: stroke 0.3s;
}

.service-card:hover .service-card-icon svg {
    stroke: var(--white);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue-main);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s;
}

.service-card-link:hover {
    gap: 12px;
}

/* Legacy service box (services page) */
.service-box {
    background: var(--white);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    border: 1px solid var(--gray-200);
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(12, 74, 110, 0.15);
    border-color: var(--blue-main);
}

.service-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-number {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--blue-main);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.service-icon-sm {
    width: 40px;
    height: 40px;
    background: rgba(14,165,233,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.service-icon-sm svg {
    width: 20px;
    height: 20px;
    max-width: 20px;
    max-height: 20px;
    stroke: var(--blue-main);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.service-box:hover .service-img img {
    transform: scale(1.08);
}

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-info p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue-main);
    font-weight: 600;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 12px;
}

.service-features {
    margin: 16px 0;
    display: grid;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.service-features svg {
    stroke: var(--blue-main);
    flex-shrink: 0;
}

.section-footer {
    text-align: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-main);
    color: var(--white);
    padding: 14px 28px;
    font-weight: 600;
    transition: all 0.3s var(--ease);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-section {
    padding: var(--section-py) 0;
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--gray-200);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-300);
    transition: all 0.4s var(--ease);
    position: relative;
    z-index: 1;
}

.process-step:hover .process-number {
    background: var(--blue-main);
    border-color: var(--blue-main);
    color: var(--white);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ========================================
   WHY US SECTION
   ======================================== */
.why-section {
    padding: var(--section-py) 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.why-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 40px;
    line-height: 1.7;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.why-feature {
    padding: 24px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease);
}

.why-feature:hover {
    border-color: var(--blue-main);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.why-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(14,165,233,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.why-feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--blue-main);
}

.why-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.why-feature p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.why-list {
    display: grid;
    gap: 24px;
}

.why-list li {
    display: flex;
    gap: 16px;
}

.why-icon {
    width: 32px;
    height: 32px;
    background: var(--blue-main);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.why-list li strong {
    display: block;
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.why-list li p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    height: auto;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: var(--section-py) 0;
    background: var(--gray-50);
}

.testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-box {
    background: var(--white);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease);
    position: relative;
}

.testimonial-box::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--gray-100);
    line-height: 1;
    transition: color 0.3s;
}

.testimonial-box:hover {
    border-color: var(--blue-main);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.testimonial-box:hover::before {
    color: rgba(14,165,233,0.15);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--blue-dark);
    color: var(--blue-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--gray-900);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team-section {
    padding: var(--section-py) 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.team-card:hover {
    border-color: var(--blue-main);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-6px);
}

.team-photo {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--blue-dark) 0%, #075985 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo-initial {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.3);
}

.team-card:hover .team-photo-initial {
    color: rgba(255,255,255,0.5);
}

.team-info {
    padding: 24px;
}

.team-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.team-info span {
    font-size: 0.9rem;
    color: var(--blue-main);
    font-weight: 500;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--section-py) 0;
    background: linear-gradient(135deg, var(--blue-dark) 0%, #082f49 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(14,165,233,0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray-300);
    margin-bottom: 32px;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue-light);
    margin-bottom: 24px;
    transition: color 0.3s;
}

.cta-phone:hover {
    color: var(--white);
}

.cta-phone svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
}

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

.btn-white-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--blue-dark);
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s var(--ease);
}

.btn-white-lg:hover {
    background: var(--blue-main);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-white-lg:hover {
    background: var(--white);
    color: var(--blue-dark);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(14, 165, 233, 0.15);
    border-left: 3px solid var(--blue-main);
    margin-bottom: 20px;
}

.footer-guarantee svg {
    width: 24px;
    height: 24px;
    stroke: var(--blue-main);
    flex-shrink: 0;
}

.footer-guarantee span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--blue-main);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links {
    display: grid;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-400);
    transition: all 0.3s;
}

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

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue-main);
}

.footer-contact-text span {
    font-size: 0.85rem;
    color: var(--gray-500);
    display: block;
}

.footer-contact-text a,
.footer-contact-text p {
    color: var(--gray-300);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
    transition: transform 0.3s;
}

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

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

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

/* ========================================
   PAGE HEADER (Inner Pages)
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--blue-dark) 0%, #082f49 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-header .overline {
    color: var(--blue-light);
}

.page-header .overline::before {
    background: var(--blue-light);
}

.page-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}

.page-title span {
    color: var(--blue-main);
}

.page-description {
    font-size: 1.1rem;
    color: var(--gray-300);
    max-width: 600px;
    position: relative;
}

/* Page hero variant (iletisim) */
.page-hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, #082f49 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    position: relative;
}

.page-hero .breadcrumb a {
    color: var(--gray-300);
    transition: color 0.3s;
}

.page-hero .breadcrumb a:hover {
    color: var(--blue-main);
}

.page-hero .breadcrumb span {
    color: var(--gray-400);
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--gray-300);
    position: relative;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.section {
    padding: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    padding: 80px 0;
}

.contact-info {
    background: var(--gray-900);
    padding: 48px;
    color: var(--white);
}

.contact-info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray-400);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-items {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.contact-item:hover {
    background: rgba(255,255,255,0.1);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-main);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-value {
    font-weight: 600;
    color: var(--white);
}

.contact-value a {
    color: var(--white);
    transition: color 0.3s;
}

.contact-value a:hover {
    color: var(--blue-main);
}

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

.contact-social a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.contact-social a:hover {
    background: var(--blue-main);
}

.contact-social svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 48px;
    border: 1px solid var(--gray-200);
    border-left: none;
}

.contact-form .form-title,
.contact-form-wrapper .form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.contact-form-wrapper .form-subtitle {
    color: var(--gray-500);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.form-error,
.alert-error {
    background: #fef2f2;
    color: #dc2626;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border-left: 3px solid #dc2626;
}

.form-success,
.alert-success {
    text-align: center;
    padding: 40px;
}

.form-success svg,
.alert-success svg {
    width: 64px;
    height: 64px;
    stroke: #22c55e;
    margin: 0 auto 16px;
}

.form-success h3,
.alert-success h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    padding: 16px 20px;
    margin-bottom: 20px;
    border-left: 3px solid #22c55e;
    text-align: left;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label,
.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--white);
    color: var(--gray-900);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-input:focus {
    outline: none;
    border-color: var(--blue-main);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

textarea.form-input,
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--blue-main);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s var(--ease);
    font-family: inherit;
}

.form-submit:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.form-submit svg {
    width: 20px;
    height: 20px;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 16px;
}

.form-note svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray-400);
}

/* Map */
.map-section {
    margin-top: -1px;
}

.map-wrapper {
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(30%);
    transition: filter 0.3s;
}

.map-wrapper iframe:hover {
    filter: grayscale(0);
}

/* ========================================
   FAQ PAGE
   ======================================== */
.faq-page-section {
    padding: 80px 0;
}

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

.faq-item-modern {
    border: 1px solid var(--gray-200);
    margin-bottom: 12px;
    background: var(--white);
    transition: all 0.3s var(--ease);
}

.faq-item-modern:hover {
    border-color: var(--blue-main);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-item-modern.active {
    border-color: var(--blue-main);
}

.faq-question-modern {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.3s;
}

.faq-question-modern:hover {
    background: var(--gray-50);
}

.faq-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue-main);
    min-width: 28px;
}

.faq-q-text {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-900);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-toggle svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray-500);
    transition: transform 0.3s;
}

.faq-item-modern.active .faq-toggle {
    background: var(--blue-main);
}

.faq-item-modern.active .faq-toggle svg {
    stroke: var(--white);
    transform: rotate(45deg);
}

.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-answer-modern-inner {
    padding: 0 24px 24px 68px;
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Legacy FAQ (sidebar layout) */
.faq-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    padding: 80px 0;
}

.faq-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.faq-info-card {
    background: var(--blue-dark);
    color: var(--white);
    padding: 32px;
    margin-bottom: 24px;
}

.faq-info-icon {
    width: 56px;
    height: 56px;
    background: var(--blue-main);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.faq-info-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.faq-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.faq-info-card p {
    color: var(--gray-300);
    margin-bottom: 16px;
}

.faq-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-main);
    font-weight: 600;
}

.faq-phone svg {
    width: 20px;
    height: 20px;
}

.faq-quick-links {
    background: var(--white);
    padding: 24px;
    border: 1px solid var(--gray-200);
}

.faq-quick-links h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--blue-main);
}

.faq-quick-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.faq-quick-links a:last-child {
    border-bottom: none;
}

.faq-quick-links a:hover {
    color: var(--blue-main);
    padding-left: 8px;
}

.faq-quick-links svg {
    width: 16px;
    height: 16px;
    stroke: var(--blue-main);
}

.faq-content {
    flex: 1;
}

.faq-container {
    display: grid;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faq-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--blue-main);
    min-width: 32px;
}

.faq-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray-500);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    background: var(--blue-main);
}

.faq-item.active .faq-icon svg {
    stroke: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 0 24px 48px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--blue-main);
    color: var(--white);
    padding: 24px;
    text-align: center;
}

.about-badge-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.9rem;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-list {
    margin-top: 32px;
    display: grid;
    gap: 24px;
}

.about-list li {
    display: flex;
    gap: 16px;
}

.about-list-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-main);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-list-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.about-list-content h4 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.about-list-content p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin: 0;
}

/* Timeline */
.timeline-section {
    padding: var(--section-py) 0;
    background: var(--gray-50);
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: var(--blue-main);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--blue-main);
}

.timeline-year {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue-main);
    margin-bottom: 6px;
}

.timeline-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.timeline-item p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* Stats Section Alt */
.stats-section-alt {
    background: var(--blue-dark);
    padding: 80px 0;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease);
}

.value-card:hover {
    border-color: var(--blue-main);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-6px);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(14,165,233,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.3s;
}

.value-card:hover .value-icon {
    background: var(--blue-main);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--blue-main);
    transition: stroke 0.3s;
}

.value-card:hover .value-icon svg {
    stroke: var(--white);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.value-description {
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========================================
   SERVICES PAGE
   ======================================== */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 80px 0;
}

/* ========================================
   SERVICE DETAIL PAGE
   ======================================== */
.page-header-detail {
    padding: 140px 0 60px;
}

.page-header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: var(--gray-300);
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: var(--blue-main);
}

.breadcrumb-nav span {
    color: var(--white);
    font-weight: 600;
}

.breadcrumb-nav svg {
    stroke: var(--gray-400);
    flex-shrink: 0;
}

.page-header-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.detail-hero-icon {
    width: 140px;
    height: 140px;
    background: rgba(14,165,233,0.15);
    border: 1px solid rgba(14,165,233,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-hero-icon svg {
    width: 64px;
    height: 64px;
    max-width: 64px;
    max-height: 64px;
    stroke: var(--blue-light);
}

/* ---- Detail: Intro Section (2-col) ---- */
.detail-intro-section {
    padding: var(--section-py) 0;
}

.detail-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.detail-intro-img {
    overflow: hidden;
}

.detail-intro-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.detail-intro-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.detail-intro-text p {
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

/* ---- Detail: Scope Section ---- */
.detail-scope-section {
    padding: var(--section-py) 0;
    background: var(--gray-50);
}

.detail-scope-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
}

.detail-scope-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease);
}

.detail-scope-item:hover {
    border-color: var(--blue-main);
    transform: translateX(4px);
}

.detail-scope-item svg {
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
    stroke: var(--blue-main);
    flex-shrink: 0;
}

.detail-scope-item span {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* ---- Detail: Why Section (Advantages) ---- */
.detail-why-section {
    padding: var(--section-py) 0;
}

.detail-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.detail-why-card {
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease);
}

.detail-why-card:hover {
    border-color: var(--blue-main);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.detail-why-icon {
    width: 52px;
    height: 52px;
    background: rgba(14,165,233,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.detail-why-card:hover .detail-why-icon {
    background: var(--blue-main);
}

.detail-why-icon svg {
    width: 26px;
    height: 26px;
    max-width: 26px;
    max-height: 26px;
    stroke: var(--blue-main);
    transition: stroke 0.3s;
}

.detail-why-card:hover .detail-why-icon svg {
    stroke: var(--white);
}

.detail-why-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.detail-why-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ---- Detail: Pricing CTA ---- */
.detail-pricing-cta {
    padding: 80px 0;
    background: var(--blue-gradient);
}

.detail-pricing-inner {
    text-align: center;
    color: var(--white);
}

.detail-pricing-badge {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.detail-pricing-badge svg {
    stroke: var(--white);
}

.detail-pricing-inner h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.detail-pricing-inner > p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.detail-pricing-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.detail-pricing-buttons .btn-white-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ---- Detail: Other Services ---- */
.detail-other-section {
    padding: var(--section-py) 0;
    background: var(--gray-50);
}

.detail-other-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.detail-other-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease);
}

.detail-other-card:hover {
    border-color: var(--blue-main);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.detail-other-icon {
    width: 48px;
    height: 48px;
    background: rgba(14,165,233,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background 0.3s;
}

.detail-other-card:hover .detail-other-icon {
    background: var(--blue-main);
}

.detail-other-icon svg {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
    stroke: var(--blue-main);
    transition: stroke 0.3s;
}

.detail-other-card:hover .detail-other-icon svg {
    stroke: var(--white);
}

.detail-other-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.detail-other-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.detail-other-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blue-main);
    transition: transform 0.3s;
}

.detail-other-card:hover .detail-other-link {
    transform: translateX(4px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--gray-900) !important;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span {
        background: var(--gray-900);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 120px 0 80px;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-grid::before {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-features {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-row {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 40px;
    }

    .contact-form-wrapper {
        border-left: 1px solid var(--gray-200);
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .faq-info-card {
        margin-bottom: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .detail-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .detail-intro-img img {
        height: 360px;
    }

    .detail-scope-grid {
        grid-template-columns: 1fr 1fr;
    }

    .detail-why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .detail-other-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .page-header-inner {
        grid-template-columns: 1fr;
    }

    .page-header-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 70px;
    }

    .hero-inner {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .services-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title,
    .page-hero h1 {
        font-size: 2rem;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-phone {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .faq-sidebar {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .brands-track {
        gap: 40px;
    }

    .brand-item {
        font-size: 1.1rem;
    }

    .detail-scope-grid {
        grid-template-columns: 1fr;
    }

    .detail-why-grid {
        grid-template-columns: 1fr;
    }

    .detail-other-grid {
        grid-template-columns: 1fr 1fr;
    }

    .detail-pricing-inner h2 {
        font-size: 1.7rem;
    }

    .detail-intro-img img {
        height: 280px;
    }

    .page-header-actions {
        flex-direction: column;
    }

    .whatsapp-float {
        left: 16px;
        bottom: 16px;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
    }

    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }

    .faq-question-modern {
        padding: 16px 20px;
    }

    .faq-answer-modern-inner {
        padding: 0 20px 20px 48px;
    }
}

@media (max-width: 480px) {
    .hero-inner {
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-badge {
        right: 0;
        bottom: 0;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-item {
        padding-left: 20px;
    }

    .detail-other-grid {
        grid-template-columns: 1fr;
    }

    .detail-pricing-buttons {
        flex-direction: column;
        align-items: center;
    }
}