/* =====================================================
   GAMING LAPTOP ALAN YERLER - ANA STIL DOSYASI
   Website: https://www.arzdenizbilisim.com.tr
   ===================================================== */

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 14px;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* =====================================================
   HEADER STILLERI
   ===================================================== */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #00ff88;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: #ff6b6b;
    font-size: 24px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #00ff88;
}

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

.contact-btn {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.5);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 160px 0 120px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%2300ff88" opacity="0.3"/></svg>') repeat;
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, #f8f9fa);
}

@keyframes moveBackground {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

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

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.3;
}

.hero h1 span {
    color: #00ff88;
    display: inline-block;
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

.btn {
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.5);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid #00ff88;
}

.btn-outline:hover {
    background: #00ff88;
    color: #1a1a2e;
}

/* =====================================================
   SLIDER SECTION
   ===================================================== */
.slider-section {
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 26, 46, 0.95));
    color: white;
    padding: 80px 40px 40px;
}

.slide h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #00ff88;
}

.slide p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.slider-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.2);
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-nav button:hover {
    background: #00ff88;
    color: #1a1a2e;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.services-white {
    background: white;
}

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

.section-title h2 {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-dark .section-title h2 {
    color: #00ff88;
}

.section-title p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-dark .section-title p {
    color: rgba(255,255,255,0.8);
}

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

.service-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    text-align: center;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
}

.services-dark .service-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.services-dark .service-card:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
}

.service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #1a1a2e;
    font-weight: 600;
}

.service-card h3 a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s;
}

.service-card h3 a:hover {
    color: #00ff88;
}

.services-dark .service-card h3,
.services-dark .service-card h3 a {
    color: #00ff88;
}

.service-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

.services-dark .service-card p {
    color: rgba(255,255,255,0.7);
}

.service-card p a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
}

.service-card p a:hover {
    text-decoration: underline;
}

.service-card p strong a {
    color: #00cc6a;
}

/* =====================================================
   FEATURES SECTION
   ===================================================== */
.features {
    padding: 100px 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px solid #eee;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #00ff88;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #1a1a2e;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-section {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    padding: 100px 0;
    color: #1a1a2e;
}

.contact-section .section-title h2 {
    color: #1a1a2e;
}

.contact-section .section-title p {
    color: rgba(26, 26, 46, 0.8);
}

.contact-boxes {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.contact-box {
    background: rgba(255,255,255,0.2);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    min-width: 280px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.contact-box:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-5px);
}

