/*
Theme Name: GreenWatt V2
Theme URI: https://greenwatt.io/
Author: Antigravity
Description: Premium, responsive, tamamen yönetilebilir GreenWatt EV şarj istasyonu teması V2. Dark/Light mod, Swiper slider, Customizer destekli.
Version: 2.0.0
Text Domain: greenwatt-v2
*/

/* ============================
   1. CSS CUSTOM PROPERTIES
   ============================ */
:root {
    /* Primary Colors */
    --gw-primary: #0D9B4F;
    --gw-primary-hover: #0A7B3E;
    --gw-primary-dark: #065A2C;
    --gw-primary-light: #E8F5EE;
    --gw-accent: #E8B31A;
    --gw-accent-hover: #D4A017;

    /* Background */
    --gw-bg-body: #ffffff;
    --gw-bg-surface: #F7FAF8;
    --gw-bg-card: #ffffff;
    --gw-bg-dark: #0B1D0F;
    --gw-bg-dark-surface: #1A2E1E;

    /* Text */
    --gw-text-main: #1A1A2E;
    --gw-text-muted: #6B7280;
    --gw-text-light: #9CA3AF;
    --gw-text-white: #FFFFFF;

    /* Borders & Shadows */
    --gw-border: #E5E7EB;
    --gw-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --gw-shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --gw-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --gw-shadow-glow: 0 0 40px rgba(13, 155, 79, 0.15);

    /* Typography */
    --gw-font-heading: 'Poppins', sans-serif;
    --gw-font-body: 'Inter', sans-serif;

    /* Spacing */
    --gw-section-padding: 100px;
    --gw-container-max: 1320px;

    /* Transitions */
    --gw-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --gw-transition-fast: all 0.2s ease;
}

/* ============================
   2. RESET & BASE
   ============================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--gw-bg-body);
    color: var(--gw-text-main);
    font-family: var(--gw-font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--gw-font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--gw-text-main);
}

a {
    text-decoration: none;
    color: var(--gw-primary);
    transition: var(--gw-transition-fast);
}

a:hover {
    color: var(--gw-primary-hover);
}

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

ul, ol {
    list-style: none;
}

/* ============================
   3. LAYOUT UTILITIES
   ============================ */
.container {
    width: 92%;
    max-width: var(--gw-container-max);
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: var(--gw-section-padding) 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

/* ============================
   4. BUTTONS
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 35px;
    border-radius: 50px;
    font-family: var(--gw-font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--gw-transition);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gw-primary), var(--gw-primary-hover));
    color: #fff;
    box-shadow: 0 4px 15px rgba(13, 155, 79, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 155, 79, 0.4);
    color: #fff;
}

.btn-outline {
    border-color: var(--gw-primary);
    color: var(--gw-primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gw-primary);
    color: #fff;
    transform: translateY(-3px);
}

.btn-white {
    background: #fff;
    color: var(--gw-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    color: var(--gw-primary-hover);
}

.btn-accent {
    background: linear-gradient(135deg, var(--gw-accent), var(--gw-accent-hover));
    color: var(--gw-bg-dark);
    font-weight: 700;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 179, 26, 0.4);
    color: var(--gw-bg-dark);
}

/* ============================
   5. TOP BAR
   ============================ */
.top-bar {
    background: linear-gradient(90deg, var(--gw-bg-dark) 0%, var(--gw-bg-dark-surface) 100%);
    color: var(--gw-text-white);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--gw-primary);
    animation: pulse-icon 2s infinite;
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: var(--gw-transition-fast);
}

.top-bar-right a:hover {
    color: var(--gw-primary);
    transform: translateY(-2px);
}

@keyframes pulse-icon {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================
   6. HEADER
   ============================ */
.site-header {
    background: var(--gw-bg-body);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--gw-transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.header-logo svg {
    max-width: 100%;
    height: auto;
}

.header-logo img {
    max-height: 60px;
    width: auto;
}

.header-logo .logo-text {
    font-family: var(--gw-font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gw-text-main);
}

.header-logo .logo-text span {
    color: var(--gw-primary);
}

.header-contact-info {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-contact-item .icon-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--gw-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gw-primary);
    font-size: 1.1rem;
    transition: var(--gw-transition);
}

.header-contact-item:hover .icon-box {
    background: var(--gw-primary);
    color: #fff;
    transform: scale(1.1);
}

.header-contact-item .info-text label {
    display: block;
    font-size: 0.75rem;
    color: var(--gw-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.header-contact-item .info-text span,
.header-contact-item .info-text a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gw-text-main);
}

/* Navigation Bar */
.nav-bar {
    background: linear-gradient(135deg, var(--gw-primary), var(--gw-primary-dark));
    position: relative;
    z-index: 999;
}

.nav-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 16px 18px;
    color: rgba(255,255,255,0.92);
    font-family: var(--gw-font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: var(--gw-transition-fast);
    position: relative;
    white-space: nowrap;
}

.nav-links li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gw-accent);
    transition: var(--gw-transition);
    border-radius: 2px;
}

