/* ===== CSS Variables ===== */
:root {
    --primary: #0077b6; 
    --primary-dark: #005f8a;
    --primary-light: #00b4d8;
    --secondary: #00c9a7;
    --accent: #0077b6;
    --gradient-1: linear-gradient(135deg, #0077b6, #00b4d8);
    --gradient-2: linear-gradient(135deg, #0077b6, #00c9a7);
    --gradient-3: linear-gradient(135deg, #00b4d8, #00c9a7);
    --dark: #0a1628;
    --dark-2: #111d35;
    --dark-3: #1a2742;
    --gray: #6b7b91;
    --gray-light: #94a3b8;
    --light: #e2e8f0;
    --white: #ffffff;
    --shadow: 0 4px 30px rgba(0, 119, 182, 0.15);
    --shadow-lg: 0 10px 50px rgba(0, 119, 182, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 119, 182, 0.3);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== Top Info Bar ===== */
.top-bar {
    background: linear-gradient(90deg, #05101f, #0a1e35, #05101f);
    border-bottom: 1px solid rgba(0, 119, 182, 0.25);
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.top-bar-left span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.top-bar-left span i {
    color: var(--primary-light);
    font-size: 0.7rem;
}

.top-bar-divider {
    color: rgba(255,255,255,0.2) !important;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.top-bar-right a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.top-bar-right a:hover {
    color: var(--primary-light);
}

.top-bar-right a i.fab.fa-instagram:hover {
    color: #e1306c;
}

.top-bar-right a i.fab.fa-whatsapp {
    color: #25D366;
    font-size: 0.9rem;
}

.top-bar-right a i {
    font-size: 0.7rem;
}

/* Navbar'ı top-bar yüksekliği kadar aşağı it */
#navbar {
    top: 37px;
}

@media (max-width: 768px) {
    .top-bar {
        display: none !important;
    }
    .top-bar.hidden {
        display: none !important;
        transform: translateY(-100%) !important;
        opacity: 0 !important;
    }
    #navbar {
        top: 0;
    }
}

/* ===== Professional Preloader ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: #030d1a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s cubic-bezier(0.76, 0, 0.24, 1), visibility 0.8s ease;
    overflow: hidden;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(0, 119, 182, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 201, 167, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 119, 182, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: gradientShift 4s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    from { opacity: 0.7; }
    to { opacity: 1; }
}

.preloader-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.preloader-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: preloaderParticle linear infinite;
}

@keyframes preloaderParticle {
    0% { opacity: 0; transform: translateY(0) scale(0) rotate(0deg); }
    15% { opacity: 0.8; }
    85% { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(-400px) scale(1.5) rotate(180deg); }
}

.pl-content {
    position: relative;
    text-align: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pl-icon-wrap {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dış parlama halkası */
.pl-icon-wrap::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(0, 180, 216, 0.15) 50%, transparent 100%);
    animation: preloaderSpin 3s linear infinite;
}

.pl-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.pl-ring-1 {
    width: 180px;
    height: 180px;
    border-image: none;
    background: transparent;
    border-top: 2.5px solid var(--primary-light);
    border-right: 2.5px solid transparent;
    animation: preloaderSpin 1.4s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    filter: drop-shadow(0 0 6px rgba(0, 180, 216, 0.7));
}

.pl-ring-2 {
    width: 148px;
    height: 148px;
    border-right: 2px solid var(--secondary);
    border-top: 2px solid transparent;
    animation: preloaderSpin 1.8s cubic-bezier(0.5, 0, 0.5, 1) infinite reverse;
    filter: drop-shadow(0 0 5px rgba(0, 201, 167, 0.6));
}

.pl-ring-3 {
    width: 116px;
    height: 116px;
    border-bottom: 2px solid rgba(0, 119, 182, 0.8);
    border-left: 2px solid transparent;
    animation: preloaderSpin 1.1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    filter: drop-shadow(0 0 4px rgba(0, 119, 182, 0.5));
}

@keyframes preloaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pl-mark {
    position: relative;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(145deg, #e8f4fd, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 3px rgba(0, 119, 182, 0.35),
        0 0 30px rgba(0, 180, 216, 0.3),
        0 0 60px rgba(0, 119, 182, 0.15),
        inset 0 1px 0 rgba(255,255,255,0.9);
    animation: plPulse 2.5s ease-in-out infinite;
    z-index: 1;
}

@keyframes plPulse {
    0%, 100% {
        box-shadow: 0 0 0 2px rgba(0, 119, 182, 0.3), 0 0 25px rgba(0, 119, 182, 0.2), inset 0 1px 0 rgba(255,255,255,0.1);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(0, 119, 182, 0.1), 0 0 50px rgba(0, 119, 182, 0.4), inset 0 1px 0 rgba(255,255,255,0.1);
    }
}

.pl-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    animation: plLogoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 6px rgba(0, 119, 182, 0.3));
}

@keyframes plLogoFloat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.08) rotate(3deg); }
}