.contact-box i {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.contact-box i.fa-whatsapp {
    color: #128c7e;
}

.contact-box i.fa-map-marker-alt {
    color: #ff6b6b;
}

.contact-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-box p {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-box .btn {
    margin-top: 20px;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 25px;
    color: #00ff88;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-section a:hover {
    color: #00ff88;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-info i {
    color: #00ff88;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-bottom a {
    color: #00ff88;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* =====================================================
   WHATSAPP FLOAT BUTTON
   ===================================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

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

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* =====================================================
   RESPONSIVE TASARIM
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .services-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a2e;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 26px;
    }
    
    .hero p {
        font-size: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .slide img {
        height: 300px;
    }
    
    .slide-content {
        padding: 40px 20px 20px;
    }
    
    .slide h3 {
        font-size: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact-info p {
        justify-content: center;
    }
    
    .contact-boxes {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-box {
        width: 100%;
        max-width: 350px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
}

/* =====================================================
   PREMIUM REVIZE - KOMPAKT, ELEKTRIKLI, TUTARLI
   ===================================================== */
:root {
    --ad-bg: #050712;
    --ad-bg-2: #09101f;
    --ad-surface: rgba(16, 24, 42, 0.76);
    --ad-surface-2: rgba(255, 255, 255, 0.055);
    --ad-border: rgba(255, 255, 255, 0.12);
    --ad-text: #f5f7fb;
    --ad-muted: rgba(245, 247, 251, 0.68);
    --ad-violet: #8b5cf6;
    --ad-violet-2: #5b7cfa;
    --ad-gold: #f6b44b;
    --ad-gold-2: #ffdf8a;
    --ad-ink: #060812;
}

body {
    background:
        radial-gradient(circle at 50% -10%, rgba(139, 92, 246, 0.22), transparent 32rem),
        radial-gradient(circle at 14% 34%, rgba(246, 180, 75, 0.08), transparent 22rem),
        linear-gradient(180deg, #050712 0%, #080d1a 38%, #050712 100%);
}

body::before {
    opacity: 0.55;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
}

header {
    background: rgba(5, 7, 18, 0.82) !important;
}

.contact-btn,
.btn-primary {
    background: linear-gradient(135deg, var(--ad-gold-2), var(--ad-gold));
    box-shadow: 0 14px 36px rgba(246, 180, 75, 0.24);
}

.nav-links a::after {
    background: linear-gradient(90deg, var(--ad-violet), var(--ad-gold));
}

.btn-secondary {
    color: #fff;
    background: linear-gradient(135deg, var(--ad-violet), var(--ad-violet-2));
    box-shadow: 0 14px 36px rgba(139, 92, 246, 0.22);
}

.hero {
    min-height: 690px;
    padding: 156px 0 110px;
    background:
        radial-gradient(circle at 50% 38%, rgba(139, 92, 246, 0.2), transparent 24rem),
        radial-gradient(circle at 62% 64%, rgba(246, 180, 75, 0.08), transparent 20rem),
        linear-gradient(180deg, #050513 0%, #090b19 55%, #050712 100%);
}

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

.hero .container::before,
.hero .container::after {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 0;
    filter: drop-shadow(0 0 18px rgba(139, 92, 246, 0.9));
    background: linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.95) 43% 45%, var(--ad-violet) 45% 48%, transparent 49% 100%);
    clip-path: polygon(0 46%, 36% 46%, 27% 0, 100% 61%, 58% 57%, 74% 100%);
    animation: lightningStrike 6.5s infinite;
}

.hero .container::before {
    top: -54px;
    right: 5%;
    width: 290px;
    height: 230px;
}

.hero .container::after {
    left: 1%;
    bottom: 18px;
    width: 220px;
    height: 180px;
    transform: rotate(180deg);
    animation-delay: 2.7s;
}

@keyframes lightningStrike {
    0%, 82%, 100% { opacity: 0; transform: translateY(0) scale(0.96); }
    84% { opacity: 0.95; transform: translateY(5px) scale(1); }
    85% { opacity: 0.15; }
    86% { opacity: 0.85; }
    88% { opacity: 0; transform: translateY(14px) scale(1.02); }
}

.hero::before {
    height: 46%;
    opacity: 0.34;
    background:
        radial-gradient(ellipse at center, rgba(139, 92, 246, 0.22), transparent 56%),
        repeating-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 16px);
}

.hero-content {
    max-width: 790px;
}

.hero-content::before {
    color: var(--ad-gold-2);
    border-color: rgba(246, 180, 75, 0.55);
    background: rgba(246, 180, 75, 0.08);
}

.hero h1 {
    font-size: clamp(34px, 5.2vw, 58px);
    line-height: 1.04;
}

.hero p {
    max-width: 690px;
    font-size: 16px;
    line-height: 1.75;
}

.slider-section {
    margin-top: -42px;
    padding: 0 0 26px;
}

.slider-container {
    max-width: 980px;
    margin: 0 auto;
    border-color: rgba(246, 180, 75, 0.18);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.46);
}

.slide img {
    height: 260px;
}

.slide-content {
    padding: 58px 30px 28px;
}

.slide h3 {
    font-size: 22px;
    color: var(--ad-gold-2);
}

.slide p {
    max-width: 560px;
    font-size: 14px;
}

.services,
.services-dark,
.region-section,
footer {
    background:
        radial-gradient(circle at 10% 0%, rgba(139, 92, 246, 0.11), transparent 22rem),
        linear-gradient(180deg, #050712, #070b17) !important;
}

.services {
    padding: 82px 0;
}

.section-title {
    margin-bottom: 42px;
}

.section-title h2 {
    font-size: clamp(26px, 3.2vw, 40px);
}

.section-title p {
    font-size: 15px;
}

.service-card,
.contact-box,
.region-card {
    background: linear-gradient(180deg, rgba(18, 26, 47, 0.88), rgba(10, 14, 27, 0.82));
    border-color: rgba(255, 255, 255, 0.11);
}

.service-card:hover,
.region-card:hover,
.contact-box:hover {
    border-color: rgba(246, 180, 75, 0.5);
    box-shadow: 0 24px 70px rgba(139, 92, 246, 0.16);
}

.service-card::before,
.region-card::before {
    background: linear-gradient(135deg, transparent, rgba(139, 92, 246, 0.2), transparent 58%, rgba(246, 180, 75, 0.18));
}

.service-card img {
    height: 142px;
}

.service-card h3 {
    font-size: 15px;
}

.service-card p {
    font-size: 12.5px;
}

.services-dark .section-title h2,
.services-dark .service-card h3,
.services-dark .service-card h3 a,
.footer-section h3,
.footer-bottom a {
    color: var(--ad-gold-2);
}

.region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.region-card {
    min-height: auto;
    padding: 22px;
}

.region-card h3 {
    color: var(--ad-gold-2);
    font-size: 20px;
}

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

.district-tags span,
.district-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.055);
    font-size: 12px;
    font-weight: 600;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.district-tags a:hover {
    transform: translateY(-2px);
    border-color: rgba(246, 180, 75, 0.5);
    color: #ffdf8a;
    background: rgba(246, 180, 75, 0.08);
}

.contact-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(246, 180, 75, 0.13), transparent 22rem),
        linear-gradient(180deg, #070b17, #050712) !important;
    color: var(--ad-text);
}

.contact-section .section-title h2,
.contact-section .section-title p,
.contact-section .contact-box h3,
.contact-section .contact-box p {
    color: var(--ad-text);
}

.contact-box {
    background: linear-gradient(180deg, rgba(18, 26, 47, 0.9), rgba(10, 14, 27, 0.84));
}

.contact-box i.fa-whatsapp,
.contact-box i.fa-map-marker-alt,
.footer-contact-info i {
    color: var(--ad-gold-2);
}

.whatsapp-btn {
    background: linear-gradient(135deg, var(--ad-gold-2), var(--ad-gold));
    color: var(--ad-ink);
}

@media (max-width: 1024px) {
    .slider-container {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 620px;
        padding: 124px 0 86px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero .container::before {
        right: -70px;
        width: 210px;
        height: 170px;
    }

    .hero .container::after {
        left: -70px;
        width: 170px;
        height: 140px;
    }

    .slide img {
        height: 220px;
    }

    .slide-content {
        padding: 52px 22px 22px;
    }

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

/* Regional article pages */
.article-page {
    background:
        radial-gradient(circle at 72% 12%, rgba(139, 92, 246, 0.18), transparent 28rem),
        linear-gradient(180deg, #050712, #070b17);
}

.article-hero {
    position: relative;
    overflow: hidden;
    padding: 156px 0 76px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 35%, rgba(139, 92, 246, 0.23), transparent 24rem),
        linear-gradient(180deg, #050513, #080d1a);
}

.article-hero::before {
    content: "";
    position: absolute;
    inset: auto -10% -22%;
    height: 50%;
    opacity: 0.25;
    background:
        radial-gradient(ellipse at center, rgba(246, 180, 75, 0.22), transparent 58%),
        repeating-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 16px);
    transform: perspective(720px) rotateX(62deg);
    animation: waveField 9s ease-in-out infinite alternate;
}

.article-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 16px;
    border: 1px solid rgba(246, 180, 75, 0.45);
    border-radius: 999px;
    color: #ffdf8a;
    background: rgba(246, 180, 75, 0.08);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.article-hero h1 {
    max-width: 900px;
    margin: 0 auto 18px;
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
}

.article-hero p {
    max-width: 780px;
    margin: 0 auto;
    color: var(--ad-muted);
    font-size: 16px;
    line-height: 1.75;
}

.article-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    padding-top: 70px;
    padding-bottom: 88px;
}

.article-content,
.side-card {
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(26, 36, 64, 0.9), rgba(10, 14, 27, 0.84));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.article-content {
    padding: clamp(24px, 4vw, 44px);
}

.article-content h2 {
    margin: 0 0 14px;
    color: #ffdf8a;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.15;
}

.article-content h2:not(:first-child) {
    margin-top: 38px;
}

.article-content p {
    margin: 0 0 16px;
    color: var(--ad-muted);
    font-size: 15px;
    line-height: 1.85;
}

.article-tags {
    margin: 8px 0 4px;
}

.article-side {
    display: grid;
    align-content: start;
    gap: 18px;
}

.side-card {
    padding: 24px;
}

.side-card h3 {
    margin: 0 0 12px;
    color: #ffdf8a;
    font-size: 20px;
}

.side-card p,
.side-card li {
    color: var(--ad-muted);
    line-height: 1.7;
}

.side-card ul {
    margin: 0;
    padding-left: 18px;
}

.side-card a {
    display: inline-flex;
    margin-top: 16px;
    padding: 12px 18px;
    border-radius: 999px;
    color: var(--ad-ink);
    font-weight: 800;
    background: linear-gradient(135deg, #ffdf8a, var(--ad-amber));
}

@media (max-width: 900px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-hero {
        padding-top: 128px;
    }
}

/* Homepage acquisition flow */
.acquisition-section {
    background:
        radial-gradient(circle at 18% 18%, rgba(246, 180, 75, 0.11), transparent 24rem),
        linear-gradient(180deg, #050712, #070b17) !important;
}

.acquisition-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.acquisition-step {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(26, 36, 64, 0.92), rgba(10, 14, 27, 0.86));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.acquisition-step::before {
    content: "";
    position: absolute;
    inset: -40% -20% auto;
    height: 170px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.24), transparent 64%);
    opacity: 0.8;
}

.acquisition-step:hover {
    transform: translateY(-9px);
    border-color: rgba(246, 180, 75, 0.45);
    box-shadow: 0 28px 78px rgba(139, 92, 246, 0.15);
}

.step-number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-bottom: 22px;
    color: rgba(255, 223, 138, 0.68);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
}

.step-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 223, 138, 0.32);
    border-radius: 18px;
    color: #ffdf8a;
    font-size: 28px;
    background: rgba(246, 180, 75, 0.08);
}

