/* ============================================
   ARSAN SINAİ & TIBBİ GAZLAR - ANA STIL
   Modern 2026 Tasarım
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary: #1a3a5c;
    --primary-dark: #0d2137;
    --secondary: #2196F3;
    --accent: #00bcd4;
    --light-blue: #4fc3f7;
    --silver: #b0bec5;
    --dark: #0a1628;
    --light: #f5f7fa;
    --white: #ffffff;
    --text: #333333;
    --text-light: #6c757d;
    --gradient-primary: linear-gradient(135deg, #1a3a5c 0%, #2196F3 100%);
    --gradient-accent: linear-gradient(135deg, #00bcd4 0%, #2196F3 100%);
    --gradient-dark: linear-gradient(135deg, #0d2137 0%, #1a3a5c 100%);
    --shadow: 0 10px 40px rgba(26, 58, 92, 0.15);
    --shadow-lg: 0 20px 60px rgba(26, 58, 92, 0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--light);
    overflow-x: hidden;
    line-height: 1.7;
}

a { text-decoration: none; color: var(--secondary); transition: var(--transition); }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ============ BUBBLE ANIMATION ============ */
.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    border-radius: 50%;
    opacity: 0.06;
    animation: bubbleRise linear infinite;
}

.bubble:nth-child(1) { left: 5%; width: 40px; height: 40px; animation-duration: 15s; background: var(--secondary); animation-delay: 0s; }
.bubble:nth-child(2) { left: 15%; width: 20px; height: 20px; animation-duration: 12s; background: var(--accent); animation-delay: 2s; }
.bubble:nth-child(3) { left: 30%; width: 60px; height: 60px; animation-duration: 18s; background: var(--secondary); animation-delay: 4s; }
.bubble:nth-child(4) { left: 45%; width: 30px; height: 30px; animation-duration: 14s; background: var(--light-blue); animation-delay: 1s; }
.bubble:nth-child(5) { left: 60%; width: 50px; height: 50px; animation-duration: 16s; background: var(--accent); animation-delay: 3s; }
.bubble:nth-child(6) { left: 75%; width: 25px; height: 25px; animation-duration: 13s; background: var(--secondary); animation-delay: 5s; }
.bubble:nth-child(7) { left: 85%; width: 45px; height: 45px; animation-duration: 17s; background: var(--light-blue); animation-delay: 2s; }
.bubble:nth-child(8) { left: 92%; width: 35px; height: 35px; animation-duration: 15s; background: var(--accent); animation-delay: 6s; }

@keyframes bubbleRise {
    0% { transform: translateY(0) scale(0.5); opacity: 0; }
    10% { opacity: 0.06; }
    90% { opacity: 0.06; }
    100% { transform: translateY(-110vh) scale(1.2); opacity: 0; }
}

/* ============ PRELOADER ============ */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--primary-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
.preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-spinner {
    width: 60px; height: 60px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ TOPBAR ============ */
.topbar {
    background: var(--primary-dark);
    padding: 8px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1001;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-left span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-left i { color: var(--accent); font-size: 0.78rem; }
.topbar-left a { color: rgba(255,255,255,0.75); }
.topbar-left a:hover { color: var(--accent); }

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-social a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: var(--transition);
}
.topbar-social a:hover { color: var(--accent); }

/* ============ HEADER ============ */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    transition: var(--transition);
    padding: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.site-logo {
    background: var(--white);
    border-radius: 16px;
    padding: 14px 24px;
    box-shadow: 0 8px 30px rgba(26, 58, 92, 0.18), 0 2px 8px rgba(0,0,0,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}
.site-logo:hover {
    box-shadow: 0 12px 40px rgba(26, 58, 92, 0.25), 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.site-logo img {
    height: 72px;
    transition: var(--transition);
}
.main-header.scrolled .site-logo {
    padding: 10px 18px;
    border-radius: 13px;
}
.main-header.scrolled .site-logo img { height: 54px; }

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 3px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.93rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.main-nav a:hover {
    color: var(--secondary);
    background: rgba(33,150,243,0.06);
}

.main-nav a.active {
    color: var(--secondary);
    background: rgba(33,150,243,0.08);
    font-weight: 600;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.header-cta .btn {
    background: var(--gradient-accent);
    border: none;
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.header-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,188,212,0.4);
    color: var(--white);
}

/* ============ DROPDOWN MENU ============ */
.main-nav ul { position: relative; }
.main-nav li { position: relative; }

.main-nav li.has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    font-size: 0.6rem;
    transition: var(--transition);
    opacity: 0.5;
}

.main-nav li.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    padding: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border: 1px solid rgba(0,0,0,0.04);
}

.main-nav li.has-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom li a {
    display: flex;
    align-items: center;
    padding: 10px 16px !important;
    border-radius: 8px;
    font-size: 0.88rem !important;
    color: var(--text) !important;
    font-weight: 400 !important;
    white-space: nowrap;
}

.dropdown-menu-custom li a:hover {
    background: rgba(33,150,243,0.06) !important;
    color: var(--secondary) !important;
}

.dropdown-menu-custom li a i {
    width: 20px;
    color: var(--accent);
    font-size: 0.8rem;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary);
    margin: 6px 0;
    transition: var(--transition);
    border-radius: 2px;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }

/* ============ MOBILE BOTTOM BAR ============ */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
}

.mobile-bottom-bar .bar-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-bottom-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 10px;
    transition: var(--transition);
    color: var(--text);
}

.mobile-bottom-btn i {
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.mobile-bottom-btn span { font-size: 0.68rem; }

/* ============ HERO / SLIDER ============ */
.hero-section {
    position: relative;
    min-height: auto;
    overflow: hidden;
}

/* Video arkaplan */
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.88) 0%, rgba(26,58,92,0.80) 60%, rgba(33,150,243,0.25) 100%);
    z-index: 1;
}

.hero-slide {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 80px 0 180px;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(13,33,55,0.85) 0%, rgba(26,58,92,0.75) 50%, rgba(33,150,243,0.25) 100%);
    z-index: 0;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(0,188,212,0.3);
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.btn-hero-primary {
    background: var(--gradient-accent);
    color: var(--white) !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 1rem;
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,188,212,0.4);
    color: var(--white) !important;
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: var(--white) !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 1rem;
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    color: var(--white) !important;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper img {
    max-height: 500px;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3));
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-28px) scale(1.01); }
}

/* Cloud bottom effect */
.hero-cloud-img {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    display: block;
    animation: cloudDrift 10s ease-in-out infinite;
}

@keyframes cloudDrift {
    0%, 100% { transform: translateX(0px) scaleX(1); }
    50% { transform: translateX(12px) scaleX(1.01); }
}

/* Swiper custom */
.hero-pagination {
    position: relative;
    z-index: 3;
}
.hero-section .swiper-pagination-bullet {
    width: 12px; height: 12px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
    transition: var(--transition);
}
.hero-section .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 36px;
    border-radius: 6px;
}

/* ============ SECTION STYLES ============ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(33,150,243,0.08);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(33,150,243,0.15);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============ ABOUT SECTION ============ */
.about-section {
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper .main-image {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-image-wrapper .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,188,212,0.4);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 500;
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content h2 span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.about-feature-item:hover {
    background: rgba(33,150,243,0.08);
    transform: translateX(5px);
}

.about-feature-item i {
    color: var(--accent);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.about-feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary);
}

.about-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26,58,92,0.3);
    color: var(--white) !important;
}

.btn-outline-custom {
    color: var(--primary) !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    background: transparent;
}
.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white) !important;
    transform: translateY(-3px);
}

/* ============ SERVICES ============ */
.services-section {
    background: var(--light);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(33,150,243,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-accent);
    transform: rotateY(180deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--secondary);
    transition: var(--transition);
}
.service-card:hover .service-icon i { color: var(--white); }

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============ PRODUCTS ============ */
.products-section {
    background: var(--white);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 220px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    max-height: 180px;
    object-fit: contain;
    transition: var(--transition);
}
.product-card:hover .product-image img { transform: scale(1.05); }

.product-image .gas-emoji {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.product-image .product-placeholder {
    font-size: 4rem;
    opacity: 0.5;
}

.product-body {
    padding: 25px;
}

.product-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.product-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.product-link:hover { color: var(--accent); gap: 10px; }

/* ============ GALLERY CAROUSEL ============ */
.gallery-section {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.gallery-section .section-title { color: var(--white); }
.gallery-section .section-desc { color: rgba(255,255,255,0.7); }
.gallery-section .section-badge {
    background: rgba(0,188,212,0.15);
    color: var(--accent);
    border-color: rgba(0,188,212,0.3);
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 280px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(13,33,55,0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33,150,243,0.2), rgba(0,188,212,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.3);
}

/* ============ STATS ============ */
.stats-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,188,212,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    font-weight: 500;
}

.stat-icon-top {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    font-size: 1.4rem;
    backdrop-filter: blur(6px);
}

/* ============ BLOG ============ */
.blog-section {
    background: var(--light);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-image .blog-category {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}

.blog-card-body {
    padding: 25px;
}

.blog-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.82rem;
    color: var(--text-light);
}

.blog-card-meta i { color: var(--accent); }

.blog-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.blog-card-body h3 a { color: var(--primary); }
.blog-card-body h3 a:hover { color: var(--secondary); }

.blog-card-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.blog-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #e3f2fd, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(0,0,0,0.1);
}

