/*
Theme Name: Kitchen Hood Cleaning Dubai
Theme URI: https://www.kitchenhoodcleaning.ae/
Author: Kitchen Hood Cleaning Dubai
Author URI: https://www.kitchenhoodcleaning.ae/
Description: Premium WordPress theme for Kitchen Hood Cleaning Dubai - a commercial kitchen exhaust cleaning company. Dark luxury design with gold accents, fully responsive, SEO-optimized, schema-ready.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kitchen-hood
*/


/* === IMPORTED FROM css/styles.css === */

/* ============================================
   KITCHEN HOOD CLEANING - PREMIUM THEME
   Dark Luxury Design with Gold Accents
   ============================================ */

/* CSS Variables */
:root {
    --color-primary: #0a0e1a;
    --color-secondary: #111827;
    --color-accent: #f59e0b;
    --color-accent-hover: #d97706;
    --color-accent-glow: rgba(245, 158, 11, 0.3);
    --color-text: #e5e7eb;
    --color-text-muted: #9ca3af;
    --color-text-dark: #1f2937;
    --color-white: #ffffff;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-card: rgba(17, 24, 39, 0.8);
    --color-success: #10b981;
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e1a 0%, #111827 100%);
    --shadow-glow: 0 0 30px rgba(245, 158, 11, 0.2);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --container-width: 1280px;
    --section-padding: 100px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--color-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 16px;
    position: relative;
    padding-left: 20px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: var(--color-accent);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-white);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-text-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-glow {
    background: var(--gradient-gold);
    color: var(--color-text-dark);
    box-shadow: var(--shadow-glow);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(245, 158, 11, 0.05);
}

.btn-light {
    background: var(--color-white);
    color: var(--color-text-dark);
}

.btn-light:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-text-dark);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

/* Top Bar */
.top-bar {
    background: rgba(10, 14, 26, 0.95);
    border-bottom: 1px solid var(--color-border);
    padding: 10px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar-left a {
    color: var(--color-text-muted);
}

.top-bar-left a:hover {
    color: var(--color-accent);
}

.top-bar-left i,
.top-bar-right i {
    color: var(--color-accent);
    margin-right: 6px;
    font-size: 0.8rem;
}

.top-bar-right {
    display: flex;
    gap: 24px;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i {
    font-size: 2rem;
    color: var(--color-accent);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--color-white);
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--color-accent);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    border-radius: 6px;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-white);
    background: rgba(245, 158, 11, 0.1);
}

.nav-menu .btn-primary {
    padding: 12px 24px;
    margin-left: 8px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown > a i {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: var(--transition);
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--color-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 10px;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-accent);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 40%),
        var(--color-primary);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f59e0b' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 6px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--color-text-muted);
    font-size: 1.2rem;
}

.hero-scroll a:hover {
    color: var(--color-accent);
}

/* Trusted Section */
.trusted-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
    background: rgba(17, 24, 39, 0.5);
}

.trusted-label {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trusted-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.trusted-logo i {
    color: var(--color-accent);
    font-size: 1.2rem;
}

/* Services Section */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: var(--shadow-card);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    border-color: rgba(245, 158, 11, 0.3);
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.05) 0%, var(--color-card) 100%);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--color-text);
}

.service-features i {
    color: var(--color-success);
    font-size: 0.8rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-accent);
}

.service-link:hover {
    gap: 14px;
}

.service-link i {
    transition: var(--transition);
}

/* Why Section */
.why-section {
    padding: var(--section-padding) 0;
    background: var(--color-primary);
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-content .section-title {
    margin-bottom: 20px;
}

.why-content .section-desc {
    margin-bottom: 40px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: 1.3rem;
    color: var(--color-accent);
}

.why-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 6px;
}

.why-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.why-visual {
    position: relative;
}

.why-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-image-main {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.1), rgba(17, 24, 39, 0.8));
    border: 1px solid var(--color-border);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.why-image-main i {
    font-size: 6rem;
    color: rgba(245, 158, 11, 0.3);
}

.why-image-main span {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.why-badge {
    position: absolute;
    background: var(--color-secondary);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-card);
}

.why-badge i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.why-badge strong {
    display: block;
    font-size: 1.2rem;
    color: var(--color-white);
    line-height: 1;
}

.why-badge span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.why-badge.floating {
    animation: float 3s ease-in-out infinite;
}

.why-badge:nth-of-type(2) {
    top: 20px;
    right: 0;
}

.why-badge:nth-of-type(3) {
    bottom: 40px;
    left: -20px;
}

/* Process Section */
.process-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--color-primary) 0%, rgba(17, 24, 39, 0.5) 100%);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
    padding: 40px 24px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.2);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--color-text-dark);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 100px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 1.6rem;
    color: var(--color-accent);
}

.process-step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.process-arrow {
    display: flex;
    align-items: center;
    padding-top: 40px;
    color: var(--color-accent);
    font-size: 1.5rem;
    opacity: 0.5;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #111827 0%, #0a0e1a 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23f59e0b' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.cta-trust i {
    color: var(--color-accent);
}