.pl-brand {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 14px;
    color: var(--white);
    margin: 0 0 10px;
    padding-left: 14px;
    opacity: 0;
    animation: plRevealText 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
    text-shadow: 0 0 30px rgba(0, 180, 216, 0.3);
}

.pl-info {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gray-light);
    letter-spacing: 3px;
    margin-bottom: 28px;
    opacity: 0;
    animation: plRevealText 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.45s forwards;
}

.pl-dot {
    color: var(--primary-light);
    margin: 0 8px;
    filter: drop-shadow(0 0 4px var(--primary-light));
}

.pl-progress {
    width: 240px;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
    opacity: 0;
    animation: plRevealText 0.6s ease 0.65s forwards;
    box-shadow: 0 0 10px rgba(0, 119, 182, 0.2);
}

.pl-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--secondary));
    background-size: 200% 100%;
    border-radius: 3px;
    animation: plProgressFill 2.2s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards, progressShimmer 1.5s linear 0.7s infinite;
    box-shadow: 0 0 8px rgba(0, 180, 216, 0.5);
}

@keyframes plProgressFill {
    to { width: 100%; }
}

@keyframes progressShimmer {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.pl-loading-text {
    font-size: 0.72rem;
    color: var(--gray);
    letter-spacing: 4px;
    margin-top: 18px;
    opacity: 0;
    animation: plRevealText 0.6s ease 0.85s forwards;
    text-transform: uppercase;
}

.pl-dots span {
    animation: plDot 1.5s ease-in-out infinite;
    display: inline-block;
}

.pl-dots span:nth-child(2) { animation-delay: 0.25s; }
.pl-dots span:nth-child(3) { animation-delay: 0.5s; }

@keyframes plDot {
    0%, 60%, 100% { opacity: 0; transform: translateY(0); }
    30% { opacity: 1; transform: translateY(-3px); }
}

@keyframes plRevealText {
    from { opacity: 0; transform: translateY(16px) scale(0.95); filter: blur(4px); }
    to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes plFadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* ===== Splash Screen ===== */
#splashScreen {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    transition: opacity 1s cubic-bezier(0.76, 0, 0.24, 1), visibility 1s ease;
    overflow: hidden;
}

#splashScreen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 70%, rgba(0, 119, 182, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(0, 201, 167, 0.1) 0%, transparent 50%);
    animation: splashBgPulse 4s ease-in-out infinite alternate;
}

@keyframes splashBgPulse {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

/* Animasyonlu arka plan çizgiler */
#splashScreen::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 119, 182, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 119, 182, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridFade 3s ease-in-out forwards;
}

@keyframes gridFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.splash-content {
    position: relative;
    text-align: center;
    padding: 0 20px;
    z-index: 1;
    width: 100%;
    max-width: 960px;
}

.splash-logo-wrap {
    position: relative;
    width: 200px;
    min-height: 200px;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.splash-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 119, 182, 0.2);
}

.splash-circle-1 {
    width: 200px;
    height: 200px;
    animation: splashRipple 3s ease-out infinite;
}

.splash-circle-2 {
    width: 170px;
    height: 170px;
    animation: splashRipple 3s ease-out 0.5s infinite;
}

.splash-circle-3 {
    width: 140px;
    height: 140px;
    animation: splashRipple 3s ease-out 1s infinite;
}

@keyframes splashRipple {
    0% { transform: scale(0.8); opacity: 0.6; border-color: rgba(0, 119, 182, 0.3); }
    50% { transform: scale(1.1); opacity: 0.2; border-color: rgba(0, 180, 216, 0.1); }
    100% { transform: scale(1.2); opacity: 0; border-color: transparent; }
}

.splash-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    z-index: 1;
    animation: splashLogo 2s ease-in-out infinite;
}

@keyframes splashLogo {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.splash-texts {
    margin-bottom: 40px;
}

.splash-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: 15px;
    margin-bottom: 10px;
    padding-left: 15px;
    animation: splashTitleAnim 1s cubic-bezier(0.23, 1, 0.32, 1) 0.1s both;
    text-shadow: 0 0 40px rgba(0, 180, 216, 0.25);
    position: relative;
}

/* Parlayan altı çizgi */
.splash-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), var(--secondary), transparent);
    border-radius: 2px;
    animation: titleUnderline 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.9s forwards;
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.6);
}

@keyframes titleUnderline {
    to { width: 100%; }
}