/* ============ CTA SECTION ============ */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,188,212,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ============ FOOTER ============ */
.main-footer {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 80px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    font-size: 1rem;
}
.footer-social a:hover {
    background: var(--gradient-accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0; margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-links a i { font-size: 0.7rem; color: var(--accent); }

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

.footer-contact-item span {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.88rem;
    margin: 0;
}

/* ============ PAGE HEADER (BANNER) ============ */
.page-header {
    background: var(--gradient-dark);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0,188,212,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
}

.page-breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
}

.page-breadcrumb a { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.page-breadcrumb a:hover { color: var(--accent); }
.page-breadcrumb span { color: rgba(255,255,255,0.3); }
.page-breadcrumb .current { color: var(--accent); font-size: 0.95rem; }

/* ============ CONTACT PAGE ============ */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-info-card .icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: rgba(33,150,243,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-card .icon i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.contact-info-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-control, .form-select {
    border: 2px solid #eee;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(33,150,243,0.1);
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}
@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 100px; right: 32px;
    width: 45px; height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

/* ============ GAS MOLECULES ANIMATION ============ */
.gas-molecule {
    display: inline-block;
    animation: gasBounce 3s ease-in-out infinite;
}
.gas-molecule:nth-child(2) { animation-delay: 0.3s; }
.gas-molecule:nth-child(3) { animation-delay: 0.6s; }
@keyframes gasBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============ MAINTENANCE ADMIN BAR ============ */
.maintenance-admin-bar {
    background: linear-gradient(135deg, #ff6b35, #e53935);
    color: #fff;
    padding: 10px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 9999;
    box-shadow: 0 2px 15px rgba(229,57,53,0.3);
}
.maintenance-admin-bar a { text-decoration: none; }

/* ============ FLOATING GAS ICONS ============ */
.floating-icons-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.floating-icon {
    position: absolute;
    opacity: 0.18;
    animation: floatIcon ease-in-out infinite;
    filter: grayscale(10%);
}

/* Row 1 - top region */
.floating-icon:nth-child(1)  { left: 2%;  top: 5%;  font-size: 2.2rem; animation-duration: 11s; }
.floating-icon:nth-child(2)  { left: 12%; top: 8%;  font-size: 1.6rem; opacity: 0.14; animation-duration: 9s;  animation-delay: 0.8s; }
.floating-icon:nth-child(3)  { left: 24%; top: 3%;  font-size: 2.8rem; opacity: 0.22; animation-duration: 13s; animation-delay: 2s; }
.floating-icon:nth-child(4)  { left: 38%; top: 10%; font-size: 1.4rem; animation-duration: 10s; animation-delay: 1.2s; }
.floating-icon:nth-child(5)  { left: 52%; top: 6%;  font-size: 2.5rem; opacity: 0.20; animation-duration: 12s; animation-delay: 3s; }
.floating-icon:nth-child(6)  { left: 66%; top: 4%;  font-size: 1.8rem; animation-duration: 8s;  animation-delay: 0.4s; }
.floating-icon:nth-child(7)  { left: 78%; top: 9%;  font-size: 2.0rem; opacity: 0.16; animation-duration: 14s; animation-delay: 4s; }
.floating-icon:nth-child(8)  { left: 92%; top: 7%;  font-size: 1.5rem; animation-duration: 10s; animation-delay: 1.8s; }

/* Row 2 - upper-mid */
.floating-icon:nth-child(9)  { left: 6%;  top: 28%; font-size: 3.0rem; opacity: 0.20; animation-duration: 15s; animation-delay: 2.5s; }
.floating-icon:nth-child(10) { left: 18%; top: 32%; font-size: 1.3rem; animation-duration: 9s;  animation-delay: 0.6s; }
.floating-icon:nth-child(11) { left: 32%; top: 26%; font-size: 2.4rem; opacity: 0.16; animation-duration: 11s; animation-delay: 3.5s; }
.floating-icon:nth-child(12) { left: 46%; top: 30%; font-size: 1.7rem; animation-duration: 10s; animation-delay: 1.4s; }
.floating-icon:nth-child(13) { left: 60%; top: 24%; font-size: 2.6rem; opacity: 0.22; animation-duration: 13s; animation-delay: 4.5s; }
.floating-icon:nth-child(14) { left: 74%; top: 34%; font-size: 1.5rem; animation-duration: 8s;  animation-delay: 0.2s; }
.floating-icon:nth-child(15) { left: 88%; top: 28%; font-size: 2.0rem; opacity: 0.15; animation-duration: 12s; animation-delay: 2.8s; }

/* Row 3 - mid */
.floating-icon:nth-child(16) { left: 3%;  top: 50%; font-size: 1.9rem; animation-duration: 10s; animation-delay: 1s; }
.floating-icon:nth-child(17) { left: 16%; top: 55%; font-size: 2.8rem; opacity: 0.24; animation-duration: 14s; animation-delay: 3.2s; }
.floating-icon:nth-child(18) { left: 30%; top: 48%; font-size: 1.4rem; animation-duration: 9s;  animation-delay: 0.5s; }
.floating-icon:nth-child(19) { left: 44%; top: 52%; font-size: 2.2rem; opacity: 0.18; animation-duration: 11s; animation-delay: 2.2s; }
.floating-icon:nth-child(20) { left: 58%; top: 46%; font-size: 1.6rem; animation-duration: 8s;  animation-delay: 4.2s; }
.floating-icon:nth-child(21) { left: 70%; top: 54%; font-size: 3.2rem; opacity: 0.20; animation-duration: 16s; animation-delay: 1.6s; }
.floating-icon:nth-child(22) { left: 84%; top: 50%; font-size: 1.3rem; animation-duration: 10s; animation-delay: 3.8s; }

/* Row 4 - lower-mid */
.floating-icon:nth-child(23) { left: 8%;  top: 72%; font-size: 2.5rem; opacity: 0.22; animation-duration: 12s; animation-delay: 2s; }
.floating-icon:nth-child(24) { left: 22%; top: 68%; font-size: 1.5rem; animation-duration: 9s;  animation-delay: 0.9s; }
.floating-icon:nth-child(25) { left: 36%; top: 74%; font-size: 2.0rem; opacity: 0.16; animation-duration: 11s; animation-delay: 3.6s; }
.floating-icon:nth-child(26) { left: 50%; top: 70%; font-size: 1.8rem; animation-duration: 10s; animation-delay: 1.3s; }
.floating-icon:nth-child(27) { left: 64%; top: 76%; font-size: 2.6rem; opacity: 0.20; animation-duration: 13s; animation-delay: 4.8s; }
.floating-icon:nth-child(28) { left: 82%; top: 72%; font-size: 1.4rem; animation-duration: 8s;  animation-delay: 0.7s; }

/* Row 5 - bottom */
.floating-icon:nth-child(29) { left: 10%; top: 88%; font-size: 2.0rem; opacity: 0.14; animation-duration: 14s; animation-delay: 2.4s; }
.floating-icon:nth-child(30) { left: 40%; top: 90%; font-size: 1.6rem; animation-duration: 9s;  animation-delay: 1.7s; }
.floating-icon:nth-child(31) { left: 56%; top: 86%; font-size: 2.3rem; opacity: 0.18; animation-duration: 11s; animation-delay: 3.4s; }
.floating-icon:nth-child(32) { left: 76%; top: 92%; font-size: 1.5rem; animation-duration: 10s; animation-delay: 0.3s; }
.floating-icon:nth-child(33) { left: 94%; top: 44%; font-size: 1.8rem; opacity: 0.15; animation-duration: 12s; animation-delay: 5s; }
.floating-icon:nth-child(34) { left: 48%; top: 16%; font-size: 1.3rem; animation-duration: 8s;  animation-delay: 2.6s; }
.floating-icon:nth-child(35) { left: 86%; top: 62%; font-size: 2.4rem; opacity: 0.20; animation-duration: 15s; animation-delay: 1.1s; }

@keyframes floatIcon {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-25px) rotate(4deg) scale(1.04); }
    50% { transform: translateY(-12px) rotate(-3deg) scale(0.96); }
    75% { transform: translateY(-40px) rotate(4deg) scale(1.1); }
    100% { transform: translateY(0) rotate(0deg) scale(1); }
}

/* ============ MAINTENANCE MODE ============ */
.maintenance-page {
    min-height: 100vh;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.maintenance-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px;
}

.maintenance-content img { height: 80px; margin-bottom: 30px; }
.maintenance-content h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; }
.maintenance-content p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 30px; line-height: 1.8; }

