/*
Theme Name: Softanova Netgaz
Theme URI: https://softanova.com
Author: Softanova
Author URI: https://softanova.com
Description: Netgaz Mekanik Doğalgaz Mühendislik için Softanova tarafından geliştirilmiş modern kurumsal WordPress teması.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: softanova-netgaz
*/

/* ============================================
   MODERN COLOR SYSTEM
   ============================================ */
:root {
    --color-primary: #26386c;
    --color-secondary: #1d2b55;
    --color-blue: #078586;
    --color-sky: #0aa1a2;
    --color-accent: #078586;
    --color-body: #64748b;
    --color-heading-1: #0f172a;
    --color-title: #0f172a;
    --color-heading-dark: #0f172a;
    --color-white: #fff;
    --color-border: #e2e8f0;
    --bg-dark-1: #26386c;
    --gradient-primary: linear-gradient(135deg, #26386c 0%, #3a4f8f 100%);
    --gradient-accent: linear-gradient(135deg, #078586 0%, #0aa1a2 100%);
    --font-body: 'Onest', sans-serif;
    --font-heading: 'Onest', sans-serif;
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --shadow-sm: 0 2px 8px rgba(38,56,108,0.08);
    --shadow-md: 0 8px 30px rgba(38,56,108,0.12);
    --shadow-lg: 0 20px 60px rgba(38,56,108,0.15);
    --radius: 12px;
    --radius-lg: 20px;
}

/* ============================================
   GLOBAL & TYPOGRAPHY
   ============================================ */
body {
    color: var(--color-body);
    font-family: var(--font-body);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-heading-1);
    font-family: var(--font-heading);
}

a {
    transition: all 0.3s ease;
}

/* ============================================
   BUTTONS - Modern Gradient Style
   ============================================ */
.rts-btn.btn-primary {
    background: var(--gradient-accent);
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(7,133,134,0.35);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.rts-btn.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #3a4f8f 0%, #7c3aed 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50px;
}
.rts-btn.btn-primary:hover {
    background: var(--gradient-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(7,133,134,0.45);
}
.rts-btn.btn-primary:hover::before {
    opacity: 1;
}
.rts-btn.btn-primary span,
.rts-btn.btn-primary i {
    position: relative;
    z-index: 1;
}

.rts-btn.btn-primary.btn-white {
    background: #fff;
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}
.rts-btn.btn-primary.btn-white:hover {
    background: var(--gradient-accent);
    color: #fff;
}

/* ============================================
   TOPBAR - Modern Minimal
   ============================================ */
.atazen-topbar {
    background: #0f172a;
    padding: 0;
    font-size: 12px;
    position: relative;
    z-index: 1001;
}
.atazen-topbar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(7,133,134,0.4), transparent);
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 34px;
}
.topbar-left {
    display: flex;
    align-items: center;
}
.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-weight: 500;
    padding: 0 15px;
    height: 34px;
    transition: color 0.2s;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.topbar-item:first-child { padding-left: 0; }
.topbar-item:hover { color: #fff; }
.topbar-item i { font-size: 10px; color: #078586; }

.topbar-right {
    display: flex;
    align-items: center;
}
.topbar-social {
    display: flex;
}
.topbar-social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    font-size: 12px;
    transition: all 0.2s;
    border-left: 1px solid rgba(255,255,255,0.06);
}
.topbar-social a:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}

/* ============================================
   MAIN HEADER
   ============================================ */
.atazen-header {
    background: #fff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f1f5f9;
}
.atazen-header.is-sticky {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
    gap: 15px;
}

/* Logo */
.header-logo {
    flex-shrink: 0;
}
.header-logo img,
.header-logo .custom-logo {
    max-height: 40px;
    width: auto;
}
.site-title-link {
    text-decoration: none;
}
.site-title-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

/* Desktop Nav */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
    overflow: visible;
}
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Top level items */
.nav-item {
    position: relative;
}
.nav-item > a {
    display: block;
    padding: 26px 10px;
    font-size: 12.5px;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-item:hover > a,
.nav-item--active > a {
    color: #078586;
}

/* Active underline */
.nav-item--active > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 2px;
    background: #078586;
    border-radius: 2px 2px 0 0;
}

/* -- Menü responsive -- */
@media (max-width: 1399px) {
    .nav-item > a { padding: 22px 6px; font-size: 11.5px; }
}
@media (max-width: 1199px) {
    .nav-item > a { padding: 22px 5px; font-size: 11px; }
}
@media (max-width: 991px) {
    .header-nav { display: none !important; }
    .header-burger { display: flex !important; }
    .header-inner { height: 58px; }
    .header-logo img, .header-logo .custom-logo { max-height: 34px; }
}
@media (max-width: 576px) {
    .header-inner { height: 52px; gap: 8px; }
    .header-logo img, .header-logo .custom-logo { max-height: 30px; }
    .header-actions { gap: 6px; }
    .lang-btn { padding: 4px 8px; font-size: 11px; }
    .header-burger { width: 34px; height: 34px; }
}

/* Dropdown */
.nav-sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s;
    list-style: none;
    z-index: 100;
    border-top: 2px solid #078586;
}
.nav-item:hover > .nav-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown items */
.sub-item > a {
    display: block;
    padding: 9px 20px;
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.15s;
}
.sub-item > a:hover,
.sub-item--active > a {
    color: #078586;
    background: #e8f5f5;
    padding-left: 24px;
}

/* Nested dropdown (3. seviye) */
.sub-item--has-sub {
    position: relative;
}
.sub-item--has-sub > a::after {
    content: '';
    float: right;
    margin-top: 6px;
    border: 4px solid transparent;
    border-left-color: #cbd5e1;
    transition: border-color 0.2s;
}
.sub-item--has-sub:hover > a::after {
    border-left-color: #078586;
}
.sub-item > .nav-sub {
    top: 0;
    left: 100%;
    border-radius: 10px;
    border-top: 2px solid #078586;
}
.sub-item:hover > .nav-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* CTA Button */
.header-cta-btn {
    display: none;
    align-items: center;
    gap: 6px;
    background: #078586;
    color: #fff;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.header-cta-btn:hover { background: #056869; color: #fff; }
.header-cta-btn i { font-size: 10px; }
@media (min-width: 1200px) { .header-cta-btn { display: inline-flex; } }

/* Header Dil Seçici */
.header-lang {
    position: relative;
}
.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-heading-1);
    cursor: pointer;
    transition: all 0.2s;
}
.lang-btn:hover {
    border-color: var(--color-blue);
}
.lang-btn i {
    font-size: 8px;
    transition: transform 0.2s;
}
.lang-btn.is-open i {
    transform: rotate(180deg);
}
.lang-drop {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    list-style: none;
    margin: 0;
    padding: 4px 0;
    min-width: 130px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.2s;
    z-index: 100;
}
.lang-drop.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-drop li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    color: #334155;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s;
}
.lang-drop li a:hover {
    background: #f8fafc;
}
.lang-drop li.active a {
    color: var(--color-blue);
    font-weight: 700;
}

/* Burger - 991px altı */
.header-burger {
    display: none;
    width: 36px; height: 36px;
    border: none;
    background: var(--color-primary);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}