@keyframes splashTitleAnim {
    from { opacity: 0; transform: translateY(40px) scale(0.9); letter-spacing: 30px; filter: blur(8px); }
    to { opacity: 1; transform: translateY(0) scale(1); letter-spacing: 15px; filter: blur(0); }
}

.splash-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 6px;
    margin-bottom: 22px;
    opacity: 0;
    animation: splashSlideUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
    text-transform: uppercase;
}

.splash-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--secondary));
    margin: 0 auto 22px;
    border-radius: 2px;
    animation: splashLineExpand 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.7s forwards;
    box-shadow: 0 0 12px rgba(0, 180, 216, 0.4);
}

@keyframes splashLineExpand {
    to { width: 80px; }
}

.splash-desc {
    font-size: 0.88rem;
    color: var(--gray-light);
    letter-spacing: 4px;
    font-weight: 400;
    opacity: 0;
    animation: splashSlideUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.85s forwards;
}

@keyframes splashSlideUp {
    from { opacity: 0; transform: translateY(20px); filter: blur(3px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes splashLogoReveal {
    from { opacity: 0; transform: scale(0.4) rotate(-20deg); filter: blur(10px); }
    to { opacity: 1; transform: scale(1) rotate(0deg); filter: blur(0); }
}

.splash-bottom {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: splashSlideUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 1.05s forwards;
}

.splash-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 119, 182, 0.12);
    border: 1px solid rgba(0, 119, 182, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-light);
}

.splash-badge i {
    font-size: 0.75rem;
    color: #fbbf24;
}

.splash-campaign {
    width: 100%;
    max-width: 900px;
    margin-top: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: campaignFadeInUp 1s ease 1.2s forwards;
}

.splash-campaign-text {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 2.7rem;
    font-weight: 900;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.35);
    padding: 36px 90px;
    border-radius: 24px;
    letter-spacing: 1px;
    animation: campaignGlow 2.5s ease-in-out infinite 2.2s;
    line-height: 1.4;
    box-shadow: 0 6px 30px rgba(251, 191, 36, 0.2);
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.15);
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px;
}

.campaign-line-1 { font-size: 2.7rem; font-weight: 900; }
.campaign-line-2 { font-size: 2.7rem; font-weight: 900; }
.campaign-line-3 { font-size: 2.7rem; font-weight: 900; }

.campaign-line-1::after { content: '·'; margin-left: 16px; opacity: 0.5; }
.campaign-line-2::after { content: '·'; margin-left: 16px; opacity: 0.5; }

@keyframes campaignFadeInUp {
    from { opacity: 0; transform: translateY(30px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes campaignGlow {
    0%, 100% { box-shadow: 0 6px 30px rgba(251, 191, 36, 0.2); border-color: rgba(251, 191, 36, 0.35); }
    50% { box-shadow: 0 6px 50px rgba(251, 191, 36, 0.45); border-color: rgba(251, 191, 36, 0.7); }
}

.splash-phones {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.splash-phones {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.splash-phone-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 119, 182, 0.12);
    border: 1px solid rgba(0, 119, 182, 0.25);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
    opacity: 0;
    animation: splashPhoneReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.25s forwards;
    position: relative;
    overflow: hidden;
}

.splash-phone-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.1), transparent);
    transform: translateX(-100%);
    animation: phoneShimmer 2s ease 2s infinite;
}

@keyframes phoneShimmer {
    to { transform: translateX(100%); }
}

.splash-phone-item:nth-child(2) {
    animation-delay: 1.45s;
}

@keyframes splashPhoneReveal {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.splash-phone-item i {
    color: var(--primary-light);
    font-size: 0.95rem;
}

.splash-phone-item:hover {
    background: var(--gradient-1);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.4);
}

@media (max-width: 480px) {
    .splash-phone-item {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
}
@media (max-width: 768px) {
    .splash-campaign {
        margin-top: 20px;
    }

    .splash-campaign-text {
        font-size: 1.15rem;
        font-weight: 900;
        padding: 18px 24px;
        border-radius: 18px;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .campaign-line-1 { font-size: 1.15rem; font-weight: 900; }
    .campaign-line-2 { font-size: 1.15rem; font-weight: 900; }
    .campaign-line-3 { font-size: 1.15rem; font-weight: 900; }
}

@media (max-width: 480px) {
    .splash-campaign-text {
        font-size: 0.85rem;
        padding: 12px 16px;
        gap: 6px;
    }

    .campaign-line-1 { font-size: 0.85rem; }
    .campaign-line-2 { font-size: 0.85rem; }
    .campaign-line-3 { font-size: 0.85rem; }
}

/* ===== Particles Container ===== */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-light);
    opacity: 0.08;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.08;
    }
    90% {
        opacity: 0.08;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* ===== Section Commons ===== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 119, 182, 0.15);
    color: var(--primary-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 119, 182, 0.2);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