.maintenance-contact {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.maintenance-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.95rem;
}
.maintenance-contact a:hover { color: var(--white); }

/* ============ COPYRIGHT ============ */
.copyright-link { color: var(--accent); font-weight: 500; }
.copyright-link:hover { color: var(--light-blue); }

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    .topbar { display: none; }
    .main-nav { 
        position: fixed;
        top: 0; right: -300px;
        width: 300px; height: 100vh;
        background: var(--primary-dark);
        padding: 80px 30px 30px;
        transition: var(--transition);
        z-index: 1001;
        overflow-y: auto;
    }
    .main-nav.open { right: 0; }
    .main-nav ul { flex-direction: column; gap: 5px; }
    .main-nav a { display: block; padding: 12px 20px; color: rgba(255,255,255,0.85); }
    .main-nav a:hover, .main-nav a.active { color: var(--white); background: rgba(255,255,255,0.08); }
    
    .dropdown-menu-custom {
        position: static; opacity: 1; visibility: visible;
        transform: none; box-shadow: none; border: none;
        background: rgba(255,255,255,0.04); border-radius: 8px;
        margin: 5px 0 5px 15px; padding: 5px;
    }
    .dropdown-menu-custom li a { color: rgba(255,255,255,0.7) !important; font-size: 0.85rem !important; padding: 8px 14px !important; }
    .dropdown-menu-custom li a:hover { background: rgba(255,255,255,0.06) !important; color: var(--accent) !important; }
    .mobile-toggle { display: block; z-index: 1002; }
    .header-cta { display: none; }
    
    .hero-content h1 { font-size: 2.2rem; }
    .hero-image-wrapper { display: none; }
    .hero-slide { min-height: 600px; padding: 60px 0 140px; }
    
    .section { padding: 60px 0; }
    .section-title { font-size: 2rem; }
    
    .about-features { grid-template-columns: 1fr; }
    .about-image-wrapper { margin-bottom: 40px; }
    
    .page-header { padding: 40px 0; }
    .page-header h1 { font-size: 2rem; }
    
    .mobile-bottom-bar { display: block; }
    body { padding-bottom: 75px; }
    .whatsapp-float { bottom: 90px; }
    .back-to-top { bottom: 150px; }
    .main-footer .footer-bottom { padding-bottom: 80px; }
}