.header-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}
.header-burger span:nth-child(2) {
    width: 14px;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-menu-panel.is-open {
    right: 0;
}
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
}
.mobile-menu-logo img {
    max-height: 36px;
}
.mobile-menu-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--color-heading-1);
}
.mobile-menu-nav {
    flex: 1;
    padding: 10px 0;
}
.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile-nav-list li {
    border-bottom: 1px solid #f8fafc;
}
.mobile-nav-list li a {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-heading-1);
    text-decoration: none;
    transition: all 0.2s;
}
.mobile-nav-list li a:hover {
    color: var(--color-blue);
    background: #f8fafc;
}
.submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    position: absolute;
    right: 10px;
    top: 8px;
    cursor: pointer;
    border-radius: 50%;
    background: #f8fafc;
    transition: all 0.3s;
}
.submenu-toggle i {
    font-size: 12px;
    transition: transform 0.3s;
}
.submenu-toggle.is-open i {
    transform: rotate(180deg);
}
.mobile-nav-list li {
    position: relative;
}
.mobile-nav-list .sub-menu,
.mobile-nav-list .submenu {
    display: none;
    padding-left: 15px;
    background: #fafbfc;
}
.mobile-nav-list .sub-menu.is-open,
.mobile-nav-list .submenu.is-open {
    display: block;
}
.mobile-nav-list .sub-menu a,
.mobile-nav-list .submenu a {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    padding: 12px 20px;
}
.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mobile-menu-phone,
.mobile-menu-email {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-heading-1);
    text-decoration: none;
}
.mobile-menu-phone i,
.mobile-menu-email i {
    color: var(--color-blue);
    width: 18px;
}
.mobile-menu-social {
    display: flex;
    gap: 8px;
    margin-top: 5px;
}
.mobile-menu-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-heading-1);
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
}
.mobile-menu-social a:hover {
    background: var(--color-blue);
    color: #fff;
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(38,56,108,0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.search-overlay-inner {
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
}
.search-overlay-form {
    display: flex;
    border-bottom: 2px solid rgba(255,255,255,0.3);
}
.search-overlay-form input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 28px;
    font-weight: 300;
    padding: 15px 0;
    font-family: 'Red Hat Display', sans-serif;
}
.search-overlay-form input::placeholder {
    color: rgba(255,255,255,0.4);
}
.search-overlay-form button {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0 10px;
}
.search-overlay-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}
.search-overlay-close:hover {
    background: rgba(255,255,255,0.1);
}

/* ============================================
   BOTTOM BAR
   ============================================ */
.btm {
    position: fixed;
    bottom: 10px;
    left: 12px;
    right: 12px;
    z-index: 9997;
    background: #fff;
    display: flex;
    align-items: flex-end;
    height: 62px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06);
    padding-bottom: 0;
}

/* Neon kırmızı kenar */
.btm__glow {
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    border: 1px solid rgba(7,133,134,0.15);
    box-shadow: 0 0 12px rgba(7,133,134,0.08);
    pointer-events: none;
}
.btm__glow::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(7,133,134,0.4), transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(7,133,134,0.3);
}

.btm__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    height: 62px;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.2s;
    color: #0f172a;
}
.btm__item svg {
    transition: transform 0.2s;
    color: #078586;
}
.btm__item span {
    font-size: 10px;
    font-weight: 600;
    font-family: var(--font-body);
    color: #1e293b;
}
.btm__item:active svg {
    transform: scale(0.88);
}

/* WhatsApp */
.btm__wa svg {
    color: #25d366;
}
.btm__wa span {
    color: #1e293b;
}

/* Ortadaki Ara butonu */
.btm__call {
    position: relative;
    justify-content: flex-end;
    padding-bottom: 4px;
    gap: 2px;
}
.btm__call > svg:not(.btm__ring) {
    width: 22px;
    height: 22px;
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}
.btm__call-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #078586;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 4px 16px rgba(7,133,134,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btm__call:active .btm__call-circle {
    transform: translateX(-50%) scale(0.92);
    box-shadow: 0 2px 10px rgba(7,133,134,0.5);
}
.btm__call span {
    color: #078586;
    font-weight: 700;
}

/* SVG kesik stroke */
.btm__ring {
    position: absolute;
    top: -23px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    z-index: 1;
    pointer-events: none;
    animation: spin-slow 8s linear infinite;
}
.btm__ring circle {
    fill: none;
    stroke: rgba(7,133,134,0.25);
    stroke-width: 1.5;
    stroke-dasharray: 8 6;
}
@keyframes spin-slow {
    to { transform: translateX(-50%) rotate(360deg); }
}

@media (max-width: 991px) {
    body { padding-bottom: 82px; }
}

/* Hide old Invena header/nav elements */
.header-one,
#side-bar,
.search-input-area,
#anywhere-home {
    display: none !important;
}

@media (max-width: 991px) {
    .atazen-topbar {
        display: none;
    }
    .header-inner {
        height: 65px;
    }
}

@media (max-width: 576px) {
    .header-inner {
        height: 60px;
    }
    .header-logo img,
    .header-logo .custom-logo {
        max-height: 36px;
    }
}

/* ============================================
   FULLSCREEN HERO SLIDER
   ============================================ */
.hero {
    position: relative;
}
.hero__slide {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(38,56,108,0.85) 0%,
        rgba(38,56,108,0.6) 50%,
        rgba(38,56,108,0.4) 100%
    );
    z-index: 1;
}
.hero__slide .container {
    position: relative;
    z-index: 2;
}
.hero__inner {
    max-width: 650px;
    padding: 40px 0;
}

/* Badge */
.hero__badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Title */
.hero__title {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

/* Desc */
.hero__desc {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.75);
    margin-bottom: 35px;
    max-width: 520px;
}

/* Buttons */
.hero__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}
.hero__btn--primary {
    background: #078586;
    color: #fff;
    box-shadow: 0 4px 20px rgba(7,133,134,0.4);
}
.hero__btn--primary:hover {
    background: #056869;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(7,133,134,0.5);
    color: #fff;
}
.hero__btn--primary i {
    font-size: 13px;
    transition: transform 0.3s;
}
.hero__btn--primary:hover i {
    transform: translateX(4px);
}
.hero__btn--ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}
.hero__btn--ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transform: translateY(-2px);
}

/* Navigation */
.hero__nav {
    position: absolute;
    bottom: 40px;
    right: 50px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero__prev,
.hero__next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #fff;
}
.hero__prev:hover,
.hero__next:hover {
    background: #078586;
    border-color: #078586;
}
.hero__prev i,
.hero__next i {
    font-size: 13px;
}
.hero__counter {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    font-weight: 700;
    font-family: var(--font-heading);
    min-width: 50px;
    text-align: center;
}
.hero__cur {
    color: #fff;
    font-size: 18px;
}
.hero__tot {
    color: rgba(255,255,255,0.4);
}

/* Progress */
.hero__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 10;
}
.hero__progress-bar {
    height: 100%;
    background: #078586;
    width: 0%;
}

/* Ken Burns */
.hero__slide {
    background-size: cover;
    background-repeat: no-repeat;
}

