/* ========================================
   ULUOCAK NAKLİYAT - STYLE.CSS
   ======================================== */

/* ---- CSS Reset & Variables ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #E85D0C;
    --primary-light: #FF7A2F;
    --primary-dark: #C44A00;
    --secondary: #1A2744;
    --secondary-light: #253660;
    --accent: #F5A623;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-500: #6B7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --green: #10B981;
    --gradient-primary: linear-gradient(135deg, #E85D0C 0%, #FF7A2F 50%, #F5A623 100%);
    --gradient-dark: linear-gradient(135deg, #0F1729 0%, #1A2744 50%, #253660 100%);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 25px 60px rgba(0,0,0,0.20);
    --shadow-orange: 0 8px 30px rgba(232,93,12,0.30);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--gray-50);
    color: var(--gray-900);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: 50px; font-family: 'Outfit', sans-serif;
    font-weight: 600; font-size: 15px; text-decoration: none;
    border: none; cursor: pointer; transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232,93,12,0.45);
    filter: brightness(1.05);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

.btn-large { padding: 18px 36px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-badge {
    display: inline-block; background: rgba(232,93,12,0.12);
    color: var(--primary); border: 1px solid rgba(232,93,12,0.3);
    padding: 6px 18px; border-radius: 50px; font-size: 13px;
    font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(28px, 5vw, 44px); font-weight: 800; line-height: 1.2;
    color: var(--secondary); margin-bottom: 16px;
}
.section-description {
    font-size: 17px; color: var(--gray-500); max-width: 600px;
    margin: 0 auto; line-height: 1.7;
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 9999;
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 28px; text-decoration: none;
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
    animation: pulse-wa 2s infinite;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(37,211,102,0.6);
}
.whatsapp-tooltip {
    position: absolute; right: 70px; background: #25D366;
    color: white; padding: 6px 14px; border-radius: 8px;
    font-size: 13px; font-weight: 600; white-space: nowrap;
    opacity: 0; pointer-events: none; transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
.whatsapp-tooltip::after {
    content: ''; position: absolute; right: -6px; top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: #25D366;
}
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 6px 35px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}
.header.scrolled {
    background: rgba(10,15,35,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar {
    display: flex; align-items: center; gap: 32px;
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 20px;
    box-shadow: var(--shadow-orange);
}
.logo-main {
    display: block; font-size: 18px; font-weight: 900;
    color: white; letter-spacing: 1px; line-height: 1;
}
.logo-sub {
    display: block; font-size: 10px; font-weight: 500;
    color: var(--primary-light); letter-spacing: 3px; text-transform: uppercase;
}

.nav-links {
    list-style: none; display: flex; align-items: center; gap: 4px;
    margin: 0 auto;
}
.nav-link {
    color: rgba(255,255,255,0.8); text-decoration: none;
    font-size: 14px; font-weight: 500; padding: 8px 14px;
    border-radius: 8px; transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-cta {
    padding: 10px 22px;
    font-size: 14px;
    flex-shrink: 0;
}

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 8px;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: white; border-radius: 2px; transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(232,93,12,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(37,54,96,0.8) 0%, transparent 60%);
}
.hero-particles {
    position: absolute; inset: 0; overflow: hidden;
}

.hero-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: flex-start;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(232,93,12,0.15); border: 1px solid rgba(232,93,12,0.4);
    color: var(--primary-light); padding: 8px 20px; border-radius: 50px;
    font-size: 13px; font-weight: 600; margin-bottom: 24px;
    animation: fadeInUp 0.6s ease forwards;
}
.hero-badge i { color: var(--accent); }

.hero-title {
    font-size: clamp(40px, 7vw, 76px); font-weight: 900;
    color: var(--white); line-height: 1.1; margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-description {
    font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,0.75);
    max-width: 560px; margin-bottom: 40px; line-height: 1.8;
    animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-description strong { color: var(--accent); }

.hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
    display: flex; align-items: center; gap: 0;
    background: rgba(255,255,255,0.07); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg); padding: 24px 32px;
    animation: fadeInUp 0.6s ease 0.4s both;
}
.stat-item { text-align: center; padding: 0 28px; }
.stat-number {
    font-size: 36px; font-weight: 900; color: var(--white);
    display: flex; align-items: flex-end; justify-content: center; gap: 2px;
    line-height: 1;
}
.stat-number[data-target="81"]::after { content: " İl"; font-size: 16px; color: var(--accent); margin-left: 2px; }
.stat-number[data-target="10"]::after { content: "+"; font-size: 24px; color: var(--accent); }
.stat-number[data-target="5000"]::after { content: "+"; font-size: 24px; color: var(--accent); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 6px; font-weight: 500; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

.hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll a {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.5); text-decoration: none; font-size: 12px;
    letter-spacing: 1px; text-transform: uppercase;
    animation: bounce 2s infinite;
    transition: var(--transition);
}
.hero-scroll a:hover { color: var(--primary-light); }
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Particle dots */
.particle {
    position: absolute; border-radius: 50%;
    background: var(--primary); opacity: 0.15;
    animation: float linear infinite;
}
@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ========================================
   QUICK INFO BAR
   ======================================== */