.nav-links li > a:hover,
.nav-links li.active > a {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.nav-links li > a:hover::after,
.nav-links li.active > a::after {
    width: 60%;
}

/* Dropdown */
.nav-links .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--gw-bg-card);
    border-radius: 0 0 12px 12px;
    box-shadow: var(--gw-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--gw-transition);
    z-index: 1001;
    border-top: 3px solid var(--gw-primary);
}

.nav-links li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links .sub-menu li a {
    display: block;
    padding: 12px 25px;
    color: var(--gw-text-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid var(--gw-border);
}

.nav-links .sub-menu li a::after {
    display: none;
}

.nav-links .sub-menu li:last-child a {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.nav-links .sub-menu li a:hover {
    background: var(--gw-primary-light);
    color: var(--gw-primary);
    padding-left: 30px;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 16px 20px;
}

/* ============================
   7. HERO SLIDER
   ============================ */
.hero-slider {
    width: 100%;
    height: 650px;
    position: relative;
    overflow: hidden;
}

.hero-slider .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,29,15,0.75) 0%, rgba(13,155,79,0.3) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
}

.slide-content .slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 155, 79, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 155, 79, 0.4);
    color: var(--gw-accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    width: fit-content;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slide-content h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    max-width: 700px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    max-width: 550px;
    line-height: 1.7;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Swiper Custom Styles */
.hero-slider .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    transition: var(--gw-transition);
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--gw-primary);
    width: 35px;
    border-radius: 6px;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: #fff;
    background: rgba(13,155,79,0.3);
    backdrop-filter: blur(5px);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    transition: var(--gw-transition);
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--gw-primary);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* ============================
   8. SECTION HEADERS
   ============================ */
.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gw-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-tag::before {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--gw-primary);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2 strong {
    color: var(--gw-primary);
}

.section-header p {
    color: var(--gw-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.7;
}

.section-header.centered p {
    margin: 0 auto;
}

/* ============================
   9. KURUMSAL (ABOUT) SECTION
   ============================ */
.about-section {
    background: var(--gw-bg-body);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--gw-shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gw-primary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.about-image .experience-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: linear-gradient(135deg, var(--gw-primary), var(--gw-primary-dark));
    color: #fff;
    padding: 25px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--gw-shadow-lg);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--gw-font-heading);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 5px;
}

.about-content .check-list {
    margin: 25px 0;
}

.about-content .check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-weight: 500;
    color: var(--gw-text-main);
}