/* Responsive */
@media (max-width: 991px) {
    .hero__slide {
        min-height: 85vh;
    }
    .hero__inner {
        padding: 30px 0;
    }
    .hero__nav {
        bottom: 25px;
        right: 20px;
    }
}
@media (max-width: 576px) {
    .hero__slide {
        min-height: calc(100vh - 130px);
        min-height: calc(100dvh - 130px);
        align-items: center;
    }
    .hero__inner {
        padding: 20px 0;
    }
    .hero__badge {
        font-size: 10px;
        padding: 6px 14px;
        margin-bottom: 16px;
    }
    .hero__title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .hero__desc {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    .hero__buttons {
        flex-direction: column;
        gap: 10px;
    }
    .hero__btn {
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    .hero__nav {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    .hero__prev,
    .hero__next {
        width: 34px;
        height: 34px;
    }
    .hero__prev i,
    .hero__next i {
        font-size: 11px;
    }
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.sec-about {
    padding: 100px 0;
    background: #fff;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-media {
    position: relative;
}
.about-media img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 4/3;
}
.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #078586;
    color: #fff;
    padding: 20px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(7,133,134,0.3);
}
.about-badge strong {
    display: block;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}
.about-badge span {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sec-label {
    display: inline-block;
    color: #078586;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.sec-title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}
.sec-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 28px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}
.about-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}
/* Global Buttons */
.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #078586;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-main:hover {
    background: #056869;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(7,133,134,0.3);
}
.btn-main i { font-size: 12px; transition: transform 0.3s; }
.btn-main:hover i { transform: translateX(3px); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #1e293b;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}
.btn-outline:hover {
    border-color: #078586;
    color: #078586;
    transform: translateY(-2px);
}
.about-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .sec-about { padding: 60px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-badge { right: 15px; bottom: -15px; padding: 15px 20px; }
    .about-badge strong { font-size: 26px; }
}
@media (max-width: 576px) {
    .about-features { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.sec-services {
    padding: 80px 0;
    background: #f8fafc;
}
.sec-header {
    text-align: center;
    margin-bottom: 50px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.sec-footer {
    text-align: center;
    margin-top: 40px;
}
.srv-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}
.srv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: transparent;
    color: inherit;
}
.srv-card__img {
    height: 180px;
    overflow: hidden;
}
.srv-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.srv-card:hover .srv-card__img img {
    transform: scale(1.06);
}
.srv-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.srv-card__icon {
    width: 48px;
    height: 48px;
    background: #e8f5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #078586;
    font-size: 20px;
    transition: all 0.3s;
}
.srv-card:hover .srv-card__icon {
    background: #078586;
    color: #fff;
}
.srv-card:hover .srv-card__icon svg {
    stroke: #fff;
}
.srv-card__title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}
.srv-card__desc {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    flex: 1;
    margin-bottom: 16px;
}
.srv-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #078586;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    background: #e8f5f5;
    transition: all 0.3s;
    margin-top: auto;
}
.srv-card:hover .srv-card__link {
    background: #078586;
    color: #fff;
    gap: 10px;
}
.srv-card__link i {
    font-size: 11px;
    transition: transform 0.3s;
}
.srv-card:hover .srv-card__link i {
    transform: translateX(2px);
}

@media (max-width: 991px) {
    .sec-services { padding: 60px 0; }
}
@media (max-width: 576px) {
    .srv-card__img { height: 160px; }
    .srv-prev, .srv-next { width: 36px; height: 36px; font-size: 12px; }
}

/* ============================================
   COUNTER - Gradient Background
   ============================================ */
.rts-counter-up-area.counter-bg {
    background: var(--gradient-primary) !important;
    position: relative;
    overflow: hidden;
}
.rts-counter-up-area.counter-bg::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,77,79,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.rts-counter-up-area.counter-bg::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(7,133,134,0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.single-counter {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 30px 20px;
}
.single-counter .icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.15);
}
.single-counter .icon img {
    filter: brightness(10);
    width: 35px;
}
.single-counter .counter-details .title {
    color: #fff !important;
    font-size: 48px;
    font-weight: 800;
}
.single-counter .counter-details .disc {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    font-weight: 500;
    margin-top: 5px;
}

/* ============================================
   PROJECTS - Modern Cards with Overlay
   ============================================ */
.rts-gallery-area {
    background: #f8fafc;
}
.project-style-one {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s;
    position: relative;
}
.project-style-one:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.project-style-one .thumbnail {
    overflow: hidden;
    display: block;
}
.project-style-one .thumbnail img {
    transition: transform 0.6s ease;
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.project-style-one:hover .thumbnail img {
    transform: scale(1.08);
}
.project-style-one .inner-content {
    background: #fff;
    padding: 20px 25px;
}
.project-style-one .inner-content .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    transition: color 0.3s;
}
.project-style-one .inner-content .title:hover {
    color: var(--color-blue);
}
.project-style-one .inner-content span {
    color: var(--color-blue);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   CLIENT LOGOS - Clean Grid
   ============================================ */
.rts-trusted-client {
    background: #fff;
    padding-top: 60px;
}
.client-title {
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-body) !important;
    font-weight: 600;
    margin-bottom: 30px;
}
.client-wrapper-one {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.client-wrapper-one a {
    padding: 15px 25px;
    border-radius: var(--radius);
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
    background: #fff;
}
.client-wrapper-one a:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
    transform: translateY(-3px);
}
.client-wrapper-one a img {
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}
.client-wrapper-one a:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   TESTIMONIALS - Modern Slider
   ============================================ */
.rts-client-review-area {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
}
.testimonials-main-wrapper-two {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
}
.testimonials-main-wrapper-two:hover {
    box-shadow: var(--shadow-md);
}
.testimonials-main-wrapper-two .left-thumbnail img {
    border-radius: 50%;
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    border: 3px solid var(--color-blue);
    padding: 3px;
}
.testimonials-main-wrapper-two .right-content-testimonials .disc {
    font-style: italic;
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--color-blue);
}
.testimonials-main-wrapper-two .name-desig .title {
    color: var(--color-primary);
    font-weight: 700;
}
.testimonials-main-wrapper-two .name-desig p {
    color: var(--color-blue);
    font-size: 14px;
}

/* ============================================
   CTA - Bold Gradient
   ============================================ */
.rts-call-to-action-area-two {
    background: var(--gradient-primary) !important;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.rts-call-to-action-area-two::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="80" r="1.5" fill="rgba(255,255,255,0.04)"/></svg>');
}
.cta-style-two-area {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-style-two-area .title {
    color: #fff !important;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 30px;
}
.cta-style-two-area .rts-btn {
    margin: 0 10px;
}

/* ============================================
   BLOG - Clean Modern Cards
   ============================================ */
.rts-blog-area {
    background: #fff;
}
.single-blog-area-one {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    transition: all 0.4s;
    padding: 25px 25px 0;
}
.single-blog-area-one:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.single-blog-area-one > p {
    color: var(--color-blue);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.single-blog-area-one > p span {
    color: var(--color-body);
    font-weight: 400;
}
.single-blog-area-one .title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
    transition: color 0.3s;
}
.single-blog-area-one a:hover .title {
    color: var(--color-blue);
}
.single-blog-area-one .thumbnail {
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
}
.single-blog-area-one .thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}
.single-blog-area-one:hover .thumbnail img {
    transform: scale(1.05);
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.appoinment-area-start {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
}
.appoinment-wrapper-one-start {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.appoinment-wrapper-one-start input,
.appoinment-wrapper-one-start textarea,
.appoinment-wrapper-one-start select,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    border: 2px solid #e2e8f0 !important;
    border-radius: var(--radius) !important;
    padding: 14px 20px !important;
    font-size: 15px;
    transition: all 0.3s;
    background: #f8fafc;
    width: 100%;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    border-color: var(--color-blue) !important;
    box-shadow: 0 0 0 4px rgba(7,133,134,0.1) !important;
    background: #fff;
}
.wpcf7-form input[type="submit"] {
    background: var(--gradient-accent) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 16px 40px !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    cursor: pointer;
    transition: all 0.4s !important;
    box-shadow: 0 4px 15px rgba(7,133,134,0.35);
}
.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(7,133,134,0.45);
}