.quick-info {
    background: var(--secondary);
    padding: 20px 0;
}
.quick-info-grid {
    display: flex; align-items: center; justify-content: center;
    gap: 48px; flex-wrap: wrap;
}
.quick-item {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500;
}
.quick-item i { color: var(--primary-light); font-size: 18px; }

/* ========================================
   SERVICES
   ======================================== */
.services { padding: 100px 0; background: var(--gray-50); }

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

.service-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    position: relative; border: 1px solid var(--gray-200);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}
.service-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-orange);
}

.featured-badge {
    background: var(--gradient-primary); color: white;
    font-size: 12px; font-weight: 700; text-align: center;
    padding: 6px; letter-spacing: 0.5px;
}

.service-image {
    height: 200px; overflow: hidden; position: relative;
}
.service-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-image img { transform: scale(1.08); }

.service-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(26,39,68,0.8));
    display: flex; align-items: flex-end; justify-content: flex-end;
    padding: 16px;
}
.service-image-overlay i {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gradient-primary);
    color: white; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
}

/* Gradient image for services without photos */
.service-image-gradient {
    display: flex; align-items: center; justify-content: center;
}
.si-green { background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #059669 100%); }
.si-orange { background: linear-gradient(135deg, #7c2d12 0%, #c2410c 50%, #ea580c 100%); }
.si-purple { background: linear-gradient(135deg, #312e81 0%, #4338ca 50%, #6366f1 100%); }
.service-icon-large {
    font-size: 64px; color: rgba(255,255,255,0.3);
    transition: var(--transition);
}
.service-card:hover .service-icon-large { color: rgba(255,255,255,0.6); transform: scale(1.1); }

.service-body { padding: 28px; }
.service-icon-wrap {
    width: 50px; height: 50px; border-radius: 14px;
    background: rgba(232,93,12,0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition);
}
.service-icon-wrap i { color: var(--primary); font-size: 22px; }
.service-card:hover .service-icon-wrap {
    background: var(--gradient-primary);
}
.service-card:hover .service-icon-wrap i { color: white; }

.service-body h3 {
    font-size: 20px; font-weight: 700; color: var(--secondary);
    margin-bottom: 12px;
}
.service-body p {
    font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px;
}

.service-features {
    list-style: none; margin-bottom: 20px;
}
.service-features li {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--gray-700); padding: 4px 0;
}
.service-features li i { color: var(--green); font-size: 12px; }

.service-btn {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--primary); font-weight: 700; font-size: 14px;
    text-decoration: none; transition: var(--transition);
}
.service-btn:hover { gap: 14px; }

/* ========================================
   WHY US
   ======================================== */
.why-us {
    padding: 100px 0;
    background: var(--white);
}
.why-us-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center;
}
.why-us-content .section-header { text-align: left; margin-bottom: 40px; }
.why-us-content .section-badge, .why-us-content .section-title,
.why-us-content .section-description { text-align: left; }
.why-us-content .section-description { max-width: 100%; }

.why-features { display: flex; flex-direction: column; gap: 28px; }
.why-feature {
    display: flex; gap: 20px; align-items: flex-start;
}
.why-feature-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(232,93,12,0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: var(--transition);
}
.why-feature-icon i { color: var(--primary); font-size: 22px; }
.why-feature:hover .why-feature-icon {
    background: var(--gradient-primary);
}
.why-feature:hover .why-feature-icon i { color: white; }
.why-feature-content h4 {
    font-size: 16px; font-weight: 700; color: var(--secondary); margin-bottom: 6px;
}
.why-feature-content p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

.why-us-visual { position: relative; }
.visual-card-main {
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-xl); position: relative;
}
.visual-card-main img { width: 100%; height: 420px; object-fit: cover; display: block; }
.visual-card-secondary {
    position: absolute; bottom: -28px; right: -28px;
    width: 200px; height: 140px;
    border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}
.visual-card-secondary img { width: 100%; height: 100%; object-fit: cover; }

.visual-badge-1, .visual-badge-2 {
    position: absolute;
    background: white; border-radius: var(--radius-md);
    padding: 12px 16px; display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow-lg); animation: fadeInUp 0.6s ease both;
}
.visual-badge-1 { top: 24px; left: -24px; }
.visual-badge-2 { bottom: 80px; left: -24px; }
.visual-badge-1 i { font-size: 24px; color: var(--accent); }
.visual-badge-2 i { font-size: 24px; color: var(--green); }
.visual-badge-1 strong, .visual-badge-2 strong {
    display: block; font-size: 18px; font-weight: 800; color: var(--secondary);
}
.visual-badge-1 span, .visual-badge-2 span {
    font-size: 12px; color: var(--gray-500);
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    padding: 100px 0;
    background: var(--secondary);
}
.how-it-works .section-badge { background: rgba(232,93,12,0.2); }
.how-it-works .section-title { color: white; }
.how-it-works .section-description { color: rgba(255,255,255,0.6); }

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