.text-gradient {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Navbar ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 16px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 119, 182, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo .logo-img {
    width: 50px;
    height: 50px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 119, 182, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(0, 119, 182, 0); }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--primary-light);
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-light);
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(0, 119, 182, 0.15);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary-light);
    border-radius: 2px;
}

/* Nav Phone (masaüstü: menünün en sağında) */
.nav-phone-dropdown-wrapper {
    order: 99;
    margin-left: 8px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Logo Mobile Text */
.logo-text-mobile {
    display: none;
}

.logo-mobile-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1.1;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .logo-mobile-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
        letter-spacing: 4px;
    }
}

.logo-mobile-subtitle {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    color: #fbbf24;
    letter-spacing: 2px;
    opacity: 0.85;
    white-space: nowrap;
}

.logo-mobile-sub {
    display: block;
    font-size: 0.55rem;
    font-weight: 500;
    color: #fbbf24;
    letter-spacing: 3px;
    opacity: 0.85;
    text-transform: uppercase;
}

/* Nav Instagram Button (sadece mobilde) */
.nav-ig-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.nav-ig-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.5);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10001;
    padding: 5px;
    order: -1;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    z-index: 10000;
    padding: 100px 30px 30px;
    transition: right 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid rgba(0, 119, 182, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-light);
    border-radius: 12px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-link:hover {
    background: rgba(0, 119, 182, 0.15);
    color: var(--white);
    transform: translateX(10px);
}

.mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
}

/* ===== Hero Section ===== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-logo-wrapper {
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-logo-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    border: 3px solid rgba(0, 119, 182, 0.3);
    box-shadow: 0 0 30px rgba(0, 119, 182, 0.2);
    margin: 0 auto;
    display: block;
}

/* PC için hero resmi */
@media (min-width: 1024px) {
    .hero-logo-wrapper {
        max-width: 800px;
    }
    
    .hero-logo-img {
        max-width: 700px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-logo-img {
        max-width: 100%;
        height: 350px;
    }
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.water-wave {
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    border-radius: 43%;
    opacity: 0.08;
    background: var(--primary-light);
}

.wave1 {
    animation: waveRotate 15s linear infinite;
    bottom: -80%;
    left: -20%;
}

.wave2 {
    animation: waveRotate 20s linear infinite reverse;
    bottom: -85%;
    left: -10%;
    background: var(--secondary);
    opacity: 0.05;
}

.wave3 {
    animation: waveRotate 25s linear infinite;
    bottom: -90%;
    left: 0;
    opacity: 0.03;
}

@keyframes waveRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.7) 50%, rgba(10, 22, 40, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 119, 182, 0.15);
    border: 1px solid rgba(0, 119, 182, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 24px;
    margin-top: 80px;
    animation: badgeBounce 2s ease-in-out infinite;
}

/* PC için hero badge ayarı */
@media (min-width: 1024px) {
    .hero-badge {
        margin-top: 100px;
        font-size: 0.8rem;
        padding: 8px 20px;
    }
}

@keyframes badgeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    animation: titleSlideUp 0.8s ease-out both;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

@keyframes titleSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--gray-light);
    max-width: 650px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 119, 182, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 119, 182, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-light);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse-wheel {
    width: 3px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 2px;
    animation: mouseScroll 1.5s ease-in-out infinite;
}

@keyframes mouseScroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: var(--gray-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== Services Section ===== */
#services {
    background: var(--dark);
    position: relative;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 119, 182, 0.05), transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(0, 201, 167, 0.03), transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 119, 182, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    border-color: rgba(0, 119, 182, 0.3);
    background: rgba(0, 119, 182, 0.08);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-2);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 119, 182, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(0, 119, 182, 0); }
}

.service-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(-5deg) scale(1.1);
}

.service-icon-bg {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 70px;
    height: 70px;
    background: var(--gradient-2);
    border-radius: 18px;
    opacity: 0.3;
    transition: var(--transition);
}

.service-card:hover .service-icon-bg {
    transform: translate(5px, 5px);
    opacity: 0.5;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--gray-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--gray-light);
}

.service-features li i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.service-price {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.price-from {
    font-size: 0.85rem;
    color: var(--gray);
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Marquee Section ===== */
.marquee-section {
    background: var(--gradient-1);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.marquee-track {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-content span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}

.marquee-content span i {
    font-size: 0.7rem;
    color: var(--secondary);
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== Districts Section ===== */
#districts {
    background: var(--dark);
    position: relative;
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.district-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.district-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 119, 182, 0.3);
}

.district-image {
    height: 180px;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.district-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.district-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.district-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    transition: var(--transition);
    animation: districtPin 3s ease-in-out infinite;
}

@keyframes districtPin {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.1); }
}