.appoinment-thumbnail {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.appoinment-thumbnail img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    margin-bottom: 0;
}

/* CTA Bar */
.footer-cta {
    background: #0f172a;
    padding: 0;
    position: relative;
    overflow: hidden;
}
.footer-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(7,133,134,0.3), transparent);
}
.footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 50px 0;
    flex-wrap: wrap;
}
.footer-cta__text h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
}
.footer-cta__text p {
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    margin: 0;
}
.footer-cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}
.footer-cta__btn--call {
    background: #078586;
    color: #fff;
}
.footer-cta__btn--call:hover {
    background: #056869;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(7,133,134,0.3);
}
.footer-cta__btn--form {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}
.footer-cta__btn--form:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    transform: translateY(-2px);
}
.footer-cta__btn i {
    font-size: 12px;
}

/* Main Footer */
.footer-main {
    background: #0a1228;
    padding: 70px 0 50px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
    gap: 40px;
}
.footer-logo {
    margin-bottom: 18px;
}
.footer-logo img {
    max-height: 80px;
}
.footer-logo-text {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
}
.footer-desc {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 8px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: #078586;
    color: #fff;
    transform: translateY(-2px);
}

.footer-heading {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: #078586;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links li a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links li a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: background 0.2s;
}
.footer-links li a:hover {
    color: #fff;
    padding-left: 4px;
}
.footer-links li a:hover::before {
    background: #078586;
}

.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}
.footer-contact li i {
    color: #078586;
    font-size: 14px;
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}
.footer-contact li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact li a:hover {
    color: #fff;
}

.footer-hours {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14px;
}
.footer-hours li span {
    color: rgba(255,255,255,0.5);
}
.footer-hours li strong {
    color: #fff;
    font-weight: 600;
}

/* Copyright */
.footer-bottom {
    background: #080e1e;
    padding: 18px 0;
}
.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 13px;
    margin: 0;
}
.footer-credit a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-credit a:hover {
    color: #078586;
}

/* Hide old footer */
.rts-footer-area,
.rts-copyright-area,
.bg-footer-two {
    display: none !important;
}

/* Footer responsive */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-cta__inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
    }
    .footer-cta__actions {
        justify-content: center;
    }
}
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-main {
        padding: 50px 0 30px;
    }
    .footer-cta__text h3 {
        font-size: 20px;
    }
    .footer-cta__actions {
        flex-direction: column;
        width: 100%;
    }
    .footer-cta__btn {
        justify-content: center;
    }
    .footer-bottom__inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   BREADCRUMB - Modern
   ============================================ */