.step-card {
    text-align: center; padding: 40px 28px; position: relative;
    transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); }

.step-number {
    font-size: 72px; font-weight: 900;
    color: rgba(255,255,255,0.04); line-height: 1;
    position: absolute; top: 16px; left: 50%;
    transform: translateX(-50%);
    font-family: 'Outfit', sans-serif;
}

.step-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 28px; color: white;
    box-shadow: var(--shadow-orange);
    position: relative; z-index: 1;
}

.step-card h3 {
    font-size: 18px; font-weight: 700; color: white; margin-bottom: 12px;
}
.step-card p {
    font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7;
}

.step-connector {
    position: absolute; top: 80px; right: -50%; width: 100%;
    height: 2px; background: rgba(232,93,12,0.3);
    z-index: 0;
}
.step-card:last-child .step-connector { display: none; }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

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

.testimonial-card {
    background: white; border-radius: var(--radius-lg);
    padding: 36px; box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition-slow);
    position: relative; overflow: hidden;
}
.testimonial-card::before {
    content: '"'; position: absolute; top: -10px; right: 24px;
    font-size: 120px; color: var(--primary); opacity: 0.06;
    font-family: Georgia, serif; line-height: 1;
}
.testimonial-card:hover {
    transform: translateY(-6px); box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.testimonial-stars { color: var(--accent); font-size: 16px; margin-bottom: 16px; }
.testimonial-stars i { margin-right: 2px; }

.testimonial-card p {
    font-size: 15px; color: var(--gray-700); line-height: 1.8;
    margin-bottom: 24px; font-style: italic;
}

.testimonial-author {
    display: flex; align-items: center; gap: 14px;
}
.author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.testimonial-author strong { font-size: 15px; color: var(--secondary); display: block; }
.testimonial-author span { font-size: 13px; color: var(--gray-500); }

/* ========================================
   GALLERY
   ======================================== */
.gallery { padding: 100px 0; background: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 16px;
}

.gallery-item {
    position: relative; overflow: hidden; border-radius: var(--radius-md);
    cursor: pointer;
}
.gallery-item-large { grid-row: 1 / 3; }

.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(26,39,68,0.85));
    display: flex; flex-direction: column; align-items: center;
    justify-content: flex-end; padding: 20px;
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: white; font-size: 28px; margin-bottom: 8px; }
.gallery-overlay span { color: white; font-size: 14px; font-weight: 600; }

/* ========================================
   CONTACT
   ======================================== */
.contact { padding: 100px 0; background: var(--gray-50); }

.contact-grid {
    display: grid; grid-template-columns: 1fr 380px; gap: 48px;
    align-items: start;
}

.contact-form-wrap {
    background: white; border-radius: var(--radius-xl);
    padding: 48px; box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

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

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--gray-700); margin-bottom: 8px; letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 14px 18px;
    border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif; font-size: 15px;
    color: var(--gray-900); background: var(--gray-50);
    transition: var(--transition); outline: none;
    -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary); background: white;
    box-shadow: 0 0 0 4px rgba(232,93,12,0.1);
}
.form-group textarea { resize: vertical; }