@media (max-width: 576px) {
    .hero-content h1 { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; }
    .stat-number { font-size: 2.5rem; }
    .footer-top { padding: 50px 0 30px; }
    .cta-content h2 { font-size: 1.8rem; }
    .hero-slide { min-height: 520px; padding: 40px 0 120px; }
}

/* ============ DETAIL PAGE ============ */
.product-detail-image {
    background: linear-gradient(135deg, #e3f2fd, #f5f5f5);
    border-radius: var(--radius);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.product-detail-image img {
    max-height: 350px;
    object-fit: contain;
}

.spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.spec-table th, .spec-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 0.95rem;
}

.spec-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    width: 40%;
}

.spec-table td { background: var(--white); }
.spec-table tr:nth-child(even) td { background: var(--light); }

/* Blog detail */
.blog-detail-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.blog-detail-content img { border-radius: var(--radius-sm); margin: 20px 0; }

.blog-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.9rem;
}
.blog-detail-meta i { color: var(--accent); }

/* Sidebar */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.sidebar-widget h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light);
}

/* Service Detail */
.service-detail-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

/* Gallery page grid */
.gallery-grid-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 280px;
    cursor: pointer;
    margin-bottom: 25px;
}

.gallery-grid-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-grid-item:hover img { transform: scale(1.05); }

/* Mobile nav overlay */
.nav-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* Gas particle decoration */
.gas-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    pointer-events: none;
    overflow: hidden;
}

.gas-particle {
    position: absolute;
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 8s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translate(0, 0) scale(0); opacity: 0; }
    20% { opacity: 0.3; }
    80% { opacity: 0.3; }
    100% { transform: translate(var(--tx), var(--ty)) scale(1); opacity: 0; }
}

