/* ============================================
   ProPlumb - Premium Plumbing Website
   Redesigned CSS - Modern & Beautiful
   ============================================ */

/* ===== IMPORTS & VARIABLES ===== */
:root {
    /* Primary Colors */
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    
    /* Secondary Colors */
    --secondary: #06b6d4;
    --accent: #f59e0b;
    --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    
    /* Neutrals */
    --dark: #0f172a;
    --dark-2: #1e293b;
    --dark-3: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --gray-lighter: #e2e8f0;
    --gray-lightest: #f1f5f9;
    --white: #ffffff;
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== CURSOR EFFECT ===== */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: all 0.15s ease-out;
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .cursor-dot, .cursor-outline { display: none; }
}

/* ===== TEXT UTILITIES ===== */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SECTION STYLES ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.label-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
}

.section-header.center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.btn-primary .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border-color: var(--gray-lighter);
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.water-animation {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.drop {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-gradient);
    border-radius: 50% 50% 50% 0;
    transform: translateX(-50%) rotate(-45deg);
    animation: dropFall 1s ease-in-out infinite;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: waveSpread 1s ease-in-out infinite;
}

@keyframes dropFall {
    0% { top: 0; opacity: 1; }
    80% { top: 50px; opacity: 1; }
    100% { top: 60px; opacity: 0; }
}

@keyframes waveSpread {
    0%, 50% { opacity: 0; transform: translateX(-50%) scale(0.5); }
    70% { opacity: 0.5; }
    100% { opacity: 0; transform: translateX(-50%) scale(1.5); }
}

.loader-text {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.loader-text span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    animation: letterPop 1.5s ease-in-out infinite;
}

.loader-text span:nth-child(1) { animation-delay: 0.1s; }
.loader-text span:nth-child(2) { animation-delay: 0.2s; }
.loader-text span:nth-child(3) { animation-delay: 0.3s; }
.loader-text span:nth-child(4) { animation-delay: 0.4s; color: var(--primary-light); }
.loader-text span:nth-child(5) { animation-delay: 0.5s; color: var(--primary-light); }
.loader-text span:nth-child(6) { animation-delay: 0.6s; color: var(--primary-light); }
.loader-text span:nth-child(7) { animation-delay: 0.7s; color: var(--primary-light); }
.loader-text span:nth-child(8) { animation-delay: 0.8s; color: var(--primary-light); }

@keyframes letterPop {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.loading-subtitle {
    color: var(--gray);
    font-size: 14px;
    margin-top: 15px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.navbar.scrolled .logo-main {
    color: var(--dark);
}

.logo-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar.scrolled .logo-sub {
    color: var(--gray);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.navbar.scrolled .nav-link {
    color: var(--dark-2);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 14px;
}

.navbar.scrolled .nav-phone {
    color: var(--dark);
}

.nav-phone i {
    color: var(--accent);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.hamburger {
    display: none;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--dark);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1e40af 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 10%;
    animation-delay: 10s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    left: 20%;
    animation-delay: 15s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(10px, 10px) rotate(3deg); }
}

.hero .container {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tag-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--white);
}

.hero-tag span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
}

.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
}