.rts-breadcrumb-area {
    background: var(--gradient-primary) !important;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.rts-breadcrumb-area::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,77,79,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.rts-breadcrumb-area .title {
    color: #fff;
    font-weight: 800;
    font-size: 36px;
}
.bread-tag a {
    color: rgba(255,255,255,0.7);
}
.bread-tag a.active {
    color: var(--color-sky);
}

/* ============================================
   MOBILE FLOATING CALL BUTTON
   ============================================ */
.mobile-phone-btn {
    background: var(--gradient-accent) !important;
    box-shadow: 0 4px 20px rgba(7,133,134,0.4) !important;
    animation: pulse-phone 2s infinite;
}
@keyframes pulse-phone {
    0% { box-shadow: 0 4px 20px rgba(7,133,134,0.4); }
    50% { box-shadow: 0 4px 30px rgba(7,133,134,0.6); }
    100% { box-shadow: 0 4px 20px rgba(7,133,134,0.4); }
}

/* ============================================
   PROGRESS/BACK TO TOP
   ============================================ */
.progress-wrap {
    background: var(--color-blue);
}
.progress-wrap svg.progress-circle path {
    stroke: var(--color-blue);
}

/* ============================================
   LOADER
   ============================================ */
.loader-wrapper .loader {
    border-top-color: var(--color-blue) !important;
}

/* ============================================
   SECTION SPACING
   ============================================ */
.rts-section-gap {
    padding: 100px 0;
}
.rts-section-gapBottom {
    padding-bottom: 100px;
}

/* ============================================
   RESPONSIVE TWEAKS
   ============================================ */
@media (max-width: 991px) {
    .rts-banner-area-two {
        min-height: 60vh;
    }
    .banner-inner-two-content .title {
        font-size: 32px;
    }
    .rts-section-gap {
        padding: 60px 0;
    }
    .rts-section-gapBottom {
        padding-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .rts-banner-area-two {
        min-height: 50vh;
    }
    .banner-inner-two-content .title {
        font-size: 26px;
    }
    .single-counter .counter-details .title {
        font-size: 36px;
    }
    .appoinment-wrapper-one-start {
        padding: 25px;
    }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: var(--gradient-accent);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
    background: var(--color-blue);
    color: #fff;
}

/* ============================================
   COUNTER SECTION
   ============================================ */
.sec-counter {
    padding: 60px 0;
    background: #0f172a;
}
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.counter-item {
    text-align: center;
    padding: 30px 15px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
}
.counter-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}
.counter-item__icon {
    color: #078586;
    margin-bottom: 14px;
}
.counter-item__number {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
    font-family: var(--font-heading);
}
.counter-item__label {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 500;
}
@media (max-width: 991px) { .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 576px) { .counter-item__number { font-size: 30px; } .sec-counter { padding: 40px 0; } }

/* ============================================
   PROJECTS SECTION
   ============================================ */
.sec-projects {
    padding: 80px 0;
    background: #f8fafc;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.proj-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    border: 1px solid #f1f5f9;
}
.proj-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); color: inherit; }
.proj-card__img {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.proj-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.proj-card:hover .proj-card__img img { transform: scale(1.06); }
.proj-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(38,56,108,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.proj-card:hover .proj-card__overlay { opacity: 1; }
.proj-card__more {
    background: #078586;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.proj-card__info {
    padding: 18px 20px;
}
.proj-card__info h4 { font-size: 16px; font-weight: 700; margin: 0 0 4px; color: #0f172a; }
.proj-card__info span { font-size: 13px; color: #078586; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
@media (max-width: 576px) { .proj-card__img { height: 180px; } .projects-grid { grid-template-columns: 1fr; } }

/* ============================================
   REFERANSLAR
   ============================================ */
.sec-refs {
    padding: 70px 0;
    background: #fff;
}
.refs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.ref-logo {
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
    background: #fff;
}
.ref-logo:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transform: translateY(-3px);
    border-color: transparent;
}
.ref-logo img {
    max-height: 45px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s;
}
.ref-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.sec-testimonials {
    padding: 80px 0;
    background: #f8fafc;
}
.testi-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #f1f5f9;
    height: 100%;
    position: relative;
}
.testi-card__quote {
    position: absolute;
    top: 20px;
    right: 20px;
}
.testi-card__text {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
    font-style: italic;
}
.testi-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.testi-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-card__author strong { display: block; font-size: 15px; color: #0f172a; }
.testi-card__author span { font-size: 13px; color: #078586; font-weight: 500; }
.testimonialsSwiper .swiper-slide { height: auto; }

/* ============================================
   BLOG
   ============================================ */
.sec-blog {
    padding: 80px 0;
    background: #fff;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); color: inherit; }
.blog-card__img { height: 200px; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.blog-card__cat { background: #e8f5f5; color: #078586; padding: 3px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.blog-card__date { font-size: 12px; color: #94a3b8; }
.blog-card__title { font-size: 17px; font-weight: 700; color: #0f172a; margin-bottom: 14px; line-height: 1.4; flex: 1; }
.blog-card__link { font-size: 13px; color: #078586; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }
.blog-card:hover .blog-card__link { gap: 10px; }
@media (max-width: 991px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .blog-grid { grid-template-columns: 1fr; } .blog-card__img { height: 180px; } }

/* ============================================
   CONTACT SECTION
   ============================================ */
.sec-contact {
    padding: 80px 0;
    background: #f8fafc;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}
.contact-form-side {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #f1f5f9;
}
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
}
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.contact-info-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #e8f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #078586;
    font-size: 18px;
    margin-bottom: 14px;
}
.contact-info-card h4 { font-size: 15px; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.contact-info-card a, .contact-info-card span { color: #64748b; font-size: 14px; text-decoration: none; }
.contact-info-card a:hover { color: #078586; }
@media (max-width: 991px) { .contact-grid { grid-template-columns: 1fr; } .contact-form-side { padding: 28px; } }


/* FIX: Odometer override - sayılar yan yana */
.counter-item__number .odometer {
    display: inline !important;
    font-size: inherit !important;
    font-family: inherit !important;
}
.counter-item__number .odometer .odometer-inside {
    display: inline !important;
}
.counter-item__number .odometer .odometer-digit {
    display: inline-block !important;
    vertical-align: baseline !important;
}
.counter-item__number .odometer .odometer-digit .odometer-digit-inner {
    display: inline-block !important;
}

/* FIX: Referans logoları daha belirgin */
.ref-logo {
    background: #fafafa;
    padding: 16px 24px;
}
.ref-logo img {
    max-height: 55px;
    filter: grayscale(50%);
    opacity: 0.7;
}

/* FIX: Mobil düzeltmeler */
@media (max-width: 576px) {
    .sec-about, .sec-services, .sec-projects, .sec-refs, .sec-testimonials, .sec-blog, .sec-contact {
        padding: 50px 0;
    }
    .sec-title { font-size: 22px; }
    .sec-header { margin-bottom: 30px; }
    .counter-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .counter-item { padding: 20px 10px; }
    .counter-item__number { font-size: 28px; }
    .counter-item__label { font-size: 12px; }
    .about-grid { gap: 30px; }
    .about-badge { padding: 14px 18px; bottom: -12px; right: 10px; }
    .about-badge strong { font-size: 24px; }
    .about-buttons { flex-direction: column; }
    .btn-main, .btn-outline { justify-content: center; width: 100%; }
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-side { padding: 24px 20px; }
    .footer-cta__text h3 { font-size: 18px; }
}

/* ============================================
   BREADCRUMB / PAGE HERO
   ============================================ */
.page-hero {
    background: #0f172a;
    padding: 60px 0;
    position: relative;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(7,133,134,0.3), transparent);
}
.page-hero__title {
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
}
.page-hero__breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
}
.page-hero__breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.page-hero__breadcrumb a:hover { color: #fff; }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero__breadcrumb .current { color: #078586; }

/* ============================================
   PAGE CONTENT
   ============================================ */
.page-content {
    padding: 60px 0;
}
.page-content .entry-content {
    max-width: 800px;
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}
.page-content .entry-content h2,
.page-content .entry-content h3 {
    color: #0f172a;
    margin-top: 30px;
    margin-bottom: 15px;
}
.page-content .entry-content img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}
.page-content .entry-content a {
    color: #078586;
}

/* ============================================
   BLOG LIST
   ============================================ */
.blog-list-section { padding: 60px 0; }

/* ============================================
   SINGLE POST
   ============================================ */
.single-content { padding: 60px 0; }
.single-content .entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}
.single-content .entry-content h2,
.single-content .entry-content h3 {
    color: #0f172a;
    margin-top: 30px;
    margin-bottom: 15px;
}
.single-content .entry-content img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}
.single-content .entry-content a {
    color: #078586;
}
.single-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
    color: #94a3b8;
}
.single-meta i { color: #078586; font-size: 12px; margin-right: 4px; }
.single-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 30px; }
.single-tags a {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s;
}
.single-tags a:hover { border-color: #078586; color: #078586; }
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
}
.post-nav a {
    display: block;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}
.post-nav a:hover { background: #e8f5f5; color: #078586; }
.post-nav a span { display: block; font-size: 12px; color: #94a3b8; font-weight: 400; margin-bottom: 4px; }

/* ============================================
   404 PAGE
   ============================================ */
.sec-404 {
    padding: 80px 0;
    text-align: center;
}
.sec-404 h1 {
    font-size: 120px;
    font-weight: 900;
    color: #078586;
    line-height: 1;
    margin-bottom: 16px;
}
.sec-404 p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
}

/* ============================================
   MIXITUP FILTERS
   ============================================ */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}
.filter-tabs .filter {
    padding: 8px 20px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-tabs .filter:hover,
.filter-tabs .filter.active {
    background: #078586;
    color: #fff;
    border-color: #078586;
}

/* ============================================
   INNER PAGES RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 576px) {
    .page-hero { padding: 40px 0; }
    .page-hero__title { font-size: 24px; }
    .sec-404 h1 { font-size: 80px; }
    .post-nav { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr !important; }
}

/* ============================================
   İLETİŞİM SAYFASI
   ============================================ */
.sec-contact-cards {
    padding: 60px 0 0;
}
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.c-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}
.c-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: transparent;
    color: inherit;
}
.c-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #e8f5f5;
    color: #078586;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}
.c-card:hover .c-card__icon {
    background: #078586;
    color: #fff;
}
.c-card:hover .c-card__icon svg {
    stroke: #fff;
}
.c-card__icon--wa {
    background: #dcfce7;
    color: #25d366;
}
.c-card--wa:hover .c-card__icon--wa {
    background: #25d366;
    color: #fff;
}
.c-card--wa:hover .c-card__icon--wa svg {
    fill: #fff;
}
.c-card__text span {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.c-card__text strong {
    display: block;
    font-size: 15px;
    color: #0f172a;
    font-weight: 700;
}

.sec-contact-main {
    padding: 60px 0 80px;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}
.contact-form-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #f1f5f9;
}
.contact-map-box {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    min-height: 400px;
}
.contact-map-box iframe {
    display: block;
}

@media (max-width: 991px) {
    .contact-cards { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .contact-cards { grid-template-columns: 1fr; gap: 12px; }
    .c-card { padding: 18px; }
    .contact-form-box { padding: 24px 20px; }
    .sec-contact-cards { padding: 40px 0 0; }
    .sec-contact-main { padding: 40px 0 60px; }
}

/* ============================================
   MOBİL MENÜ TAŞMA FIX
   ============================================ */
.mobile-menu-panel {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-nav-list li a {
    word-break: break-word;
    white-space: normal;
    line-height: 1.4;
}
.mobile-nav-list .sub-menu a,
.mobile-nav-list .submenu a,
.mobile-nav-list .nav-sub a {
    font-size: 13px;
    padding: 10px 20px;
    word-break: break-word;
    white-space: normal;
}
.mobile-nav-list .nav-sub {
    display: none;
    padding-left: 12px;
    background: #fafbfc;
}
.mobile-nav-list .nav-sub.is-open {
    display: block;
}
.mobile-nav-list .nav-item--has-sub,
.mobile-nav-list .sub-item--has-sub {
    position: relative;
}

/* ============================================
   KURUMSAL SAYFA
   ============================================ */
.kurumsal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.k-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.k-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: transparent;
    color: inherit;
}
.k-card__img {
    height: 200px;
    overflow: hidden;
}
.k-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.k-card:hover .k-card__img img {
    transform: scale(1.06);
}
.k-card__body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.k-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #e8f5f5;
    color: #078586;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s;
}
.k-card:hover .k-card__icon {
    background: #078586;
    color: #fff;
}
.k-card:hover .k-card__icon svg {
    stroke: #fff;
}
.k-card__title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}
.k-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    flex: 1;
    margin-bottom: 16px;
}
.k-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #078586;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    background: #e8f5f5;
    transition: all 0.3s;
    margin-top: auto;
    width: fit-content;
}
.k-card:hover .k-card__link {
    background: #078586;
    color: #fff;
}
@media (max-width: 991px) {
    .kurumsal-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
    .kurumsal-grid { grid-template-columns: 1fr; }
    .k-card__img { height: 180px; }
}

/* ========== GALERI (Çalışmalar) ========== */
.sec-gallery { padding: 60px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { border-radius: 12px; overflow: hidden; background: #f1f5f9; position: relative; }
.gallery-item__link { display: block; }
.gallery-item__link img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform .3s; }
.gallery-item__link:hover img { transform: scale(1.05); }
.gallery-item-video video { width: 100%; height: 240px; object-fit: cover; border-radius: 12px; background: #000; }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ========== REFERANSLAR SAYFA ========== */
.refs-grid-page { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 20px; }
.sec-refs-page { padding: 60px 0; }

/* ==========================================================================
   NETGAZ — HERO (tek videolu)
   Atazen slider yerine: full-bleed video + koyu gradient overlay + büyük
   tipografi, mobil dahil her yerde autoplay çalışır (muted+playsinline).
   ========================================================================== */

.hero.hero--video {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0;
    background: #1d2b55;
    isolation: isolate;
}

.hero--video .hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero--video .hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(29, 43, 85, 0.88) 0%, rgba(7, 133, 134, 0.55) 100%),
        linear-gradient(to bottom, rgba(29, 43, 85, 0.25) 0%, rgba(29, 43, 85, 0.75) 100%);
    z-index: 1;
}

.hero--video .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero--video .hero__inner {
    max-width: 920px;
    color: #fff;
}

.hero--video .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    color: #fff;
    font-family: 'Onest', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 32px;
    text-transform: none;
}

.hero--video .hero__badge::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #078586;
    box-shadow: 0 0 0 4px rgba(7, 133, 134, 0.28);
    animation: sftPulse 2.4s ease-in-out infinite;
}