/* ============ HEADER SEARCH BUTTON ============ */
.header-search-btn {
    background: rgba(33,150,243,0.08);
    border: 1.5px solid rgba(33,150,243,0.2);
    color: var(--primary);
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.header-search-btn:hover {
    background: var(--gradient-accent);
    border-color: transparent;
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0,188,212,0.35);
}
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ============ SEARCH OVERLAY ============ */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.search-overlay.open {
    opacity: 1;
    visibility: visible;
}
.search-overlay-inner {
    position: relative;
    width: 100%;
    max-width: 700px;
    padding: 0 24px;
}
.search-overlay-close {
    position: absolute;
    top: -60px;
    right: 24px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}
.search-overlay-close:hover {
    background: rgba(255,255,255,0.18);
    color: var(--white);
    transform: rotate(90deg);
}
.search-overlay-content {
    text-align: center;
}
.search-overlay-label {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.search-overlay-form {
    margin-bottom: 22px;
}
.search-overlay-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: 60px;
    padding: 6px 6px 6px 22px;
    gap: 12px;
    transition: border-color 0.3s;
}
.search-overlay-input-wrap:focus-within {
    border-color: var(--accent);
    background: rgba(255,255,255,0.09);
}
.search-overlay-icon {
    color: rgba(255,255,255,0.4);
    font-size: 1rem;
    flex-shrink: 0;
}
.search-overlay-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 1.25rem;
    font-family: 'Poppins', sans-serif;
    padding: 6px 0;
}
.search-overlay-input::placeholder {
    color: rgba(255,255,255,0.3);
}
.search-overlay-submit {
    background: var(--gradient-accent);
    border: none;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.search-overlay-submit:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(0,188,212,0.4);
}
.search-overlay-hints {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.search-overlay-hints span {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
}
.search-overlay-hints a {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    transition: var(--transition);
}
.search-overlay-hints a:hover {
    background: rgba(0,188,212,0.2);
    border-color: var(--accent);
    color: var(--white);
}

/* ============ SEARCH PAGE ============ */
.search-page-form {
    max-width: 680px;
    margin: 0 auto 50px;
}
.search-page-input-wrap {
    display: flex;
    gap: 0;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.search-page-input {
    flex: 1;
    border: 2px solid #e0e8f0;
    border-right: none;
    border-radius: 60px 0 0 60px;
    padding: 16px 26px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    color: var(--text);
    transition: border-color 0.3s;
}
.search-page-input:focus {
    border-color: var(--secondary);
}
.search-page-btn {
    background: var(--gradient-accent);
    border: none;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 0 60px 60px 0;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}
.search-page-btn:hover {
    box-shadow: 0 6px 20px rgba(0,188,212,0.4);
}
.search-results-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.search-results-count {
    font-size: 0.95rem;
    color: var(--text-light);
}
.search-query-badge {
    background: rgba(33,150,243,0.08);
    color: var(--secondary);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
.search-result-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(26,58,92,0.07);
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    height: 100%;
}
.search-result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    color: var(--text);
}
.search-result-icon {
    height: 160px;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f2fd, #f5f9ff);
    display: flex; align-items: center; justify-content: center;
}
.search-result-icon img {
    width: 100%; height: 100%; object-fit: cover;
}
.search-result-placeholder {
    font-size: 2.5rem;
    color: var(--secondary);
    opacity: 0.35;
}
.search-result-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.search-result-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    width: fit-content;
}
.badge-product { background: rgba(33,150,243,0.1); color: var(--secondary); }
.badge-service { background: rgba(0,188,212,0.1); color: var(--accent); }
.badge-blog { background: rgba(26,58,92,0.08); color: var(--primary); }
.search-result-body h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    line-height: 1.4;
}
.search-result-body p {
    font-size: 0.86rem;
    color: var(--text-light);
    margin: 0;
    flex: 1;
}
.search-result-body mark {
    background: rgba(0,188,212,0.18);
    color: var(--primary);
    border-radius: 3px;
    padding: 0 2px;
}
.search-result-link {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: gap 0.2s;
}
.search-result-card:hover .search-result-link { gap: 10px; }
.search-notice, .search-no-results, .search-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}
.search-no-results h3, .search-empty-state h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}
.opacity-30 { opacity: 0.3; }
.search-suggestions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}
.search-suggestions span {
    color: var(--text-light);
    font-size: 0.85rem;
}
.search-suggestions a {
    background: var(--light);
    border: 1px solid #dde4ec;
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: var(--transition);
}
.search-suggestions a:hover {
    background: var(--secondary);
    color: var(--white);
}