.district-card:hover .district-icon {
    transform: scale(1.2) !important;
    background: rgba(255, 255, 255, 0.3);
}

.district-info {
    padding: 24px;
}

.district-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.district-detail {
    font-size: 0.88rem;
    color: var(--gray-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.district-neighborhoods {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.district-neighborhoods span {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 119, 182, 0.1);
    color: var(--primary-light);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(0, 119, 182, 0.15);
}

.district-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.district-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 201, 167, 0.1);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
}

.district-features span i {
    font-size: 0.65rem;
}

/* ===== About Section ===== */
#about {
    background: var(--dark-2);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-main-visual {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px dashed rgba(0, 119, 182, 0.3);
    border-radius: 50%;
    animation: rotateCircle 20s linear infinite;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-center-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    animation: iconPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 119, 182, 0.4), 0 0 30px rgba(0, 119, 182, 0.2); }
    50% { box-shadow: 0 0 0 20px rgba(0, 119, 182, 0), 0 0 60px rgba(0, 119, 182, 0.3); }
}

.about-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 119, 182, 0.3);
}

.about-card-1 {
    top: 10px;
    left: 20px;
    animation: aboutCardFloat 4s ease-in-out infinite;
}

.about-card-2 {
    top: 30px;
    right: 20px;
    animation: aboutCardFloat 4s ease-in-out 1s infinite;
}

.about-card-3 {
    bottom: 40px;
    left: 0;
    animation: aboutCardFloat 4s ease-in-out 2s infinite;
}

@keyframes aboutCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    margin: 0 auto 12px;
}

.about-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.about-card p {
    font-size: 0.8rem;
    color: var(--gray-light);
}

.about-text {
    font-size: 1rem;
    color: var(--gray-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 119, 182, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-light);
    flex-shrink: 0;
    transition: var(--transition);
}

.about-feature:hover .feature-icon {
    background: var(--gradient-1);
    color: var(--white);
    transform: rotate(-5deg);
}

.feature-text h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--gray-light);
}

/* ===== Process Section ===== */
#process {
    background: var(--dark);
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 40px;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(0, 119, 182, 0.2);
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px 0;
    position: relative;
}

.step-number {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-light);
    background: rgba(0, 119, 182, 0.15);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(0, 119, 182, 0.3);
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: var(--gradient-1);
    color: var(--white);
    border-color: var(--primary-light);
    transform: scale(1.1);
}

.step-icon {
    position: absolute;
    left: 25px;
    top: 65px;
    font-size: 1.2rem;
    color: var(--primary-light);
    z-index: 2;
}

.step-content {
    padding-top: 10px;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.92rem;
    color: var(--gray-light);
    line-height: 1.7;
}

/* ===== Portfolio / Gallery Section ===== */
#portfolio {
    background: var(--dark-2);
    position: relative;
}

#portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 20%, rgba(0, 119, 182, 0.04), transparent 50%);
    pointer-events: none;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background: rgba(0, 119, 182, 0.12);
    color: var(--white);
    border-color: rgba(0, 119, 182, 0.3);
}

.filter-btn.active {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(0, 119, 182, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-smooth);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 119, 182, 0.3);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    display: block;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 20px;
    background: linear-gradient(transparent, rgba(10, 22, 40, 0.95));
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.portfolio-overlay p {
    font-size: 0.85rem;
    color: var(--gray-light);
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-filter {
        gap: 8px;
    }
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: bubbleFloat linear infinite;
}

.cta-bubble-1 { width: 100px; height: 100px; left: 10%; animation-duration: 8s; }
.cta-bubble-2 { width: 60px; height: 60px; left: 30%; animation-duration: 12s; animation-delay: 2s; }
.cta-bubble-3 { width: 80px; height: 80px; left: 50%; animation-duration: 10s; animation-delay: 4s; }
.cta-bubble-4 { width: 120px; height: 120px; left: 70%; animation-duration: 14s; animation-delay: 1s; }
.cta-bubble-5 { width: 40px; height: 40px; left: 90%; animation-duration: 6s; animation-delay: 3s; }

@keyframes bubbleFloat {
    0% { transform: translateY(100%) scale(0); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-400%) scale(1); opacity: 0; }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ===== Testimonials Section ===== */
#testimonials {
    background: var(--dark-2);
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 119, 182, 0.3);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars { margin-bottom: 16px; }

.testimonial-stars i {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
}

.author-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.author-info span i {
    color: var(--primary-light);
    font-size: 0.7rem;
}