/* Testimonials */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--color-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 36px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.15);
}

.testimonial-stars {
    color: var(--color-accent);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 600;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Areas Section */
.areas-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-primary), rgba(17, 24, 39, 0.5));
    border-top: 1px solid var(--color-border);
}

.areas-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition);
}

.area-item:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.area-item i {
    color: var(--color-accent);
}

/* Footer */
.footer {
    background: #070a14;
    border-top: 1px solid var(--color-border);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--color-accent);
}

.footer-logo-main {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-white);
}

.footer-logo-sub {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: var(--color-accent);
    text-transform: uppercase;
}

.footer-about p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-accent);
    color: var(--color-text-dark);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--color-accent);
    padding-left: 6px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.footer-contact i {
    color: var(--color-accent);
    width: 16px;
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* Mobile Call Button */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--gradient-gold);
    color: var(--color-text-dark);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-glow);
    z-index: 999;
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-visual {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        padding: 0;
    }
    
    .process-step {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }
    
    .top-bar-left,
    .top-bar-right .social-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-secondary);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 24px 24px;
        transition: var(--transition);
        border-left: 1px solid var(--color-border);
        gap: 4px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        padding: 14px 18px;
        border-radius: 8px;
    }
    
    .nav-menu .btn-primary {
        margin: 10px 0 0;
        justify-content: center;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, 0.2);
        margin-top: 4px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-item {
        min-width: calc(50% - 12px);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mobile-call-btn {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        justify-content: center;
    }
    
    .why-badge:nth-of-type(2) {
        right: -10px;
    }
    
    .why-badge:nth-of-type(3) {
        left: -10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .trusted-logos {
        gap: 24px;
    }
    
    .area-item {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.page-header {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
        var(--color-primary);
    border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--color-white);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.breadcrumb a:hover {
    color: var(--color-accent);
}

.breadcrumb .sep {
    color: var(--color-text-muted);
}

/* About Story */
.about-story {
    padding: var(--section-padding) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-box {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.1), rgba(17, 24, 39, 0.9));
    border: 1px solid var(--color-border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.about-image-box i {
    font-size: 5rem;
    color: rgba(245, 158, 11, 0.3);
}

.about-image-box span {
    color: var(--color-text-muted);
    font-weight: 500;
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-secondary);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: var(--shadow-card);
}

.about-image-badge strong {
    display: block;
    font-size: 2.5rem;
    color: var(--color-accent);
    line-height: 1;
}

.about-image-badge span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--color-white);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-value i {
    font-size: 1.3rem;
    color: var(--color-accent);
    margin-top: 2px;
}

.about-value h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.about-value p {
    font-size: 0.9rem;
    margin: 0;
}

/* Stats Bar */
.stats-bar {
    padding: 60px 0;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.05), rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stats-bar-item strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stats-bar-item span {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Team / Certifications */
.cert-section {
    padding: var(--section-padding) 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.cert-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.2);
}

.cert-card i {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.cert-card h3 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cert-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

.services-detail {
    padding: var(--section-padding) 0;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--color-border);
}

.service-detail-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-detail-card:nth-child(even) .service-detail-visual {
    order: 2;
}

.service-detail-visual {
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.08), rgba(17, 24, 39, 0.9));
    border: 1px solid var(--color-border);
    border-radius: 20px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.service-detail-visual i {
    font-size: 5rem;
    color: rgba(245, 158, 11, 0.35);
}

.service-detail-visual span {
    color: var(--color-text-muted);
    font-weight: 500;
}

.service-detail-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 16px;
}

.service-detail-content > p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-detail-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-text);
}