/* ============ PRODUCT CATEGORIES (urunlerimiz.php) ============ */
.product-category-section {
    margin-bottom: 60px;
}
.product-category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e3ecf5;
}
.product-category-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--gradient-accent);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.product-category-header h2 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}
.product-category-header span {
    font-size: 0.82rem;
    color: var(--text-light);
    background: var(--light);
    padding: 3px 12px;
    border-radius: 20px;
    margin-left: auto;
}

/* ============ MEGA MENU — Yeni Tasarım ============ */
.mega-menu-wrap {
    position: fixed;
    top: var(--mega-top, 80px);
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
    transform: translateY(-8px);
}
.mega-menu-wrap.mega-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Görünmez köprü: nav item ile mega menü arasındaki boşluğu kapatır */
.main-nav li.has-mega::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 20px;
    background: transparent;
    z-index: 9989;
}

/* İç kapsayıcı */
.mega-menu-wrap > .mega-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(10,22,40,0.22), 0 0 0 1px rgba(0,0,0,0.06);
}

/* Sol featured panel */
.mega-featured {
    width: 240px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mega-featured-inner { position: relative; z-index: 2; }
.mega-featured-icon {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 18px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
}
.mega-featured h4 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}
.mega-featured p {
    color: rgba(255,255,255,0.72);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 20px;
}
.mega-featured-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}
.mega-featured-stats span {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
}
.mega-featured-stats span strong {
    display: block;
    font-size: 1rem;
}
.mega-featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--white) !important;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, gap 0.2s;
    backdrop-filter: blur(6px);
    width: fit-content;
}
.mega-featured-btn:hover {
    background: rgba(255,255,255,0.25);
    gap: 12px;
    color: var(--white) !important;
}
/* Dekorasyon daireler */
.mega-featured-deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.mega-deco-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.mega-deco-circle.c1 { width: 180px; height: 180px; bottom: -60px; right: -60px; }
.mega-deco-circle.c2 { width: 100px; height: 100px; top: -30px; right: -20px; background: rgba(255,255,255,0.04); }
.mega-deco-circle.c3 { width: 60px; height: 60px; bottom: 60px; left: -20px; background: rgba(0,188,212,0.15); }

/* Sağ kategoriler paneli */
.mega-categories {
    flex: 1;
    background: var(--white);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 16px;
    gap: 4px;
    align-content: start;
}

/* Her kategori kartı */
.mega-cat-card {
    background: var(--white);
    border-radius: 14px;
    padding: 16px 14px;
    transition: background 0.2s;
    cursor: default;
}
.mega-cat-card:hover { background: #f5f8ff; }

.mega-cat-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eef2f8;
}
.mega-cat-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.mega-cat-name {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary) !important;
    text-decoration: none;
    line-height: 1.3;
    margin-bottom: 2px;
    transition: color 0.2s;
    background: transparent !important;
    padding: 0 !important;
}
.mega-cat-name:hover { color: var(--secondary) !important; }
.mega-cat-desc {
    font-size: 0.72rem;
    color: var(--text-light);
    line-height: 1.3;
    margin: 0;
}

/* Ürün listesi */
.mega-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.mega-cat-list li a {
    display: flex !important;
    align-items: center;
    gap: 6px;
    padding: 5px 8px !important;
    border-radius: 7px !important;
    font-size: 0.79rem !important;
    color: #546e7a !important;
    font-weight: 400 !important;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, gap 0.18s !important;
    background: transparent !important;
    line-height: 1.3;
}
.mega-cat-list li a i {
    font-size: 0.6rem;
    opacity: 0.4;
    flex-shrink: 0;
    transition: opacity 0.18s, transform 0.18s;
}
.mega-cat-list li a:hover {
    background: rgba(33,150,243,0.07) !important;
    color: var(--secondary) !important;
    gap: 10px;
}
.mega-cat-list li a:hover i { opacity: 1; transform: translateX(2px); }
.mega-cat-list li.mega-more a {
    color: var(--accent) !important;
    font-weight: 600 !important;
    font-size: 0.75rem !important;
    margin-top: 2px;
}
.mega-cat-list li.mega-more a:hover { background: rgba(0,188,212,0.08) !important; }

/* Mega menünün konumunu header yüksekliğine göre ayarla */
.main-header { position: relative; }
.main-nav li.has-mega { position: relative; }