/* ===== Contact Section ===== */
#contact {
    background: var(--dark);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-light);
    font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    background: rgba(0, 119, 182, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.form-group select option {
    background: var(--dark-2);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(0, 119, 182, 0.3);
    transform: translateX(5px);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 119, 182, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-light);
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.contact-card a,
.contact-card p {
    font-size: 0.88rem;
    color: var(--gray-light);
}

.contact-card a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(0, 119, 182, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-light);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-1);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== Footer ===== */
#footer {
    background: var(--dark-3);
    position: relative;
    z-index: 1;
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.8;
}

.footer-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a i {
    font-size: 0.6rem;
    color: var(--primary-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray-light);
}

.footer-contact i {
    color: var(--primary-light);
    width: 20px;
}

.footer-contact a:hover { color: var(--white); }

.footer-social { display: flex; gap: 10px; }

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--gray-light);
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--gradient-1);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom { padding: 20px 0; }

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom-content p {
    font-size: 0.82rem;
    color: var(--gray);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ===== Phone Call Button Pulse ===== */
.btn-call {
    position: relative;
    overflow: visible;
}

.btn-call-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 2px solid var(--primary-light);
    animation: callPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes callPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* ===== Call Float ===== */
.call-float {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(0, 119, 182, 0.4);
    animation: callFloatPulse 2s ease-in-out infinite;
    transition: var(--transition);
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 119, 182, 0.5);
}

@keyframes callFloatPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 119, 182, 0.4), 0 4px 20px rgba(0, 119, 182, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(0, 119, 182, 0), 0 4px 20px rgba(0, 119, 182, 0.4); }
}

.call-tooltip {
    position: absolute;
    left: 72px;
    background: var(--white);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    transform: translateX(-10px);
    pointer-events: none;
}

.call-float:hover .call-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s ease-in-out infinite;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4), 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 4px 20px rgba(37, 211, 102, 0.4); }
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: var(--white);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    transform: translateX(10px);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ===== Scroll Animations ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll[data-delay="100"] { transition-delay: 0.1s; }
.animate-on-scroll[data-delay="150"] { transition-delay: 0.15s; }
.animate-on-scroll[data-delay="200"] { transition-delay: 0.2s; }
.animate-on-scroll[data-delay="300"] { transition-delay: 0.3s; }
.animate-on-scroll[data-delay="400"] { transition-delay: 0.4s; }
.animate-on-scroll[data-delay="450"] { transition-delay: 0.45s; }
.animate-on-scroll[data-delay="600"] { transition-delay: 0.6s; }

/* ===== Glow Effects ===== */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 119, 182, 0.2); }
    50% { box-shadow: 0 0 40px rgba(0, 119, 182, 0.4); }
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