.acquisition-step h3,
.acquisition-step p {
    position: relative;
    z-index: 1;
}

.acquisition-step h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 20px;
    line-height: 1.25;
}

.acquisition-step p {
    margin: 0;
    color: var(--ad-muted);
    font-size: 14px;
    line-height: 1.75;
}

.device-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.device-strip a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.055);
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.device-strip a:hover {
    transform: translateY(-2px);
    border-color: rgba(246, 180, 75, 0.48);
    color: #ffdf8a;
}

@media (max-width: 1024px) {
    .acquisition-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .acquisition-grid {
        grid-template-columns: 1fr;
    }

    .acquisition-step {
        min-height: auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 22px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card img {
        height: 140px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 15px;
        right: 15px;
    }
}

/* =====================================================
   ANIMASYONLAR
   ===================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Efektleri */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #00ff88;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =====================================================
   İLÇE SAYFALARI İÇİN ÖZEL STİLLER
   ===================================================== */
.district-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 140px 0 80px;
    color: white;
    text-align: center;
}

.district-hero h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #00ff88;
}

.district-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.district-content {
    padding: 80px 0;
}

.district-content article {
    max-width: 900px;
    margin: 0 auto;
}

.district-content h2 {
    font-size: 28px;
    color: #1a1a2e;
    margin-bottom: 20px;
    margin-top: 40px;
}