.title-line.highlight {
    background: linear-gradient(90deg, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    border: 3px solid var(--dark);
    margin-left: -12px;
}

.avatar:first-child { margin-left: 0; }

.avatar.more {
    background: var(--dark-2);
    font-size: 12px;
}

.trust-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.trust-stars i {
    color: var(--accent);
    font-size: 14px;
}

.trust-stars span {
    color: var(--white);
    font-weight: 700;
    margin-left: 6px;
}

.trust-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-container {
    position: relative;
    width: 450px;
    height: 450px;
}

.main-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(124, 58, 237, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.circle-content {
    width: 120px;
    height: 120px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.4);
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: orbitSpin 20s linear infinite;
}

.orbit-1 {
    width: 280px;
    height: 280px;
    margin: -140px 0 0 -140px;
    animation-duration: 15s;
}

.orbit-2 {
    width: 350px;
    height: 350px;
    margin: -175px 0 0 -175px;
    animation-duration: 20s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 420px;
    height: 420px;
    margin: -210px 0 0 -210px;
    animation-duration: 25s;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-item {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: floatCard 4s ease-in-out infinite;
}

.card-1 {
    top: 30px;
    right: 20px;
}

.card-2 {
    bottom: 100px;
    left: 0;
    animation-delay: 1s;
}

.card-3 {
    bottom: 30px;
    right: 50px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.card-icon.success { background: linear-gradient(135deg, #10b981, #34d399); }
.card-icon.warning { background: linear-gradient(135deg, #f59e0b, #fbbf24); }

.card-info {
    display: flex;
    flex-direction: column;
}

.card-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.card-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Stats Bar */
.hero-stats-bar {
    background: var(--white);
    padding: 30px 0;
    position: relative;
    z-index: 3;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.stat-number::after {
    content: '+';
    color: var(--primary);
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--gray-lighter);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image-stack {
    position: relative;
    height: 500px;
}

.about-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-card.main-card {
    top: 0;
    left: 0;
    width: 280px;
    height: 320px;
    background: var(--primary-gradient);
}

.about-card.secondary-card {
    bottom: 0;
    right: 0;
    width: 240px;
    height: 280px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 30px;
    text-align: center;
    color: var(--white);
}

.card-inner i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.card-inner h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-inner p {
    font-size: 14px;
    opacity: 0.8;
}

.experience-badge {
    position: absolute;
    bottom: 100px;
    left: 200px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 30px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-title {
    margin-bottom: 20px;
}

.about-text {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.feature-content p {
    font-size: 14px;
    color: var(--gray);
}

.about-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 120px 0;
    background: var(--gray-lightest);
    position: relative;
}

.services-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(124, 58, 237, 0.03));
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.1);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02), rgba(124, 58, 237, 0.02));
    border: 2px solid var(--primary);
}

.service-card.emergency {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.02), rgba(245, 158, 11, 0.02));
    border: 2px solid var(--danger);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 6px 40px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.service-icon-box {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
}

.service-icon-box .icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: var(--radius);
    transform: rotate(45deg);
}

.service-icon-box i {
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    color: var(--primary);
    line-height: 70px;
    display: block;
    text-align: center;
}

.service-card.emergency .service-icon-box i {
    color: var(--danger);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card > p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-list {
    margin-bottom: 20px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--dark-2);
}

.service-list li i {
    color: var(--success);
    font-size: 12px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* ===== PROCESS SECTION ===== */
.process {
    padding: 120px 0;
    background: var(--white);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--gray-lighter);
}

.timeline-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--primary-gradient);
}

.process-step {
    position: relative;
    text-align: center;
    flex: 1;
    z-index: 1;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.05);
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.step-content p {
    font-size: 14px;
    color: var(--gray);
    max-width: 180px;
    margin: 0 auto;
}

/* ===== WORK GALLERY - UPDATED ===== */
.work {
    padding: 120px 0;
    background: var(--gray-lightest);
}

.work-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(15, 23, 42, 0.5) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    display: inline-block;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    margin-bottom: 12px;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.1s;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* Gallery Item Shine Effect */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    z-index: 2;
    transition: 0.5s;
}

.gallery-item:hover::before {
    left: 100%;
}

/* Gallery Zoom Icon */
.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    z-index: 3;
    transition: var(--transition);
    opacity: 0;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Responsive Gallery */
@media (max-width: 1024px) {
    .work-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .work-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(
            to top,
            rgba(15, 23, 42, 0.9) 0%,
            transparent 100%
        );
    }
    
    .gallery-overlay h4,
    .gallery-overlay p {
        transform: translateY(0);
    }
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.pricing-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03), transparent);
    border-radius: 50%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-lighter);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    background: var(--primary-gradient);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    padding: 40px 30px 30px;
    text-align: center;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary);
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
}

.period {
    font-size: 14px;
    color: var(--gray);
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-lighter);
}

.pricing-features li:last-child {
    border: none;
}

.pricing-features li.included i {
    color: var(--success);
}

.pricing-features li.excluded {
    color: var(--gray-light);
}

.pricing-features li.excluded i {
    color: var(--gray-light);
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
}

.reviews .section-title,
.reviews .section-desc {
    color: var(--white);
}