/* ===== Selection ===== */
::selection {
    background: rgba(0, 119, 182, 0.3);
    color: var(--white);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { height: 350px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-phone {
        display: none !important;
    }

    .logo-img,
    .logo-text {
        display: none !important;
    }

    .logo-text-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .nav-ig-btn {
        display: flex;
    }

    .btn-call {
        display: none !important;
    }

    .hero-buttons .btn-whatsapp {
        display: none !important;
    }

    .hamburger {
        display: flex;
        margin-left: 0;
    }

    .nav-container { justify-content: space-between; }

    .logo {
        flex-shrink: 0;
        flex: 1;
        justify-content: center;
    }

    .nav-ig-btn { margin-left: 12px; }

    .nav-phone-dropdown-wrapper {
        display: none !important;
    }

    .nav-phone {
        display: flex !important;
        order: unset;
        margin-left: 0;
        width: 100%;
        justify-content: center;
        border-radius: 0;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .nav-phone-dropdown {
        position: fixed;
        bottom: 58px;
        left: 10px;
        right: 10px;
        width: auto;
        min-width: unset;
        border-radius: 14px 14px 0 0;
    }

    section { padding: 70px 0; }
    #hero { padding-top: 40px; }
    .hero-title .title-line { font-size: 1.5rem; }
    .hero-title .title-line.highlight { font-size: 1.8rem; }
    .hero-stats { gap: 16px; }
    .hero-stats .stat-number { font-size: 1.6rem; }
    .hero-stats .stat-label { font-size: 0.75rem; }
    .stat-divider { width: 1px; height: 30px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .districts-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .process-step { gap: 20px; }
    .step-number { width: 60px; height: 60px; font-size: 0.75rem; }
    .process-line { left: 30px; }
    .about-visual { height: 300px; }
    .service-card { text-align: center; }
    .service-icon-wrapper { margin-left: auto; margin-right: auto; }
    .service-features { display: flex; flex-direction: column; align-items: center; }
    .about-content,
    .process-step .step-content { text-align: center; }
    .about-features { align-items: center; }
    .about-feature { justify-content: center; }
    .process-step { flex-direction: column; align-items: center; text-align: center; }
    .process-line { display: none; }
    .district-info { text-align: center; }
    .district-features { justify-content: center; }
    .testimonial-card { text-align: center; }
    .testimonial-author { justify-content: center; }
    .contact-card { justify-content: center; text-align: center; }
    .social-links { justify-content: center; }
}

@media (max-width: 576px) {
    .call-float {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    .hero-stats { gap: 10px; flex-wrap: nowrap; }
    .hero-stats .stat-number { font-size: 1.3rem; }
    .hero-stats .stat-label { font-size: 0.65rem; }
    .stat-divider { width: 1px; height: 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .districts-grid { grid-template-columns: 1fr; }
    .testimonials-wrapper { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-buttons .btn-secondary { width: auto; padding: 12px 24px; font-size: 0.85rem; }
    .btn-lg { width: 100%; justify-content: center; }
    .about-visual { height: 250px; }
    .about-card { padding: 14px; }
    .about-card h4 { font-size: 0.8rem; }
    .about-card p { font-size: 0.7rem; }
    .about-center-icon { width: 70px; height: 70px; font-size: 1.8rem; }
    .rotating-circle { width: 150px; height: 150px; }
}

/* ===== Print Styles ===== */
@media print {
    #navbar, .back-to-top, .whatsapp-float, #preloader, #particles-container {
        display: none !important;
    }

    body {
        background: white;
        color: #333;
    }
}

/* ===== Navbar Logo Gizle ve ROTAM Yazısı ===== */
#navbar .logo-img,
#navbar .logo-text {
    display: none !important;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fbbf24;
    letter-spacing: 3px;
}

.nav-logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: #fbbf24;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .nav-logo-text {
        display: none;
    }
}

/* ===== FAQ Section ===== */
#faq {
    background: var(--dark-2);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(0, 119, 182, 0.3);
}

.faq-item.active {
    border-color: rgba(0, 119, 182, 0.5);
    background: rgba(0, 119, 182, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    flex: 1;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: rgba(0, 119, 182, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 0.9rem;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-toggle {
    background: var(--gradient-1);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--gray-light);
    line-height: 1.8;
}

/* ===== Live Chat Widget - WhatsApp Style ===== */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
}

.chat-toggle {
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    border: none;
    animation: waChatPulse 2.5s ease-in-out infinite;
}

.chat-toggle:hover {
    transform: scale(1.1);
    background: #1ebe5d;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

@keyframes waChatPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45), 0 6px 24px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 6px 24px rgba(37, 211, 102, 0.35); }
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    height: 520px;
    background: #0b141a;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: waChatSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chat-window.active {
    display: flex;
}

@keyframes waChatSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.92); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* WhatsApp Header */
.chat-header {
    background: #1f2c34 !important;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.chat-header-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    font-weight: 700;
}

.chat-header-info {
    flex: 1;
    min-width: 0;
}

.chat-header-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e9edef;
    margin: 0 0 2px;
    line-height: 1.2;
}

.chat-header-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: #25D366;
    font-weight: 500;
}

.chat-header-status::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #25D366;
    border-radius: 50%;
    animation: onlinePulse 2s ease-in-out infinite;
}

@keyframes onlinePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.chat-header-actions {
    display: flex;
    gap: 4px;
}

.chat-close {
    background: none;
    border: none;
    color: #aebac1;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.chat-close:hover {
    background: rgba(255,255,255,0.08);
    color: #e9edef;
}

/* Chat Messages Area - WhatsApp wallpaper feel */
.chat-messages {
    flex: 1;
    padding: 16px 14px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #0b141a;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='35' fill='none' stroke='%23ffffff' stroke-width='0.3' stroke-opacity='0.03'/%3E%3C/svg%3E");
}

.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.chat-message {
    max-width: 82%;
    padding: 9px 14px 6px;
    border-radius: 10px;
    font-size: 0.875rem;
    line-height: 1.55;
    position: relative;
    word-wrap: break-word;
}

/* WhatsApp-style message time */
.chat-message::after {
    content: attr(data-time);
    display: block;
    font-size: 0.65rem;
    margin-top: 3px;
    opacity: 0.6;
    text-align: right;
}

.chat-message.bot {
    background: #202c33;
    color: #e9edef;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* WhatsApp bot bubble tail */
.chat-message.bot::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 8px solid #202c33;
    border-left: 8px solid transparent;
}