@keyframes sftPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(7, 133, 134, 0.28); }
    50%      { box-shadow: 0 0 0 8px rgba(7, 133, 134, 0.12); }
}

.hero--video .hero__title {
    font-family: 'Onest', system-ui, sans-serif;
    font-size: clamp(2.5rem, 6.2vw + 0.5rem, 5.5rem);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -0.035em;
    color: #fff;
    margin: 0 0 36px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
    max-width: 15ch;
}

.hero--video .hero__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.hero--video .hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 999px;
    font-family: 'Onest', system-ui, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.005em;
    text-decoration: none;
    transition: transform .25s cubic-bezier(.4,0,.2,1),
                background-color .25s cubic-bezier(.4,0,.2,1),
                box-shadow .25s cubic-bezier(.4,0,.2,1),
                border-color .25s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
    border: 1px solid transparent;
}

.hero--video .hero__btn--primary {
    background: #078586;
    color: #fff;
    box-shadow: 0 8px 32px rgba(7, 133, 134, 0.45);
}
.hero--video .hero__btn--primary:hover {
    background: #056869;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(7, 133, 134, 0.6);
    color: #fff;
}

.hero--video .hero__btn--ghost {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hero--video .hero__btn--ghost:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

/* Scroll indicator — alt orta "aşağı in" işareti */
.hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 16px;
    z-index: 2;
    display: none;
    transition: border-color .2s;
}
.hero__scroll:hover { border-color: #fff; }

.hero__scroll span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: sftScrollDot 2s ease-in-out infinite;
}

@keyframes sftScrollDot {
    0%,100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50%     { transform: translateX(-50%) translateY(14px); opacity: 0.35; }
}

@media (min-width: 900px) {
    .hero__scroll { display: block; }
}