@media (max-width: 991px) {
    .mega-menu-wrap { display: none !important; }
    .header-search-btn { width: 38px; height: 38px; font-size: 0.9rem; }
}

/* ============================================================
   ANASAYFA — OVERLAY / TRANSPARENT HEADER
   Topbar + Header, slider'ın üzerinde şeffaf yüzer.
   Scroll olunca koyu cam efektine geçer.
   ============================================================ */

/* Topbar: flow'dan çıkar, viewport'un en üstüne yapış */
.home-hero .topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    background: rgba(5, 15, 30, 0.78);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Header: fixed, tam şeffaf */
.home-hero .main-header {
    position: fixed !important;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: transparent !important;
    box-shadow: none !important;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

/* Topbar varsa header onun hemen altından başlar */
.home-hero.has-topbar .main-header { top: 42px; }
.home-hero:not(.has-topbar) .main-header { top: 0; }

/* Scroll sonrası: koyu mavi cam efekti */
.home-hero .main-header.scrolled {
    background: rgba(10, 22, 40, 0.97) !important;
    backdrop-filter: blur(18px) !important;
    box-shadow: 0 4px 32px rgba(0,0,0,0.35) !important;
}

/* ── Nav linkleri ── */
.home-hero .main-header:not(.scrolled) .main-nav a {
    color: rgba(255,255,255,0.90);
}
.home-hero .main-header:not(.scrolled) .main-nav a:hover,
.home-hero .main-header:not(.scrolled) .main-nav a.active {
    color: #fff;
    background: rgba(255,255,255,0.10);
}
.home-hero .main-header:not(.scrolled) .main-nav a.active::after {
    background: rgba(255,255,255,0.60);
}
/* Scrolled halde de beyaz metin */
.home-hero .main-header.scrolled .main-nav a { color: rgba(255,255,255,0.85); }
.home-hero .main-header.scrolled .main-nav a:hover,
.home-hero .main-header.scrolled .main-nav a.active {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

/* ── Logo ── */
.home-hero .main-header:not(.scrolled) .site-logo {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 6px 28px rgba(0,0,0,0.22);
}

/* ── Arama butonu ── */
.home-hero .main-header:not(.scrolled) .header-search-btn {
    color: rgba(255,255,255,0.88);
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
}
.home-hero .main-header:not(.scrolled) .header-search-btn:hover {
    background: rgba(255,255,255,0.14);
    color: #fff;
    border-color: rgba(255,255,255,0.40);
}

/* ── CTA butonu ── */
.home-hero .main-header:not(.scrolled) .header-cta .btn {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.28);
    backdrop-filter: blur(10px);
    color: #fff !important;
}
.home-hero .main-header:not(.scrolled) .header-cta .btn:hover {
    background: rgba(255,255,255,0.22);
    color: #fff !important;
}

/* ── Mobil hamburger: beyaz çizgiler ── */
.home-hero .main-header:not(.scrolled) .mobile-toggle span {
    background: #fff;
}

/* ── Hero section: tam ekran ── */
.home-hero .hero-section {
    margin-top: 0;
}
.home-hero .hero-slide {
    min-height: 100vh;
    padding-top: 160px;
    padding-bottom: 300px; /* fazla alt boşluk = merkez noktası yukarı kayar */
    align-items: flex-end; /* her iki sütun altta, içerik margin ile yukarı çekilecek */
}

/* İçerik: altta hizalı ama kendi içinde yukarıda görünsün */
.home-hero .hero-content {
    padding-bottom: 120px;
}

/* Sağ resim: büyük, tam genişlik, altta */
.home-hero .hero-image-wrapper {
    align-self: flex-end;
}
.home-hero .hero-image-wrapper img {
    max-height: 760px;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 80px rgba(0,0,0,0.45));
}

@media (max-width: 992px) {
    .home-hero .hero-image-wrapper img { max-height: 520px; }
    .home-hero .hero-content { padding-bottom: 80px; }
    .home-hero .hero-slide { padding-bottom: 220px; }
}
@media (max-width: 768px) {
    .home-hero .hero-slide {
        min-height: 100vh;
        padding-top: 160px;
        padding-bottom: 160px;
        align-items: center;
    }
    .home-hero .hero-content { padding-bottom: 0; }
}
@media (max-width: 576px) {
    .home-hero .hero-slide {
        padding-top: 140px;
        padding-bottom: 140px;
    }
}