.service-detail-list i {
    color: var(--color-success);
    font-size: 0.85rem;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-section {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-detail-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-icon i {
    font-size: 1.2rem;
    color: var(--color-accent);
}

.contact-detail-text h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-detail-text p,
.contact-detail-text a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.contact-detail-text a:hover {
    color: var(--color-accent);
}

.contact-hours {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px;
}

.contact-hours h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-hours h4 i {
    color: var(--color-accent);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    color: var(--color-text-muted);
}

.hours-row span:last-child {
    color: var(--color-white);
    font-weight: 500;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px;
}

.contact-form-wrapper h3 {
    color: var(--color-white);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-group label span {
    color: var(--color-accent);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(245, 158, 11, 0.03);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-control::placeholder {
    color: var(--color-text-muted);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

select.form-control option {
    background: var(--color-secondary);
    color: var(--color-text);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    justify-content: center;
    margin-top: 8px;
}

/* Map Section */
.map-section {
    padding-bottom: var(--section-padding);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.map-placeholder i {
    font-size: 3rem;
    color: rgba(245, 158, 11, 0.3);
}

.map-placeholder span {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.map-placeholder a {
    color: var(--color-accent);
    font-weight: 600;
}

/* Blog Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

thead tr {
    background: rgba(245, 158, 11, 0.1);
}

th, td {
    padding: 14px 16px;
    text-align: left;
    border: 1px solid var(--color-border);
}

th {
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9rem;
}

tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

tbody tr:hover {
    background: rgba(245, 158, 11, 0.03);
}

/* Responsive for inner pages */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
    }
    
    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-card:nth-child(even) .service-detail-visual {
        order: 0;
    }
    
    .service-detail-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 60px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .stats-bar-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .stats-bar-item strong {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-image-badge {
        right: 10px;
        bottom: -10px;
        padding: 16px 20px;
    }
    
    .about-image-badge strong {
        font-size: 2rem;
    }
}


/* ============================================
   PREMIUM ANIMATIONS & POPUP
   ============================================ */

/* Smooth Entrance Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.2); }
    50% { box-shadow: 0 0 40px rgba(245, 158, 11, 0.4); }
}
@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered reveal classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children animations */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-children.active > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }

/* Premium hover effects */
.service-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.01);
}

.testimonial-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-6px);
}

.process-step {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cert-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.cert-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.area-item {
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.area-item:hover {
    transform: translateY(-3px) scale(1.03);
}

/* Smooth parallax for hero */
.hero-bg {
    will-change: transform;
}

/* Premium button animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}
.btn:active::after {
    width: 300px;
    height: 300px;
}
.btn:hover {
    transform: translateY(-3px);
}

.btn-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Shimmer effect for featured elements */
.shimmer {
    background: linear-gradient(90deg, transparent, rgba(245,158,11,0.08), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

/* Navbar scroll animation */
.navbar {
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

/* Hero content entrance */
.hero-badge {
    animation: slideInDown 0.8s ease 0.2s both;
}
.hero-title {
    animation: fadeInUp 0.9s ease 0.3s both;
}
.hero-subtitle {
    animation: fadeInUp 0.9s ease 0.5s both;
}
.hero-buttons {
    animation: fadeInUp 0.9s ease 0.7s both;
}
.hero-stats {
    animation: fadeInUp 0.9s ease 0.9s both;
}

/* Floating elements */
.floating {
    animation: floatY 4s ease-in-out infinite;
}
.floating-delay-1 { animation-delay: 0.5s; }
.floating-delay-2 { animation-delay: 1s; }
.floating-delay-3 { animation-delay: 1.5s; }

/* Image hover zoom */
.img-hover-zoom {
    overflow: hidden;
    border-radius: 16px;
}
.img-hover-zoom img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-hover-zoom:hover img {
    transform: scale(1.08);
}

/* ============================================
   POPUP MODAL - IRRESISTIBLE OFFER
   ============================================ */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-modal {
    background: linear-gradient(145deg, #111827 0%, #0a0e1a 100%);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 24px;
    padding: 0;
    max-width: 520px;
    width: 90%;
    position: relative;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 60px rgba(245, 158, 11, 0.15), 0 25px 50px rgba(0,0,0,0.5);
}
.popup-overlay.active .popup-modal {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 10;
}
.popup-close:hover {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-accent);
    transform: rotate(90deg);
}

.popup-header {
    background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(245,158,11,0.03));
    padding: 40px 36px 30px;
    text-align: center;
    position: relative;
}
.popup-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    animation: pulseGlow 2s ease-in-out infinite;
}

.popup-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.popup-subtitle {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.popup-body {
    padding: 32px 36px;
}

.popup-offer-price {
    text-align: center;
    margin-bottom: 28px;
}
.popup-offer-price .was {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-right: 12px;
}
.popup-offer-price .now {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}
.popup-offer-price .now span {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 400;
    display: block;
    margin-top: 6px;
}

.popup-features {
    margin-bottom: 28px;
}
.popup-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
}
.popup-features li:last-child {
    border-bottom: none;
}
.popup-features i {
    color: var(--color-success);
    font-size: 1rem;
}

.popup-countdown {
    text-align: center;
    margin-bottom: 24px;
}
.popup-countdown-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.popup-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.popup-countdown-timer .time-box {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 10px;
    padding: 10px 14px;
    min-width: 56px;
}
.popup-countdown-timer .time-box .num {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}
.popup-countdown-timer .time-box .label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-top: 4px;
}

.popup-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.popup-cta .btn {
    justify-content: center;
    width: 100%;
    padding: 18px;
    font-size: 1.05rem;
}
.popup-cta .btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
}
.popup-cta .btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}
.popup-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}
.popup-trust i {
    color: var(--color-accent);
    margin-right: 4px;
}

/* Exit intent trigger area */
.exit-trigger {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    z-index: 9998;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1;
        transform: none;
    }
}

/* Popup responsive */
@media (max-width: 480px) {
    .popup-modal {
        width: 95%;
        border-radius: 20px;
    }
    .popup-header {
        padding: 32px 24px 24px;
    }
    .popup-body {
        padding: 24px;
    }
    .popup-title {
        font-size: 1.5rem;
    }
    .popup-offer-price .now {
        font-size: 2.4rem;
    }
}