.contact-info-wrap { display: flex; flex-direction: column; gap: 20px; }

.contact-info-card {
    background: var(--secondary); border-radius: var(--radius-xl);
    padding: 36px; color: white;
}
.contact-info-card h3 {
    font-size: 22px; font-weight: 700; margin-bottom: 28px;
    color: white;
}

.contact-info-items { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
    display: flex; align-items: flex-start; gap: 16px;
}
.contact-info-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon i { font-size: 16px; color: var(--primary-light); }
.contact-info-item span { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; }
.contact-info-item a, .contact-info-item p {
    color: white; text-decoration: none; font-size: 15px;
    font-weight: 500; transition: var(--transition); display: block;
}
.contact-info-item a:hover { color: var(--primary-light); }

.social-links { display: flex; gap: 12px; margin-top: 28px; }
.social-link {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: white; text-decoration: none; font-size: 16px;
    transition: var(--transition);
}
.social-link:hover { background: var(--primary); transform: translateY(-3px); }
.social-link.social-wa:hover { background: #25D366; }

.cta-banner {
    background: var(--gradient-primary); border-radius: var(--radius-xl);
    padding: 36px; text-align: center; color: white;
}
.cta-banner-icon { font-size: 48px; margin-bottom: 12px; }
.cta-banner h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.cta-banner p { font-size: 14px; opacity: 0.85; margin-bottom: 20px; }
.cta-banner .btn { background: white; color: var(--primary); box-shadow: none; }
.cta-banner .btn:hover { background: var(--secondary); color: white; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--gray-900); color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
    padding-bottom: 60px;
}

.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.5); }

.footer-links h4, .footer-contact h4 {
    font-size: 14px; font-weight: 700; color: white;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
    color: rgba(255,255,255,0.5); text-decoration: none;
    font-size: 14px; transition: var(--transition);
}
.footer-links ul li a:hover { color: var(--primary-light); padding-left: 6px; }

.footer-contact p {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 12px;
}
.footer-contact p i { color: var(--primary-light); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; color: rgba(255,255,255,0.3);
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed; inset: 0; z-index: 9998;
    background: rgba(0,0,0,0.92); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: var(--transition);
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img {
    max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md);
    object-fit: contain; transform: scale(0.9);
    transition: var(--transition);
}
.lightbox.active img { transform: scale(1); }
.lightbox-close {
    position: absolute; top: 24px; right: 24px;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: none;
    color: white; font-size: 18px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.lightbox-close:hover { background: var(--primary); }

/* ========================================
   TOAST
   ======================================== */
.toast {
    position: fixed; bottom: 100px; right: 28px; z-index: 9999;
    background: var(--green); color: white;
    padding: 16px 24px; border-radius: var(--radius-md);
    display: flex; align-items: center; gap: 12px;
    font-size: 15px; font-weight: 500;
    box-shadow: 0 8px 30px rgba(16,185,129,0.4);
    transform: translateX(calc(100% + 40px));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast.show { transform: translateX(0); }
.toast i { font-size: 20px; }

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

.animate-on-scroll {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.animated {
    opacity: 1; transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
    .why-us-grid { grid-template-columns: 1fr; gap: 48px; }
    .visual-card-secondary { display: none; }
    .visual-badge-1, .visual-badge-2 { display: none; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .step-connector { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item-large { grid-row: auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }

    .nav-links.open {
        display: flex; flex-direction: column; gap: 4px;
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10,15,35,0.97); backdrop-filter: blur(20px);
        justify-content: center; align-items: center;
        z-index: 999;
    }
    .nav-links.open .nav-link {
        font-size: 24px; padding: 16px 32px;
    }

    .hero-stats {
        flex-wrap: wrap; gap: 0;
    }
    .stat-item { padding: 12px 20px; }
    .stat-divider { display: none; }

    .hero-actions { flex-direction: column; align-items: flex-start; }

    .services-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 24px; }

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

    .contact-form .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .quick-info-grid { gap: 20px; justify-content: flex-start; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 36px; }
    .section-title { font-size: 28px; }
    .hero-stats { padding: 16px 20px; }
    .stat-number { font-size: 28px; }
}