/* Mobile fine-tune */
@media (max-width: 768px) {
    .hero.hero--video {
        min-height: 82vh;
        padding: 80px 0;
    }
    .hero--video .hero__title {
        font-size: clamp(2rem, 9vw, 2.75rem);
        max-width: none;
        margin-bottom: 28px;
    }
    .hero--video .hero__badge {
        padding: 8px 18px;
        font-size: 0.82rem;
        margin-bottom: 24px;
    }
    .hero--video .hero__buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .hero--video .hero__btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

/* Reduced motion tercih */
@media (prefers-reduced-motion: reduce) {
    .hero--video .hero__video { display: none; }
    .hero.hero--video { background: #1d2b55 url(/wp-content/uploads/2023/01/netgaz-_-slider-01-2048x725.jpg) center/cover; }
    .hero__scroll span { animation: none; }
}

/* ==========================================================================
   NETGAZ — LUXURY MINIMAL HERO + TRANSPARENT→STICKY HEADER
   Dribbble "Timeless Luxury" tarzı; ince tipografi, italic accent,
   underline-link butonlar, cam efektli sticky header.
   ========================================================================== */

/* ---------- Hero tipografi refactor (override) ---------- */

.hero--video .hero__badge {
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    font-family: 'Onest', system-ui, sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    margin-bottom: 36px;
    gap: 14px;
}

.hero--video .hero__badge::before {
    content: "";
    width: 40px;
    height: 1px;
    border-radius: 0;
    background: rgba(255,255,255,0.55);
    box-shadow: none;
    animation: none;
}

.hero--video .hero__title {
    font-family: 'Onest', system-ui, sans-serif;
    font-size: clamp(2.75rem, 7vw + 1rem, 6.25rem);
    font-weight: 500;             /* Medium — "luxury" ağırlığı */
    line-height: 1.03;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0 0 52px;
    text-shadow: none;
    max-width: 16ch;
}

.hero--video .hero__title em {
    font-style: italic;
    font-weight: 400;
    color: #078586;
    position: relative;
    white-space: nowrap;
}

/* Butonlar → underline text-link stili (pill yok) */
.hero--video .hero__buttons {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 0;
    flex-wrap: wrap;
}

.hero--video .hero__btn {
    padding: 0 0 8px 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    border: none;
    border-bottom: 1px solid;
    font-family: 'Onest', system-ui, sans-serif;
    font-size: 1.02rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    transition: color .25s cubic-bezier(.4,0,.2,1),
                border-color .25s cubic-bezier(.4,0,.2,1),
                gap .25s cubic-bezier(.4,0,.2,1);
    color: #fff;
    gap: 14px;
}

.hero--video .hero__btn--primary {
    border-bottom-color: #fff;
}

.hero--video .hero__btn--primary:hover {
    transform: none;
    color: #078586;
    border-bottom-color: #078586;
    gap: 22px;
}

.hero--video .hero__btn--primary i {
    transition: transform .25s cubic-bezier(.4,0,.2,1);
}

.hero--video .hero__btn--primary:hover i {
    transform: translateX(6px);
}

.hero--video .hero__btn--link {
    color: rgba(255,255,255,0.7);
    border-bottom-color: rgba(255,255,255,0.2);
    font-weight: 500;
}

.hero--video .hero__btn--link:hover {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.6);
}

/* Daha sakin overlay */
.hero--video .hero__overlay {
    background:
        linear-gradient(180deg, rgba(15,23,42,0.35) 0%, rgba(29,43,85,0.75) 60%, rgba(29,43,85,0.9) 100%);
}

/* Mobile */
@media (max-width: 768px) {
    .hero--video .hero__title {
        font-size: clamp(2rem, 10vw, 3.1rem);
        margin-bottom: 40px;
    }
    .hero--video .hero__badge {
        font-size: 0.72rem;
        letter-spacing: 0.18em;
        margin-bottom: 24px;
    }
    .hero--video .hero__buttons {
        gap: 24px;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .hero--video .hero__btn {
        width: auto;
    }
}


/* ==========================================================================
   HEADER — transparent açılışta, scroll'da cam efektli solid
   Atazen tema JS'i body'ye scroll olunca .atazen-header'a `sticky` class
   ekler (header.php'ye `header--sticky` class eklendi).
   ========================================================================== */

/* Hero ile header'ı aynı anda görmek için: header fixed + transparent */
body.home .atazen-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    background: transparent !important;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transition: opacity .35s ease, transform .35s ease, background .35s ease, border-color .35s ease;
}

body.home .atazen-topbar,
body.home .atazen-topbar * {
    color: rgba(255,255,255,0.85) !important;
}

body.home .atazen-header {
    position: fixed;
    top: 46px;          /* topbar'ın altında başla */
    left: 0;
    right: 0;
    background: transparent !important;
    border-bottom: 1px solid transparent;
    box-shadow: none !important;
    z-index: 100;
    transition: top .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}

/* Header içindeki yazı/link'ler beyaz (hero koyu bg üstünde) */
body.home .atazen-header,
body.home .atazen-header a,
body.home .atazen-header .header-nav a,
body.home .atazen-header .header-nav li > a {
    color: #fff !important;
}

/* Scroll edildiğinde (tema JS `sticky` ekler): topbar gizlen, header koyu cam */
body.home .atazen-header.sticky {
    top: 0 !important;
    background: rgba(29, 43, 85, 0.88) !important;
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

/* Topbar scroll'da yukarı kayar (gizlenmiş gibi) */
body.home .atazen-header.sticky ~ .atazen-topbar,
body.home:has(.atazen-header.sticky) .atazen-topbar {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

/* Anasayfa body padding-top'a gerek yok — hero zaten 100vh, header onun üstüne biner. */
body.home { padding-top: 0 !important; }

/* Diğer sayfalarda (iç sayfa) header normal solid — transparent davranışı sadece anasayfa için */
body:not(.home) .atazen-header {
    background: #1d2b55;
    color: #fff;
}

/* Mobile — topbar zaten tema medya sorgularında gizleniyor; header fixed kalsın */
@media (max-width: 900px) {
    body.home .atazen-topbar { display: none; }
    body.home .atazen-header { top: 0; }
}

/* Admin bar offset */
body.admin-bar.home .atazen-topbar { top: 32px; }
body.admin-bar.home .atazen-header { top: 78px; }
body.admin-bar.home .atazen-header.sticky { top: 32px !important; }
@media (max-width: 782px) {
    body.admin-bar.home .atazen-header { top: 46px; }
    body.admin-bar.home .atazen-header.sticky { top: 46px !important; }
}

/* ==========================================================================
   HERO V2 — LUXURY SERIF + ASIMETRIK GRID
   Cormorant Garamond italic + Onest sans karışımı, 4-köşe kompozisyon.
   Dribbble "Timeless Luxury Interior Design" dili.
   ========================================================================== */

.hero.hero--v2 {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 760px;
    max-height: 1080px;
    overflow: hidden;
    background: #0d1a3a;
    isolation: isolate;
    display: block;
    padding: 0;
}

.hero--v2 .hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    filter: saturate(1.05);
}

/* Yumuşak cinema veil — köşelerde okunabilirlik için */
.hero--v2 .hero__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(13,26,58,0.55) 0%, rgba(13,26,58,0.25) 30%, rgba(13,26,58,0.75) 100%),
        radial-gradient(ellipse at 70% 70%, rgba(7,133,134,0.2), transparent 60%);
}

/* 4-köşe pozisyonlama — mutlak */
.hero--v2 .hero__corner {
    position: absolute;
    z-index: 2;
    color: #fff;
}

.hero--v2 .hero__corner--tl {
    top: clamp(120px, 14vh, 160px);
    left: clamp(24px, 5vw, 64px);
}
.hero--v2 .hero__corner--tr {
    top: clamp(120px, 14vh, 160px);
    right: clamp(24px, 5vw, 64px);
    text-align: right;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Onest', sans-serif;
}
.hero--v2 .hero__corner--bl {
    bottom: clamp(48px, 8vh, 96px);
    left: clamp(24px, 5vw, 64px);
    max-width: 920px;
}
.hero--v2 .hero__corner--br {
    bottom: clamp(48px, 8vh, 96px);
    right: clamp(24px, 5vw, 64px);
    max-width: 360px;
    text-align: right;
}

/* Eyebrow — minimal, tracking geniş */
.hero--v2 .hero__eyebrow {
    font-family: 'Onest', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
}

/* Ticker — sağ üst */
.hero--v2 .hero__ticker-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    line-height: 1;
}
.hero--v2 .hero__ticker-line {
    width: 48px;
    height: 1px;
    background: rgba(255,255,255,0.45);
    display: inline-block;
}
.hero--v2 .hero__ticker-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
}