.reviews .section-desc {
    opacity: 0.7;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: calc(33.333% - 20px);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: var(--transition);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
}

.review-info {
    flex: 1;
}

.review-info h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.review-info span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.review-rating {
    display: flex;
    gap: 3px;
}

.review-rating i {
    color: var(--accent);
    font-size: 14px;
}

.review-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
}

.review-quote {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.05);
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ===== BOOKING SECTION ===== */
.booking {
    padding: 120px 0;
    background: var(--gray-lightest);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.booking-info .section-title {
    margin-bottom: 15px;
}

.booking-desc {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.booking-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--dark-2);
}

.benefit-item i {
    color: var(--success);
    font-size: 16px;
}

.booking-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-icon.telegram {
    background: linear-gradient(135deg, #0088cc, #00b4d8);
}

.contact-info span {
    font-size: 12px;
    color: var(--gray);
    display: block;
}

.contact-info strong {
    font-size: 15px;
    color: var(--dark);
}

/* Booking Form */
.booking-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.booking-form {
    padding: 40px;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-lighter);
}

.form-header i {
    font-size: 1.5rem;
    color: var(--primary);
}

.form-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--primary);
    font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--dark);
    transition: var(--transition);
    background: var(--gray-lightest);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    margin-top: 20px;
}

.btn-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-loader {
    display: none;
    align-items: center;
    gap: 10px;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: flex;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-box {
    text-align: center;
    padding: 40px 25px;
    background: var(--gray-lightest);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    background: var(--white);
}

.contact-box .contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-box p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    padding: 14px 20px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 16px;
    transition: var(--transition);
}

.newsletter-form button:hover {
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    animation: modalPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modalPop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.modal-icon i {
    font-size: 3rem;
    color: var(--success);
    animation: iconPop 0.5s ease 0.3s both;
}

@keyframes iconPop {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.modal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.modal-content > p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 15px;
}

.modal-summary {
    background: var(--gray-lightest);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 25px;
    text-align: left;
}

.modal-summary p {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-lighter);
}

.modal-summary p:last-child {
    border: none;
}

.modal-summary strong {
    color: var(--primary);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ===== TELEGRAM FLOAT BUTTON ===== */
.telegram-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0088cc, #00b4d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.5);
    transition: var(--transition);
}

.telegram-float:hover {
    transform: scale(1.1);
}

.telegram-float:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-10px);
}

.float-pulse {
    position: absolute;
    inset: -5px;
    border: 2px solid rgba(0, 136, 204, 0.5);
    border-radius: 50%;
    animation: floatPulse 2s ease-out infinite;
}

@keyframes floatPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.float-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .hero-wrapper { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-desc { margin: 0 auto 32px; }
    .hero-cta { justify-content: center; }
    .hero-trust { justify-content: center; }
    
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-image-stack { height: 400px; margin: 0 auto; max-width: 400px; }
    
    .booking-wrapper { grid-template-columns: 1fr; }
    
    .work-gallery { grid-template-columns: repeat(2, 1fr); }
    
    .review-card { min-width: calc(50% - 15px); }
    
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        gap: 10px;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active { right: 0; }
    .nav-menu .nav-link { color: var(--dark) !important; padding: 12px 20px; width: 100%; }
    .nav-actions { display: none; }
    .hamburger { display: flex; }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.popular { transform: scale(1); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-links h4::after, .footer-newsletter h4::after { left: 50%; transform: translateX(-50%); }
    .social-links { justify-content: center; }
    
    .work-gallery { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 1; grid-row: span 1; }
    
    .process-timeline { flex-direction: column; gap: 40px; }
    .timeline-line { display: none; }
    
    .stats-grid { gap: 30px; }
    .stat-divider { display: none; }
    
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    
    .review-card { min-width: 100%; }
    
    .section-title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    
    .title-line { font-size: 2rem; }
    .hero-cta { flex-direction: column; }
    .btn-lg { padding: 16px 28px; width: 100%; }
    
    .booking-form { padding: 25px; }
    .modal-content { padding: 30px 20px; }
    
    .telegram-float { width: 55px; height: 55px; bottom: 90px; right: 20px; }
    .scroll-top { width: 45px; height: 45px; bottom: 20px; right: 20px; }
}