.district-content h2:first-child {
    margin-top: 0;
}

.district-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.district-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.district-content ul li {
    margin-bottom: 10px;
    color: #555;
    list-style: disc;
}

.district-content a {
    color: #00cc6a;
    text-decoration: none;
}

.district-content a:hover {
    text-decoration: underline;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.breadcrumb li a {
    color: #00cc6a;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

.breadcrumb li::after {
    content: '›';
    color: #999;
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb li:last-child {
    color: #333;
    font-weight: 500;
}

/* =====================================================
   ARZ DENIZ BILISIM - YENI HAREKETLI ARAYUZ
   ===================================================== */
:root {
    --ad-bg: #070914;
    --ad-panel: rgba(255, 255, 255, 0.075);
    --ad-panel-strong: rgba(255, 255, 255, 0.12);
    --ad-border: rgba(255, 255, 255, 0.16);
    --ad-text: #f8fbff;
    --ad-muted: rgba(248, 251, 255, 0.72);
    --ad-cyan: #20e0d2;
    --ad-blue: #2f8cff;
    --ad-amber: #ffbd59;
    --ad-rose: #ff6f91;
    --ad-ink: #08111f;
}

body {
    color: var(--ad-text);
    background:
        radial-gradient(circle at 12% 8%, rgba(32, 224, 210, 0.15), transparent 26rem),
        radial-gradient(circle at 88% 24%, rgba(255, 189, 89, 0.16), transparent 24rem),
        linear-gradient(180deg, #070914 0%, #0a1221 46%, #080a14 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
    animation: gridDrift 22s linear infinite;
}

@keyframes gridDrift {
    from { background-position: 0 0, 0 0; }
    to { background-position: 54px 54px, 54px 54px; }
}

header {
    padding: 22px 0;
    background: rgba(7, 9, 20, 0.64) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    backdrop-filter: blur(18px) saturate(135%) !important;
}

nav.container {
    max-width: 1180px;
}

.logo {
    color: #fff;
    font-size: 22px;
    gap: 11px;
}

.logo i {
    display: none;
}

.logo-mark {
    display: none !important;
}

.nav-links {
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.nav-links a::after {
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--ad-cyan), var(--ad-amber));
}

.nav-links a:hover {
    color: #fff;
}

.contact-btn,
.btn-primary,
.btn-secondary {
    border-radius: 999px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-btn,
.btn-primary {
    color: #08111f;
    background: linear-gradient(135deg, var(--ad-cyan), var(--ad-amber));
    box-shadow: 0 12px 34px rgba(32, 224, 210, 0.25);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--ad-blue), var(--ad-rose));
    box-shadow: 0 12px 34px rgba(47, 140, 255, 0.26);
}

.btn:hover,
.contact-btn:hover {
    transform: translateY(-4px) scale(1.02);
}

.hero {
    min-height: 760px;
    display: grid;
    place-items: center;
    padding: 178px 0 138px;
    background:
        radial-gradient(circle at 50% 58%, rgba(47, 140, 255, 0.16), transparent 24rem),
        radial-gradient(circle at 16% 38%, rgba(32, 224, 210, 0.18), transparent 22rem),
        linear-gradient(180deg, #080617 0%, #080914 58%, #090b18 100%);
}

.hero::before {
    inset: auto -12% 0;
    height: 54%;
    background:
        radial-gradient(ellipse at center, rgba(32, 224, 210, 0.22), transparent 54%),
        repeating-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 14px);
    background-size: 100% 100%, 22px 12px;
    transform: perspective(720px) rotateX(62deg) translateY(26%);
    transform-origin: bottom center;
    opacity: 0.55;
    animation: waveField 9s ease-in-out infinite alternate;
}

.hero::after {
    height: 42%;
    background: linear-gradient(transparent, #070914 82%);
}

@keyframes waveField {
    from { background-position: 0 0, 0 0; filter: hue-rotate(0deg); }
    to { background-position: 0 0, 70px -32px; filter: hue-rotate(22deg); }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    animation: heroRise 0.9s ease both;
}

.hero-content::before {
    content: "ARZ DENIZ BILISIM'E HOS GELDINIZ";
    display: inline-flex;
    margin-bottom: 22px;
    padding: 7px 18px;
    border: 1px solid rgba(32, 224, 210, 0.55);
    border-radius: 999px;
    color: var(--ad-cyan);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.7px;
    background: rgba(32, 224, 210, 0.08);
}

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

.hero h1 {
    margin-bottom: 22px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.96;
    letter-spacing: 0;
    text-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.hero h1 span {
    display: block;
    color: #fff;
}

.hero p {
    max-width: 760px;
    color: var(--ad-muted);
}

.cta-buttons {
    margin-top: 34px;
}

.slider-section {
    margin-top: -80px;
    padding-bottom: 34px;
}

.slider-container {
    border: 1px solid var(--ad-border);
    border-radius: 8px;
    background: var(--ad-panel);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
}

.slide img {
    height: 390px;
    filter: saturate(0.92) contrast(1.04);
}

.slide-content {
    background: linear-gradient(transparent, rgba(7, 9, 20, 0.94));
}

.slide h3,
.services-dark .section-title h2,
.services-dark .service-card h3,
.services-dark .service-card h3 a,
.footer-section h3,
.footer-bottom a {
    color: var(--ad-cyan);
}

.services,
.services-dark,
.contact-section,
footer {
    position: relative;
    overflow: hidden;
}

.services {
    padding: 96px 0;
    background: transparent;
}

.services-dark {
    background:
        radial-gradient(circle at 80% 12%, rgba(255, 189, 89, 0.14), transparent 24rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
}

.section-title h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

.section-title p,
.service-card p,
.services-dark .service-card p,
.contact-section .section-title p,
.footer-section p,
.footer-section a {
    color: var(--ad-muted);
}

.services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.contact-box,
.region-card {
    border: 1px solid var(--ad-border);
    border-radius: 8px;
    background: linear-gradient(180deg, var(--ad-panel-strong), rgba(255, 255, 255, 0.045));
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
}

.service-card {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.service-card::before,
.region-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, transparent, rgba(32, 224, 210, 0.22), transparent 58%, rgba(255, 189, 89, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover,
.region-card:hover,
.contact-box:hover {
    transform: translateY(-10px);
    border-color: rgba(32, 224, 210, 0.5);
    box-shadow: 0 24px 70px rgba(32, 224, 210, 0.12);
}

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

.service-card > *,
.region-card > * {
    position: relative;
    z-index: 1;
}

.service-card img {
    height: 170px;
    border-radius: 8px;
    transform: scale(1.01);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.service-card:hover img {
    transform: scale(1.08);
    filter: saturate(1.18);
}

.service-card h3,
.service-card h3 a {
    color: #fff;
}

.service-card p a {
    color: var(--ad-amber);
}

.device-title {
    margin-top: 58px;
}

.device-category-block {
    margin-top: 42px;
}

.device-category-block > h3 {
    color: var(--ad-amber);
    font-size: 24px;
    margin: 0 0 18px;
    text-align: center;
}

.device-products-grid {
    margin-top: 0;
}

.device-product-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: 390px;
}

.device-product-card img {
    width: 100%;
    max-width: 260px;
    height: 190px;
    object-fit: contain;
    margin: 0 auto 8px;
    background: radial-gradient(circle, rgba(32, 224, 210, 0.12), transparent 65%);
}

.device-product-card p {
    flex: 1;
}

.device-product-card .btn {
    margin-top: auto;
    padding: 12px 22px;
    font-size: 13px;
}

.region-section {
    background:
        radial-gradient(circle at 20% 0%, rgba(47, 140, 255, 0.16), transparent 24rem),
        radial-gradient(circle at 92% 38%, rgba(32, 224, 210, 0.12), transparent 24rem);
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.region-card {
    position: relative;
    min-height: 170px;
    padding: 26px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.region-card h3 {
    margin-bottom: 14px;
    color: var(--ad-amber);
    font-size: 22px;
}

.region-card p {
    color: var(--ad-muted);
    line-height: 1.75;
}

.contact-section {
    background: linear-gradient(135deg, rgba(32, 224, 210, 0.95), rgba(255, 189, 89, 0.92));
    color: var(--ad-ink);
}

.contact-section .section-title h2,
.contact-section .contact-box h3,
.contact-section .contact-box p {
    color: var(--ad-ink);
}

.contact-box {
    min-width: 320px;
    background: rgba(255, 255, 255, 0.34);
}

footer {
    background: #050711;
}

.footer-content {
    grid-template-columns: 1.1fr 1fr 1fr;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #18d67e, var(--ad-cyan));
    color: #04100b;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 1024px) {
    .region-grid,
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero {
        min-height: 690px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 14px 0;
    }

    .nav-links {
        background: rgba(7, 9, 20, 0.98);
        border-bottom: 1px solid var(--ad-border);
        backdrop-filter: blur(18px);
    }

    .contact-btn {
        display: none;
    }

    .hero {
        min-height: 680px;
        padding: 126px 0 104px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .slider-section {
        margin-top: -48px;
    }

    .slide img {
        height: 330px;
    }

    .footer-content,
    .region-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* FINAL PREMIUM OVERRIDE */
:root {
    --ad-bg: #050712;
    --ad-panel: rgba(18, 26, 47, 0.88);
    --ad-panel-strong: rgba(26, 36, 64, 0.92);
    --ad-border: rgba(255, 255, 255, 0.12);
    --ad-text: #f5f7fb;
    --ad-muted: rgba(245, 247, 251, 0.68);
    --ad-cyan: #8b5cf6;
    --ad-blue: #5b7cfa;
    --ad-amber: #f6b44b;
    --ad-rose: #8b5cf6;
    --ad-ink: #060812;
}

body {
    color: var(--ad-text);
    background:
        radial-gradient(circle at 50% -10%, rgba(139, 92, 246, 0.22), transparent 32rem),
        radial-gradient(circle at 14% 34%, rgba(246, 180, 75, 0.08), transparent 22rem),
        linear-gradient(180deg, #050712 0%, #080d1a 38%, #050712 100%);
}

header {
    background: rgba(5, 7, 18, 0.82) !important;
}

.contact-btn,
.btn-primary,
.whatsapp-btn {
    color: var(--ad-ink);
    background: linear-gradient(135deg, #ffdf8a, var(--ad-amber));
    box-shadow: 0 14px 36px rgba(246, 180, 75, 0.24);
}

.nav-links a::after {
    background: linear-gradient(90deg, var(--ad-cyan), var(--ad-amber));
}

.btn-secondary {
    color: #fff;
    background: linear-gradient(135deg, var(--ad-cyan), var(--ad-blue));
    box-shadow: 0 14px 36px rgba(139, 92, 246, 0.22);
}

.hero {
    min-height: 690px;
    padding: 156px 0 110px;
    background:
        radial-gradient(circle at 50% 38%, rgba(139, 92, 246, 0.2), transparent 24rem),
        radial-gradient(circle at 62% 64%, rgba(246, 180, 75, 0.08), transparent 20rem),
        linear-gradient(180deg, #050513 0%, #090b19 55%, #050712 100%);
}

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

.hero .container::before,
.hero .container::after {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 0;
    filter: drop-shadow(0 0 18px rgba(139, 92, 246, 0.9));
    background: linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.95) 43% 45%, var(--ad-cyan) 45% 48%, transparent 49% 100%);
    clip-path: polygon(0 46%, 36% 46%, 27% 0, 100% 61%, 58% 57%, 74% 100%);
    animation: lightningStrike 6.5s infinite;
}

.hero .container::before {
    top: -54px;
    right: 5%;
    width: 290px;
    height: 230px;
}

.hero .container::after {
    left: 1%;
    bottom: 18px;
    width: 220px;
    height: 180px;
    transform: rotate(180deg);
    animation-delay: 2.7s;
}

@keyframes lightningStrike {
    0%, 82%, 100% { opacity: 0; transform: translateY(0) scale(0.96); }
    84% { opacity: 0.95; transform: translateY(5px) scale(1); }
    85% { opacity: 0.15; }
    86% { opacity: 0.85; }
    88% { opacity: 0; transform: translateY(14px) scale(1.02); }
}

.hero::before {
    height: 46%;
    opacity: 0.34;
    background:
        radial-gradient(ellipse at center, rgba(139, 92, 246, 0.22), transparent 56%),
        repeating-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 16px);
}

.hero-content {
    max-width: 790px;
}

.hero-content::before {
    color: #ffdf8a;
    border-color: rgba(246, 180, 75, 0.55);
    background: rgba(246, 180, 75, 0.08);
}

.hero h1 {
    font-size: clamp(34px, 5.2vw, 58px);
    line-height: 1.04;
}

.hero p {
    max-width: 690px;
    font-size: 16px;
    line-height: 1.75;
}

.slider-section {
    margin-top: -42px;
    padding: 0 0 26px;
}

.slider-container {
    max-width: 980px;
    margin: 0 auto;
    border-color: rgba(246, 180, 75, 0.18);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.46);
}

.slide img {
    height: 260px;
}

.slide-content {
    padding: 58px 30px 28px;
}

.slide h3 {
    color: #ffdf8a;
    font-size: 22px;
}

.slide p {
    max-width: 560px;
    font-size: 14px;
}

.services,
.services-dark,
.region-section,
.contact-section,
footer {
    background:
        radial-gradient(circle at 10% 0%, rgba(139, 92, 246, 0.11), transparent 22rem),
        linear-gradient(180deg, #050712, #070b17) !important;
}

.services {
    padding: 82px 0;
}

.section-title {
    margin-bottom: 42px;
}

.section-title h2 {
    font-size: clamp(26px, 3.2vw, 40px);
}

.section-title p {
    font-size: 15px;
}

.service-card,
.contact-box,
.region-card {
    background: linear-gradient(180deg, var(--ad-panel-strong), rgba(10, 14, 27, 0.84));
    border-color: rgba(255, 255, 255, 0.11);
}

.service-card:hover,
.region-card:hover,
.contact-box:hover {
    border-color: rgba(246, 180, 75, 0.5);
    box-shadow: 0 24px 70px rgba(139, 92, 246, 0.16);
}

.service-card::before,
.region-card::before {
    background: linear-gradient(135deg, transparent, rgba(139, 92, 246, 0.2), transparent 58%, rgba(246, 180, 75, 0.18));
}

.service-card img {
    height: 142px;
}

.service-card h3 {
    font-size: 15px;
}

.service-card p {
    font-size: 12.5px;
}

.services-dark .section-title h2,
.services-dark .service-card h3,
.services-dark .service-card h3 a,
.footer-section h3,
.footer-bottom a,
.contact-box i.fa-whatsapp,
.contact-box i.fa-map-marker-alt,
.footer-contact-info i {
    color: #ffdf8a;
}

.contact-section .section-title h2,
.contact-section .section-title p,
.contact-section .contact-box h3,
.contact-section .contact-box p {
    color: var(--ad-text);
}

.region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.region-card {
    min-height: auto;
    padding: 22px;
}

.region-card h3 {
    color: #ffdf8a;
    font-size: 20px;
}

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

.district-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.055);
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero {
        min-height: 620px;
        padding: 124px 0 86px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero .container::before {
        right: -70px;
        width: 210px;
        height: 170px;
    }
}

/* Contact section redesign */
.contact-boxes {
    display: none !important;
}

.contact-section {
        padding: 92px 0 88px;
    }
    
    .contact-section .section-title {
        max-width: 860px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 46px;
    }
    
    .contact-panel {
        display: grid !important;
        grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
        gap: 22px;
        align-items: stretch;
        max-width: 1080px;
        margin: 0 auto;
    }
    
    .contact-main-card,
    .contact-info-card {
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: linear-gradient(145deg, rgba(23, 33, 60, 0.92), rgba(8, 12, 25, 0.88));
        box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
        backdrop-filter: blur(16px);
    }
    
    .contact-main-card::before,
    .contact-info-card::before {
        content: "";
        position: absolute;
        inset: -1px;
        background: radial-gradient(circle at 18% 0%, rgba(246, 180, 75, 0.18), transparent 42%),
                    linear-gradient(135deg, rgba(139, 92, 246, 0.16), transparent 52%);
        opacity: 0.9;
        pointer-events: none;
    }
    
    .contact-main-card > *,
    .contact-info-card > * {
        position: relative;
        z-index: 1;
    }
    
    .contact-main-card {
        min-height: 360px;
        padding: clamp(30px, 4vw, 52px);
        border-radius: 28px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
    }
    
    .contact-kicker {
        display: inline-flex;
        width: fit-content;
        margin-bottom: 18px;
        padding: 8px 14px;
        border: 1px solid rgba(246, 180, 75, 0.42);
        border-radius: 999px;
        color: #ffdf8a;
        background: rgba(246, 180, 75, 0.08);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.6px;
        text-transform: uppercase;
    }
    
    .contact-main-card h3 {
        max-width: 560px;
        margin: 0 0 16px;
        color: #fff;
        font-size: clamp(28px, 3.7vw, 44px);
        line-height: 1.08;
    }
    
    .contact-main-card p {
        max-width: 580px;
        margin: 0;
        color: var(--ad-muted);
        font-size: 15px;
        line-height: 1.8;
    }
    
    .contact-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        align-items: center;
        margin-top: 30px;
    }
    
    .contact-actions .btn {
        min-width: 218px;
        justify-content: center;
    }
    
    .contact-main-card .btn-primary,
    .contact-section .contact-main-card .btn-primary {
        width: auto !important;
        max-width: none !important;
        min-height: 56px;
        padding: 16px 24px !important;
        border-radius: 999px !important;
        font-size: 14px;
        gap: 10px;
        color: #07101f !important;
    }
    
    .contact-main-card .btn-primary i,
    .contact-section .contact-main-card .btn-primary i {
        display: inline-flex !important;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        color: inherit !important;
        background: transparent !important;
        font-size: 18px !important;
        box-shadow: none !important;
    }
    
    .contact-phone {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-height: 54px;
        padding: 13px 18px;
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 999px;
        color: #fff;
        background: rgba(255, 255, 255, 0.06);
        font-weight: 800;
        transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }
    
    .contact-phone:hover {
        transform: translateY(-2px);
        border-color: rgba(246, 180, 75, 0.48);
        background: rgba(246, 180, 75, 0.08);
    }
    
    .contact-info-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    
    .contact-info-card {
        min-height: 172px;
        padding: 26px;
        border-radius: 22px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }
    
    .contact-info-card:hover {
        transform: translateY(-6px);
        border-color: rgba(246, 180, 75, 0.45);
        box-shadow: 0 24px 70px rgba(139, 92, 246, 0.16);
    }
    
    .contact-info-card i {
        width: 54px;
        height: 54px;
        display: grid;
        place-items: center;
        border-radius: 16px;
        color: #060812;
        background: linear-gradient(135deg, #ffdf8a, var(--ad-amber));
        font-size: 24px;
    }
    
    .contact-info-card span {
        margin-top: 24px;
        color: rgba(245, 247, 251, 0.72);
        font-size: 13px;
        font-weight: 700;
    }
    
    .contact-info-card strong {
        margin-top: 5px;
        color: #fff;
        font-size: 19px;
        line-height: 1.35;
    }
    
    .contact-info-card-wide {
        grid-column: 1 / -1;
        min-height: 174px;
    }
    
    .contact-info-card-wide strong {
        font-size: 17px;
    }
    
    @media (max-width: 900px) {
        .contact-panel {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 640px) {
        .contact-section {
            padding: 70px 0;
        }
    
        .contact-main-card {
            min-height: auto;
            border-radius: 22px;
        }
    
        .contact-actions,
        .contact-actions .btn,
        .contact-phone {
            width: 100%;
        }
    
        .contact-phone {
            justify-content: center;
        }
    
        .contact-info-grid {
            grid-template-columns: 1fr;
        }
    
        .contact-info-card-wide {
            grid-column: auto;
        }
    }

.blog-list-section {
    padding: 76px 0 96px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.blog-card {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(26, 36, 64, 0.9), rgba(8, 12, 25, 0.86));
    box-shadow: 0 20px 62px rgba(0, 0, 0, 0.24);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-7px);
    border-color: rgba(246, 180, 75, 0.48);
    box-shadow: 0 26px 78px rgba(139, 92, 246, 0.16);
}

.blog-card h3 {
    margin: 0 0 12px;
    color: #ffdf8a;
    font-size: 20px;
    line-height: 1.25;
}

.blog-card p {
    margin: 0 0 20px;
    color: var(--ad-muted);
    line-height: 1.75;
}

.blog-read {
    display: inline-flex;
    padding: 10px 15px;
    border-radius: 999px;
    color: var(--ad-ink);
    background: linear-gradient(135deg, #ffdf8a, var(--ad-amber));
    font-weight: 800;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Device cards and mobile region layout override */
.device-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .device-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px;
    }

    .region-grid {
        grid-template-columns: 1fr !important;
    }

    .device-product-card {
        min-height: 300px;
        gap: 8px;
        padding: 18px 10px;
    }

    .device-product-card img {
        max-width: 130px;
        height: 100px;
    }

    .device-product-card h3 {
        font-size: 16px;
    }

    .device-product-card p {
        font-size: 12px;
        line-height: 1.45;
    }

    .device-product-card .btn {
        width: 100%;
        padding: 10px 8px;
        font-size: 11px;
    }
}

.device-card-media {
    display: block;
    width: 100%;
}

.device-product-card h3 a {
    color: inherit;
    text-decoration: none;
}

.device-product-card h3 a:hover {
    color: var(--ad-amber);
}