.chat-message.user {
    background: #005c4b;
    color: #e9edef;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* WhatsApp user bubble tail */
.chat-message.user::before {
    content: '';
    position: absolute;
    right: -7px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 8px solid #005c4b;
    border-right: 8px solid transparent;
}

/* Quick Buttons */
.chat-quick-buttons {
    padding: 10px 12px;
    background: #111b21;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.quick-btn {
    background: #1f2c34;
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: #25D366;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.quick-btn:hover {
    background: rgba(37, 211, 102, 0.18);
    border-color: #25D366;
    transform: translateY(-1px);
}

/* Input Area */
.chat-input-wrapper {
    padding: 10px 12px;
    background: #1f2c34;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.chat-input {
    flex: 1;
    padding: 11px 16px;
    background: #2a3942;
    border: none;
    border-radius: 24px;
    color: #e9edef;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: background 0.25s ease;
}

.chat-input:focus {
    background: #323e47;
}

.chat-input::placeholder {
    color: #8696a0;
}

.chat-send {
    width: 44px;
    height: 44px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.chat-send:hover {
    background: #1ebe5d;
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* ===== Testimonials Slider ===== */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-slide .testimonial-card {
    max-width: 600px;
    margin: 0 auto;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    background: rgba(0, 119, 182, 0.15);
    border: 1px solid rgba(0, 119, 182, 0.3);
    border-radius: 50%;
    color: var(--primary-light);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary-light);
    width: 30px;
    border-radius: 5px;
}

/* ===== Responsive for new sections ===== */
@media (max-width: 768px) {
    .chat-window {
        width: 310px;
        height: 460px;
        right: -8px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .chat-window {
        width: 290px;
        height: 420px;
        right: -6px;
    }
}

/* ===== Phone Dropdown ===== */
.phone-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.phone-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 119, 182, 0.3);
    border-radius: 16px;
    padding: 8px;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 119, 182, 0.15);
}

.phone-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.phone-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: rgba(10, 22, 40, 0.98);
    border-left: 1px solid rgba(0, 119, 182, 0.3);
    border-top: 1px solid rgba(0, 119, 182, 0.3);
}

.phone-dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-dropdown-item:hover {
    background: rgba(0, 119, 182, 0.2);
    transform: translateX(4px);
}

.phone-dropdown-item i {
    font-size: 1.2rem;
    color: var(--primary-light);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.phone-dropdown-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.phone-dropdown-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.phone-dropdown-number {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.phone-dropdown-item:hover .phone-dropdown-number {
    color: var(--primary-light);
}

.phone-dropdown-item + .phone-dropdown-item {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
    .phone-dropdown {
        min-width: 240px;
        left: 50%;
    }
    
    .phone-dropdown-number {
        font-size: 0.95rem;
    }
    
    /* Mobilde Sabit Hat/Cep Telefonu yazılarını gizle */
    .phone-dropdown-label,
    .nav-phone-dropdown-label {
        display: none;
    }
}

/* ===== Nav Phone Dropdown ===== */
.nav-phone-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.nav-phone {
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-phone-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 119, 182, 0.3);
    border-radius: 14px;
    padding: 8px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10001;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 119, 182, 0.15);
}

.nav-phone-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-phone-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    transform: rotate(45deg);
    width: 14px;
    height: 14px;
    background: rgba(10, 22, 40, 0.98);
    border-left: 1px solid rgba(0, 119, 182, 0.3);
    border-top: 1px solid rgba(0, 119, 182, 0.3);
}

.nav-phone-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-phone-dropdown-item:hover {
    background: rgba(0, 119, 182, 0.2);
    transform: translateX(4px);
}

.nav-phone-dropdown-item i {
    font-size: 1.1rem;
    color: var(--primary-light);
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.nav-phone-dropdown-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-phone-dropdown-label {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gray-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-phone-dropdown-number {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.nav-phone-dropdown-item:hover .nav-phone-dropdown-number {
    color: var(--primary-light);
}

.nav-phone-dropdown-item + .nav-phone-dropdown-item {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===== Call Float Dropdown ===== */
.call-float-wrapper {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
}

.call-float {
    cursor: pointer;
    border: none;
}

.call-float-dropdown {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 119, 182, 0.3);
    border-radius: 14px;
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 119, 182, 0.15);
}

.call-float-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.call-float-dropdown::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    transform: rotate(45deg);
    width: 14px;
    height: 14px;
    background: rgba(10, 22, 40, 0.98);
    border-right: 1px solid rgba(0, 119, 182, 0.3);
    border-bottom: 1px solid rgba(0, 119, 182, 0.3);
}

.call-float-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
}

.call-float-dropdown-item:hover {
    background: rgba(0, 119, 182, 0.2);
    transform: translateX(4px);
}

.call-float-dropdown-item i {
    font-size: 1rem;
    color: var(--primary-light);
    width: 20px;
    text-align: center;
}

.call-float-dropdown-item + .call-float-dropdown-item {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 576px) {
    .call-float-wrapper {
        left: 16px;
        bottom: 24px;
    }
    
    .call-float-dropdown {
        min-width: 180px;
    }
    
    .call-float-dropdown-item {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
}