/* TITLE — büyük, Cormorant italic accent */
.hero--v2 .hero__title {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: clamp(3rem, 9vw, 9rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
    text-shadow: 0 4px 32px rgba(0,0,0,0.35);
}
.hero--v2 .hero__title-line {
    display: block;
}
.hero--v2 .hero__title em {
    font-style: italic;
    font-weight: 400;
    color: #34c6c7;    /* daha parlak yeşil — karanlıkta okunur */
    letter-spacing: -0.015em;
}
.hero--v2 .hero__title em::before {
    content: "";
}

/* Caption — kısa, ince Onest */
.hero--v2 .hero__caption {
    font-family: 'Onest', sans-serif;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.82);
    margin: 0 0 22px;
    font-weight: 400;
}

/* CTA — tek, altı çizili text-link + ok */
.hero--v2 .hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Onest', sans-serif;
    font-size: 0.98rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    color: #fff;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    transition: gap .3s cubic-bezier(.4,0,.2,1),
                color .3s cubic-bezier(.4,0,.2,1),
                border-color .3s cubic-bezier(.4,0,.2,1);
}
.hero--v2 .hero__cta:hover {
    gap: 26px;
    color: #34c6c7;
    border-color: #34c6c7;
}
.hero--v2 .hero__cta svg {
    flex-shrink: 0;
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.hero--v2 .hero__cta:hover svg {
    transform: translateX(4px);
}

/* Scroll teller — alt-orta, dikey çizgi */
.hero--v2 .hero__scroll-teller {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.6);
    font-family: 'Onest', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: color .25s;
}
.hero--v2 .hero__scroll-teller:hover { color: #fff; }
.hero--v2 .hero__scroll-line {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    position: relative;
    overflow: hidden;
}
.hero--v2 .hero__scroll-line::after {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 1px;
    height: 40px;
    background: #fff;
    animation: sftScrollLine 2.4s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes sftScrollLine {
    0%   { transform: translateY(0);    opacity: 0; }
    30%  { opacity: 1; }
    100% { transform: translateY(80px); opacity: 0; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero--v2 .hero__corner--br {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero.hero--v2 {
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
    }
    .hero--v2 .hero__corner {
        position: static;
        text-align: left !important;
        max-width: none !important;
    }
    .hero--v2 .hero__corner--tl {
        padding: 110px 24px 0;
    }
    .hero--v2 .hero__corner--tr {
        display: none; /* mobilde ticker gizli, sadelik */
    }
    .hero--v2 .hero__corner--bl {
        padding: 28px 24px 0;
    }
    .hero--v2 .hero__corner--br {
        padding: 28px 24px 80px;
    }
    .hero--v2 .hero__title {
        font-size: clamp(3rem, 14vw, 5.25rem);
        line-height: 0.95;
    }
    .hero--v2 .hero__scroll-teller {
        display: none;
    }
    /* Tüm köşeler alt alta geldiği için dikey flex */
    .hero.hero--v2 {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
}

/* prefers-reduced-motion — video kapat, poster bg */
@media (prefers-reduced-motion: reduce) {
    .hero--v2 .hero__video { display: none; }
    .hero.hero--v2 {
        background-image: url('/wp-content/uploads/2023/01/netgaz-_-slider-01-2048x725.jpg');
        background-size: cover;
        background-position: center;
    }
    .hero--v2 .hero__scroll-line::after { animation: none; }
}

/* ==========================================================================
   HERO V3 — SADE, OKUNAKLI, OBVIOUS BUTONLAR
   Önceki luxury minimal denemelerini geçersiz kılar (daha yüksek specificity
   ile). Koyu overlay, büyük Onest bold başlık, dolu CTA.
   ========================================================================== */

body .hero.hero--v3 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #0d1a3a;
    isolation: isolate;
    padding: 140px 24px 100px;
}

body .hero--v3 .hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* KOYU overlay — yazılar net okunsun */
body .hero--v3 .hero__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(13,26,58,0.65) 0%, rgba(13,26,58,0.8) 100%),
        radial-gradient(ellipse at center, rgba(0,0,0,0.15), rgba(0,0,0,0.35));
}

body .hero--v3 .hero__content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    color: #fff;
}

/* Tag — pill etiket, net okunur */
body .hero--v3 .hero__tag {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(7, 133, 134, 0.22);
    border: 1px solid rgba(52, 198, 199, 0.5);
    border-radius: 999px;
    font-family: 'Onest', system-ui, sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #7cf0f1;
    margin-bottom: 28px;
    text-transform: none;
}

/* BÜYÜK Onest 800 başlık — hiç italic yok, serif yok */
body .hero--v3 .hero__title {
    font-family: 'Onest', system-ui, -apple-system, sans-serif !important;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 24px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
    font-style: normal;
}

body .hero--v3 .hero__title em,
body .hero--v3 .hero__title i {
    font-style: normal;
}

/* Lead paragraf — okunur size */
body .hero--v3 .hero__lead {
    font-family: 'Onest', system-ui, sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    margin: 0 auto 40px;
    max-width: 680px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* BUTONLAR — obvious, büyük, dolu ve outline */
body .hero--v3 .hero__actions {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

body .hero--v3 .hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 12px;
    font-family: 'Onest', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform .2s cubic-bezier(.4,0,.2,1),
                background-color .2s cubic-bezier(.4,0,.2,1),
                border-color .2s cubic-bezier(.4,0,.2,1),
                box-shadow .2s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
    white-space: nowrap;
}

body .hero--v3 .hero__btn i {
    font-size: 0.95rem;
}

/* Primary — dolu petrol yeşili, büyük gölge */
body .hero--v3 .hero__btn--solid {
    background: #078586;
    color: #fff !important;
    box-shadow: 0 10px 28px rgba(7, 133, 134, 0.45), 0 2px 4px rgba(0,0,0,0.2);
    border-color: #078586;
}
body .hero--v3 .hero__btn--solid:hover {
    background: #056869;
    border-color: #056869;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(7, 133, 134, 0.6), 0 4px 8px rgba(0,0,0,0.25);
    color: #fff !important;
}

/* Outline — beyaz ince çerçeve, hover'da dolu */
body .hero--v3 .hero__btn--outline {
    background: rgba(255,255,255,0.08);
    color: #fff !important;
    border-color: rgba(255,255,255,0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
body .hero--v3 .hero__btn--outline:hover {
    background: #fff;
    color: #0d1a3a !important;
    border-color: #fff;
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
    body .hero.hero--v3 {
        min-height: 90vh;
        padding: 110px 20px 80px;
    }
    body .hero--v3 .hero__title {
        font-size: clamp(2rem, 9vw, 2.75rem);
    }
    body .hero--v3 .hero__lead {
        font-size: 0.98rem;
    }
    body .hero--v3 .hero__actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    body .hero--v3 .hero__btn {
        width: 100%;
        padding: 16px 24px;
    }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    body .hero--v3 .hero__video { display: none; }
    body .hero.hero--v3 {
        background-image: url('/wp-content/uploads/2023/01/netgaz-_-slider-01-2048x725.jpg');
        background-size: cover;
        background-position: center;
    }
}

/* Eski V1/V2 kurallarını tamamen bastır (sayfada kalan artıklar olursa) */
body .hero--video, body .hero--v2 { display: none !important; }