.about-content .check-list li i {
    color: var(--gw-primary);
    font-size: 1.1rem;
    width: 28px;
    height: 28px;
    background: var(--gw-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.about-content .lead-text {
    font-size: 1.05rem;
    color: var(--gw-text-muted);
    line-height: 1.8;
    margin-bottom: 10px;
}

/* ============================
   10. STATISTICS BAR
   ============================ */
.stats-section {
    background: linear-gradient(135deg, var(--gw-primary-dark) 0%, var(--gw-bg-dark) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13,155,79,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: #fff;
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}

.stat-item:last-child::after {
    display: none;
}

.stat-item .stat-icon {
    font-size: 2.2rem;
    color: var(--gw-accent);
    margin-bottom: 15px;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--gw-font-heading);
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, var(--gw-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ============================
   11. PRODUCTS SECTION
   ============================ */
.products-section {
    background: var(--gw-bg-surface);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.product-card {
    background: var(--gw-bg-card);
    border-radius: 24px;
    padding: 50px 40px;
    display: flex;
    gap: 35px;
    align-items: center;
    transition: var(--gw-transition);
    border: 1px solid var(--gw-border);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, var(--gw-primary), var(--gw-accent));
    transition: height 0.5s ease;
    border-radius: 0 5px 5px 0;
}

.product-card:hover::before {
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--gw-shadow-lg);
    border-color: var(--gw-primary);
}

.product-card .product-image {
    flex-shrink: 0;
    width: 200px;
}

.product-card .product-image img {
    max-height: 280px;
    object-fit: contain;
    transition: var(--gw-transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card .product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--gw-primary-dark);
}

.product-card .product-specs {
    font-weight: 600;
    color: var(--gw-text-main);
    margin-bottom: 15px;
    line-height: 1.8;
}

.product-card .product-desc {
    color: var(--gw-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.product-card .product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gw-primary), var(--gw-primary-dark));
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.products-description {
    margin-top: 50px;
    background: var(--gw-bg-card);
    border-radius: 20px;
    padding: 40px 50px;
    border: 1px solid var(--gw-border);
}

.products-description h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--gw-primary-dark);
}

.products-description p {
    color: var(--gw-text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ============================
   12. SERVICES / HIZMET ALANLARI
   ============================ */
.service-block {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.service-block:nth-child(even) {
    background: var(--gw-bg-surface);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-block:nth-child(even) .service-grid {
    direction: rtl;
}

.service-block:nth-child(even) .service-grid > * {
    direction: ltr;
}

.service-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: var(--gw-transition);
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-image .service-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--gw-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: var(--gw-font-heading);
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-content h3 strong {
    color: var(--gw-primary);
}

.service-content .service-desc {
    color: var(--gw-text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-content .service-features {
    margin: 25px 0;
}

.service-content .service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: var(--gw-text-main);
}

.service-content .service-features li i {
    color: var(--gw-primary);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ============================
   13. PARTNERSHIP / İŞ ORTAKLIĞI
   ============================ */
.partnership-section {
    background: linear-gradient(135deg, var(--gw-bg-dark) 0%, var(--gw-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.partnership-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13,155,79,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.partnership-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232,179,26,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.partnership-content {
    color: #fff;
}

.partnership-content .section-tag {
    color: var(--gw-accent);
}

.partnership-content .section-tag::before {
    background: var(--gw-accent);
}

.partnership-content h2 {
    color: #fff;
    font-size: 2.5rem;
}

.partnership-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.partnership-content .partnership-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.partnership-content .partnership-benefits li i {
    color: var(--gw-accent);
    font-size: 1rem;
}

.partnership-form {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 45px;
}

.partnership-form h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.partnership-form .form-group {
    margin-bottom: 18px;
}

.partnership-form input,
.partnership-form textarea,
.partnership-form select {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    color: #fff;
    font-family: var(--gw-font-body);
    font-size: 0.95rem;
    transition: var(--gw-transition);
    outline: none;
}

.partnership-form input::placeholder,
.partnership-form textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.partnership-form input:focus,
.partnership-form textarea:focus {
    border-color: var(--gw-primary);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(13,155,79,0.2);
}

.partnership-form textarea {
    min-height: 120px;
    resize: vertical;
}

.partnership-form .btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

/* ============================
   14. FOOTER
   ============================ */
.site-footer {
    background: var(--gw-bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gw-primary), var(--gw-accent), var(--gw-primary));
}

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

.footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gw-primary);
    border-radius: 2px;
}

.footer-about p {
    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.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--gw-transition);
    font-size: 1rem;
}

.footer-social a:hover {
    background: var(--gw-primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: var(--gw-transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a::before {
    content: '›';
    color: var(--gw-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-links li a:hover {
    color: var(--gw-primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--gw-primary);
    margin-top: 4px;
    width: 20px;
    flex-shrink: 0;
}

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

.footer-bottom a {
    color: var(--gw-primary);
}

/* ============================
   15. SCROLL TO TOP
   ============================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gw-primary), var(--gw-primary-dark));
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--gw-transition);
    box-shadow: 0 5px 20px rgba(13,155,79,0.3);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(13,155,79,0.5);
}

/* ============================
   16. ANIMATIONS & SAFE FALLBACKS
   ============================ */
/* Default visible to prevent white/blank pages if JS fails */
.fade-up,
.fade-left,
.fade-right,
.scale-in {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Progressive enhancement: Animate only when JS is active */
body.loaded .fade-up:not(.visible) {
    opacity: 0;
    transform: translateY(40px);
}

body.loaded .fade-left:not(.visible) {
    opacity: 0;
    transform: translateX(-40px);
}

body.loaded .fade-right:not(.visible) {
    opacity: 0;
    transform: translateX(40px);
}

body.loaded .scale-in:not(.visible) {
    opacity: 0;
    transform: scale(0.9);
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
    opacity: 1 !important;
    transform: none !important;
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================
   17. MAP SECTION
   ============================ */
.map-section {
    width: 100%;
    height: 400px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%);
    transition: var(--gw-transition);
}

.map-section:hover iframe {
    filter: grayscale(0%);
}

/* ============================
   18. PAGE TEMPLATES
   ============================ */
.page-hero {
    background: linear-gradient(135deg, var(--gw-bg-dark), var(--gw-primary-dark));
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13,155,79,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero h1 {
    font-size: 3rem;
    color: #fff;
    position: relative;
    z-index: 2;
}

.page-hero .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    position: relative;
    z-index: 2;
}

.page-hero .breadcrumb a {
    color: var(--gw-accent);
}

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

.page-content p {
    color: var(--gw-text-muted);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* ============================
   19. CONTACT FORM (Page)
   ============================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-card {
    background: var(--gw-bg-surface);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: var(--gw-transition);
    border: 1px solid var(--gw-border);
    margin-bottom: 20px;
}

.contact-info-card:hover {
    border-color: var(--gw-primary);
    box-shadow: var(--gw-shadow-md);
    transform: translateX(5px);
}

.contact-info-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gw-primary), var(--gw-primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-form-wrapper {
    background: var(--gw-bg-card);
    border: 1px solid var(--gw-border);
    border-radius: 24px;
    padding: 40px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--gw-border);
    border-radius: 12px;
    font-family: var(--gw-font-body);
    font-size: 0.95rem;
    margin-bottom: 15px;
    transition: var(--gw-transition);
    background: var(--gw-bg-surface);
    color: var(--gw-text-main);
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    border-color: var(--gw-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(13,155,79,0.1);
}

/* ============================
   20. RESPONSIVE
   ============================ */
@media (max-width: 1200px) {
    .hero-slider {
        height: 550px;
    }
    .slide-content h2 {
        font-size: 2.8rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    :root {
        --gw-section-padding: 70px;
    }

    .hero-slider {
        height: 500px;
    }

    .slide-content h2 {
        font-size: 2.2rem;
    }

    .header-contact-info {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--gw-primary-dark);
        flex-direction: column;
        box-shadow: var(--gw-shadow-lg);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li > a {
        padding: 14px 25px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background: rgba(0,0,0,0.2);
        border-top: none;
    }

    .nav-links .sub-menu li a {
        color: rgba(255,255,255,0.8);
        padding-left: 40px;
        border-bottom-color: rgba(255,255,255,0.05);
    }

    .nav-links .sub-menu li a:hover {
        background: rgba(255,255,255,0.1);
        color: #fff;
    }

    .about-grid,
    .service-grid,
    .partnership-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-block:nth-child(even) .service-grid {
        direction: ltr;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    :root {
        --gw-section-padding: 50px;
    }

    .hero-slider {
        height: 450px;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .top-bar {
        display: none;
    }

    .product-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .product-card .product-image {
        width: 150px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .stat-item .stat-number {
        font-size: 2.2rem;
    }

    .stat-item::after {
        display: none;
    }

    .partnership-form {
        padding: 30px 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-image::before {
        display: none;
    }

    .about-image .experience-badge {
        bottom: -15px;
        right: 10px;
        padding: 15px 20px;
    }

    .experience-badge .number {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .container {
        width: 95%;
    }

    .header-main {
        padding: 10px 0;
    }

    .header-logo img {
        max-height: 45px;
    }
}

/* ============================
   21. WORDPRESS OVERRIDES
   ============================ */
.wp-block-image img {
    border-radius: 12px;
}

.entry-content h2 {
    margin-top: 40px;
}

/* Contact Form 7 Override */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--gw-border);
    border-radius: 12px;
    font-family: var(--gw-font-body);
    font-size: 0.95rem;
    margin-bottom: 10px;
    transition: var(--gw-transition);
    background: var(--gw-bg-surface);
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: var(--gw-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(13,155,79,0.1);
}

.wpcf7 input[type="submit"] {
    background: linear-gradient(135deg, var(--gw-primary), var(--gw-primary-hover));
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-family: var(--gw-font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--gw-transition);
}

.wpcf7 input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13,155,79,0.4);
}

/* ============================
   22. APP DOWNLOAD BUTTONS & MODAL STYLES
   ============================ */
.top-bar-app-link {
    color: #4ADE80 !important;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(74, 222, 128, 0.12);
    padding: 3px 12px;
    border-radius: 20px;
    border: 1px solid rgba(74, 222, 128, 0.3);
    transition: var(--gw-transition);
}

.top-bar-app-link:hover {
    background: rgba(74, 222, 128, 0.25);
    color: #ffffff !important;
    transform: translateY(-1px);
}

.top-bar-sep {
    color: rgba(255, 255, 255, 0.3);
}

.header-action-btn {
    margin-left: 20px;
}

.btn-app-pulse {
    background: linear-gradient(135deg, #0D9B4F, #065A2C);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(13, 155, 79, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--gw-transition);
    animation: appBtnGlow 2.5s infinite;
}

.btn-app-pulse:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 28px rgba(13, 155, 79, 0.55);
}

@keyframes appBtnGlow {
    0%, 100% { box-shadow: 0 4px 18px rgba(13, 155, 79, 0.35); }
    50% { box-shadow: 0 4px 28px rgba(13, 155, 79, 0.65), 0 0 0 6px rgba(13, 155, 79, 0.15); }
}

.nav-right-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-nav-app {
    background: linear-gradient(135deg, #0D9B4F, #0A7B3E);
    color: #ffffff !important;
    font-family: var(--gw-font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 12px rgba(13, 155, 79, 0.3);
    transition: var(--gw-transition);
}

.btn-nav-app:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 155, 79, 0.45);
}

.footer-app-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 9px 16px;
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--gw-transition);
}

.footer-app-btn:hover {
    background: rgba(13, 155, 79, 0.25);
    border-color: #0D9B4F;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Modal Overlay */
.app-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-modal.active {
    opacity: 1;
    visibility: visible;
}

.app-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 14, 0.82);
    backdrop-filter: blur(8px);
}

.app-modal-dialog {
    position: relative;
    z-index: 2;
    background: #ffffff;
    width: 90%;
    max-width: 540px;
    border-radius: 28px;
    padding: 40px 35px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    transform: translateY(30px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.app-modal.active .app-modal-dialog {
    transform: translateY(0) scale(1);
}

.app-modal-close {
    position: absolute;
    top: 20px;
    right: 22px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gw-bg-surface);
    border: 1px solid var(--gw-border);
    font-size: 1.5rem;
    color: var(--gw-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--gw-transition);
}

.app-modal-close:hover {
    background: #EF4444;
    color: #ffffff;
    border-color: #EF4444;
}

.app-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.app-modal-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0D9B4F, #065A2C);
    color: #ffffff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 24px rgba(13, 155, 79, 0.35);
}

.app-modal-header h3 {
    font-size: 1.45rem;
    color: var(--gw-text-main);
    margin-bottom: 8px;
}

.app-modal-header p {
    font-size: 0.92rem;
    color: var(--gw-text-muted);
    line-height: 1.5;
}

.app-download-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 25px;
}

.app-store-card {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 16px;
    background: var(--gw-bg-surface);
    border: 2px solid var(--gw-border);
    transition: var(--gw-transition);
    text-decoration: none !important;
}

.app-store-card i.fab {
    font-size: 2.2rem;
    margin-right: 16px;
}

.app-store-card.apple i.fab { color: #1A1A2E; }
.app-store-card.google i.fab { color: #0D9B4F; }

.app-store-card .card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.app-store-card .card-text .sub {
    font-size: 0.78rem;
    text-transform: uppercase;
    color: var(--gw-text-muted);
    letter-spacing: 0.5px;
}

.app-store-card .card-text .main {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gw-text-main);
}

.app-store-card i.arrow {
    font-size: 1rem;
    color: var(--gw-text-muted);
    transition: transform 0.2s ease;
}

.app-store-card:hover {
    border-color: #0D9B4F;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 155, 79, 0.15);
}

.app-store-card:hover i.arrow {
    transform: translateX(4px);
    color: #0D9B4F;
}

.app-qr-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #F0FDF4, #E8F5EE);
    border: 1px dashed rgba(13, 155, 79, 0.4);
    padding: 16px 20px;
    border-radius: 16px;
}

.qr-code-placeholder {
    width: 48px;
    height: 48px;
    background: #0D9B4F;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qr-text strong {
    display: block;
    font-size: 0.9rem;
    color: #065A2C;
}

.qr-text span {
    font-size: 0.8rem;
    color: #0D9B4F;
}

@media (max-width: 991px) {
    .header-action-btn { display: none; }
    .btn-nav-app { display: inline-flex; }
}

@media (max-width: 576px) {
    .btn-nav-app { padding: 8px 14px; font-size: 0.78rem; }
    .app-modal-dialog { padding: 30px 20px; }
}

