/* Modern Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CSS Variables */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-blue: #2563eb;
    --accent: #06b6d4;
    --accent-blue: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --dark-gray: #374151;
    --light-gray: #f8fafc;
    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.hero-mobile-banner {
    display: none;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.tagline {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: var(--primary);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1rem 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    border: 1px solid var(--gray-200);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-phone-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.nav-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Revolutionary Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1d4ed8 100%);
    padding: 100px 0 60px;
}

/* Mobile hero adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: auto !important;
        height: auto !important;
        padding: 120px 0 40px !important;
        overflow: visible !important;
        overflow-x: hidden;
        position: relative !important;
        display: block !important;
        align-items: normal !important;
    }
    
    .hero-container {
        position: relative !important;
        width: 100%;
        padding: 0 15px !important;
    }
    
    .hero-grid {
        display: block !important;
        position: relative !important;
        min-height: auto !important;
        height: auto !important;
    }
    
    .hero-badge-container {
        margin-top: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 10px 18px;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }
    
    .hero-badge span {
        display: inline-block;
    }
}

/* Adjust hero padding for tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }
    
    .main-image {
        max-height: 400px;
        width: 100%;
    }
    
    .main-image img {
        max-height: 400px;
        min-height: 300px;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .image-overlay {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    
    .service-badge {
        padding: 9px 16px;
        font-size: 0.9rem;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(37, 99, 235, 0.9),
        rgba(59, 130, 246, 0.8),
        rgba(29, 78, 216, 0.7),
        rgba(30, 64, 175, 0.8)
    );
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.orb-1 {
    width: 250px;
    height: 250px;
    top: 10%;
    right: -5%;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    left: -5%;
    animation: float 25s ease-in-out infinite reverse;
}

.orb-3 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: -2%;
    animation: float 30s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    33% { transform: translateY(-30px) translateX(20px) rotate(120deg); }
    66% { transform: translateY(20px) translateX(-20px) rotate(240deg); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Tablet container adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        padding: 0 30px;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

/* Tablet breakpoint for hero grid */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-grid {
        gap: 2.5rem;
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-title h1 {
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: 1.2;
    }
    
    .hero-title h2 {
        font-size: clamp(1.3rem, 2.5vw, 2rem);
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .main-image {
        transform: none;
        max-width: 100%;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        overflow: hidden;
    }
    
    .floating-cards {
        display: block;
    }
    
    .feature-card {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .stats-container {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .cta-buttons {
        margin-bottom: 2rem;
    }
}

.hero-content {
    color: var(--white);
}

.hero-badge-container {
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.badge-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: none;
    transition: all 0.3s ease;
}

.hero-badge:hover .badge-glow {
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-badge i {
    color: #fbbf24;
    animation: none;
    transition: all 0.3s ease;
}

.hero-badge:hover i {
    animation: pulse 1.5s ease-in-out infinite;
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-title h1 {
    color: var(--white);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title h2 {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 500px;
}

/* Dynamic Stats */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary, .btn-secondary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    z-index: 10;
    pointer-events: auto;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-primary:hover .btn-bg,
.btn-secondary:hover .btn-bg {
    left: 100%;
}

.btn-primary:hover,
.btn-primary:active {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary:hover,
.btn-secondary:active {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* Payment Section */
.payment-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--white);
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.payment-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.payment-item:hover {
    transform: scale(1.05);
}

.payment-item img {
    height: 30px;
    width: auto;
}

.winz-item {
    background: var(--primary);
}

.winz-item span {
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    overflow: visible;
}

/* Responsive hero visual */
@media (max-width: 1024px) {
    .hero-visual {
        overflow: visible;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        overflow: hidden;
    }
}

.image-showcase {
    position: relative;
    z-index: 10;
    overflow: visible;
}

/* Responsive image showcase */
@media (max-width: 1024px) {
    .image-showcase {
        overflow: visible;
    }
}

@media (max-width: 768px) {
    .image-showcase {
        overflow: hidden;
    }
}

.main-image {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: all 0.6s ease;
}

.main-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Responsive main image */
@media (max-width: 1024px) {
    .main-image {
        transform: none;
        overflow: hidden;
    }
    
    .main-image:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .main-image {
        overflow: hidden;
        border-radius: 16px;
    }
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Responsive image scaling for hero */
@media (max-width: 768px) {
    .main-image {
        max-height: 320px;
        width: 100%;
        margin: 0 auto;
    }
    
    .main-image img {
        max-height: 320px;
        min-height: 250px;
        width: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .main-image img {
        min-height: 300px;
        object-fit: cover;
    }
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 25;
}

/* Responsive image overlay */
@media (max-width: 1024px) {
    .image-overlay {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
}

@media (max-width: 768px) {
    .image-overlay {
        bottom: 12px;
        left: 12px;
        right: 12px;
    }
}

.service-badge {
    background: rgba(37, 99, 235, 0.95);
    backdrop-filter: blur(20px);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Responsive service badge */
@media (max-width: 1024px) {
    .service-badge {
        padding: 8px 14px;
        font-size: 0.85rem;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .service-badge {
        padding: 8px 14px;
        font-size: 0.85rem;
        white-space: normal;
        line-height: 1.3;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .service-badge i {
        flex-shrink: 0;
    }
    
    .service-badge span {
        flex: 1;
    }
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    pointer-events: none;
}

.feature-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--gray-800);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    animation: cardFloat 6s ease-in-out infinite;
    white-space: nowrap;
    font-size: 0.9rem;
    max-width: 90%;
    z-index: 20;
}

.card-1 {
    top: 10%;
    right: 10px;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    left: 10px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 15%;
    right: 10px;
    animation-delay: 4s;
}

/* Responsive floating cards */
@media (max-width: 1024px) {
    .feature-card {
        padding: 8px 12px;
        font-size: 0.85rem;
        gap: 0.4rem;
    }
    
    .card-1 {
        top: 8%;
        right: 8px;
    }
    
    .card-2 {
        top: 40%;
        left: 8px;
    }
    
    .card-3 {
        bottom: 12%;
        right: 8px;
    }
}

@media (max-width: 768px) {
    .floating-cards {
        display: none;
    }
}

@media (min-width: 1400px) {
    .card-1 {
        right: 20px;
    }
    
    .card-2 {
        left: 20px;
    }
    
    .card-3 {
        right: 20px;
    }
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.feature-card i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
}

.about-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shape-blob {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
    animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.blob-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 10%;
    animation-delay: 7s;
}

.blob-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 30%;
    animation-delay: 14s;
}

@keyframes blobFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    33% { transform: translateY(-20px) scale(1.1); }
    66% { transform: translateY(10px) scale(0.9); }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-lead {
    font-size: 1.3rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-size: 1.1rem;
}

.feature-content p {
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

.process-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
}

.process-step:hover {
    transform: translateY(-5px) scale(1.05);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.process-step h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.process-step p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

.flow-arrow {
    color: var(--primary);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section - Complete Rewrite */
.services-showcase {
    position: relative;
    z-index: 2;
}

.services-showcase-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Tablet/Medium sizes - 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-showcase-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-card.compact {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .service-visual {
        width: 100px;
        height: 100px;
    }
    
    .service-info h3 {
        font-size: 1.1rem;
    }
    
    .service-info p {
        font-size: 0.9rem;
    }
}

/* Large desktop - 3 columns for 5 services */
@media (min-width: 1025px) {
    .services-showcase-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    /* Center the last 2 services on the second row */
    .services-showcase-inner .service-card.compact:nth-child(4) {
        grid-column: 1;
    }
    
    .services-showcase-inner .service-card.compact:nth-child(5) {
        grid-column: 2;
    }
}

.service-card.compact {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
}

.service-card.compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-visual {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card.compact:hover .service-visual img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    z-index: 2;
}

.service-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.service-badge.popular {
    background: var(--primary);
    color: var(--white);
}

.service-badge.eco {
    background: var(--success);
    color: var(--white);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-size: 1.2rem;
    font-weight: 600;
}

.service-info p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 0.8rem;
    color: var(--primary-dark);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Reasons Section */
.reasons {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.reasons-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.reasons-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
}

.reasons-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.reason-blob {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(59, 130, 246, 0.04));
    animation: blobFloat 25s ease-in-out infinite;
}

.reason-blob.blob-1 {
    width: 400px;
    height: 400px;
    top: 5%;
    right: 10%;
    animation-delay: 0s;
}

.reason-blob.blob-2 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 5%;
    animation-delay: 8s;
}

.reason-blob.blob-3 {
    width: 180px;
    height: 180px;
    top: 50%;
    right: 40%;
    animation-delay: 16s;
}

.reasons-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.reasons-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.reasons-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.reasons-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    overflow: hidden;
}

.reason-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.6s ease;
}

.reason-card:hover::before {
    left: 100%;
}

.reason-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.reason-card:hover .reason-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.reason-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    z-index: 3;
}

.reason-card:hover .reason-icon {
    background: rgba(37, 99, 235, 0.2);
    transform: scale(1.1) rotate(-5deg);
}

.reason-content {
    flex: 1;
    padding-right: 45px;
}

.reason-content h3 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.reason-content p {
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.reason-card:hover .reason-content h3 {
    color: var(--primary);
}

.reason-card:hover .reason-content p {
    color: var(--gray-700);
}

/* Staggered animation for reason cards */
.reason-card:nth-child(1) { animation-delay: 0.1s; }
.reason-card:nth-child(2) { animation-delay: 0.2s; }
.reason-card:nth-child(3) { animation-delay: 0.3s; }
.reason-card:nth-child(4) { animation-delay: 0.4s; }
.reason-card:nth-child(5) { animation-delay: 0.5s; }
.reason-card:nth-child(6) { animation-delay: 0.6s; }
.reason-card:nth-child(7) { animation-delay: 0.7s; }

/* Testimonials */
.testimonials {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.testimonials-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #f8fafc 100%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.testimonials-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 1rem;
    padding-right: 3rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info h5 {
    margin-bottom: 0.25rem;
    color: var(--gray-900);
    font-weight: 600;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #f8fafc 100%);
}

.contact-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-blob {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(59, 130, 246, 0.03));
    animation: blobFloat 30s ease-in-out infinite;
}

.contact-blob.blob-1 {
    width: 350px;
    height: 350px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.contact-blob.blob-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 10%;
    animation-delay: 15s;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contact-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--gray-900);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 20px;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-dark);
}

/* Contact Form */
.contact-form {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.file-input {
    display: none;
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-upload-area {
    border: 2px dashed var(--gray-300);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.file-upload-area:hover {
    border-color: var(--primary);
    background: var(--gray-50);
}

.file-upload-area i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.file-info {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

.file-list {
    margin-top: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    background: var(--white);
    border-radius: 6px;
    margin-bottom: 0.5rem;
    border: 1px solid var(--gray-300);
}

.file-remove {
    color: var(--gray-500);
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.file-remove:hover {
    color: var(--danger);
}

/* Modern Contact Cards */
.contact-info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-icon-main {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.contact-info-header h3 {
    color: var(--gray-900);
    font-size: 1.3rem;
    margin: 0;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-method-icon {
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-method-info h4 {
    margin-bottom: 0.25rem;
    color: var(--gray-900);
    font-size: 1rem;
    font-weight: 600;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
    transform: translateY(-1px);
}

.contact-method-info p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

.payment-notice {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.payment-notice-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.payment-notice-content h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-size: 1rem;
    font-weight: 600;
}

.payment-notice-content p {
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: var(--gray-900);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray-600);
    margin: 0;
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.modern-contact-form .form-group {
    margin-bottom: 0;
}

.modern-contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-weight: 600;
    font-size: 0.9rem;
}

.modern-contact-form input,
.modern-contact-form select,
.modern-contact-form textarea {
    width: 100%;
    min-width: 0;
    padding: 12px 16px;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    font-family: inherit;
    box-sizing: border-box;
}

.modern-contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.modern-contact-form input:focus,
.modern-contact-form select:focus,
.modern-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.modern-file-upload {
    border: 2px dashed rgba(37, 99, 235, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(37, 99, 235, 0.02);
    position: relative;
    display: block;
    width: 100%;
}

.modern-file-upload:hover {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

.upload-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.upload-content h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.upload-content p {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.upload-note {
    color: var(--gray-500);
    font-size: 0.8rem;
}

.modern-file-list {
    margin-top: 1rem;
}

.modern-submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    z-index: 10;
    pointer-events: auto;
    position: relative;
}

.modern-submit-btn:hover,
.modern-submit-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.modern-submit-btn:active {
    transform: translateY(0);
}

.modern-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Footer */
.footer {
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #1e40af 100%);
}

.footer-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: blobFloat 35s ease-in-out infinite;
}

.footer-blob.blob-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.footer-blob.blob-2 {
    width: 200px;
    height: 200px;
    bottom: 30%;
    left: 15%;
    animation-delay: 12s;
}

.footer-blob.blob-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 40%;
    animation-delay: 24s;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.brand-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-contact-quick {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.quick-contact-item i {
    width: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.quick-contact-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.quick-contact-item a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-column a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-column a i {
    width: 16px;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.footer-copyright p:first-child {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social .social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-social .phone-link {
    background: rgba(255, 255, 255, 0.15);
}

.footer-social .phone-link:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Service Pages Header */
.page-header {
    position: relative;
    padding: 120px 0 80px;
    margin-top: 90px;
    overflow: hidden;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #1e40af 100%);
    z-index: 1;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.page-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.stat-info {
    text-align: left;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

.page-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 7s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 14s;
}

/* Service Page Modern Sections */
.services-overview-page {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-bg-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-gradient-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.service-feature-card h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-feature-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.feature-benefits i {
    color: var(--success);
    font-size: 0.8rem;
}

/* Content Sections */
.content-sections {
    padding: 80px 0;
    background: var(--white);
}

.content-card-modern {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-card-modern.reverse .content-grid {
    grid-template-columns: 1fr 1fr;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.content-text h2 {
    font-size: 2.2rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-lead {
    font-size: 1.2rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    font-weight: 500;
}

.image-wrapper-modern {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-wrapper-modern:hover {
    transform: scale(1.02);
}

.image-wrapper-modern img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge-modern {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.image-badge-modern.eco {
    background: var(--success);
}

/* Risk Items */
.risk-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.risk-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 12px;
    border-left: 4px solid #ef4444;
}

.risk-icon {
    width: 50px;
    height: 50px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.risk-content h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.risk-content p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.tip-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tip-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.tip-icon.accept {
    background: var(--success);
}

.tip-icon.reject {
    background: #ef4444;
}

.tip-content h4 {
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tip-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tip-content li {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Hazardous Waste Section */
.hazardous-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hazardous-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hazardous-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.hazardous-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hazardous-icon {
    width: 60px;
    height: 60px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.hazardous-card h4 {
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.hazardous-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Specialty Services */
.specialty-services {
    margin-top: 4rem;
}

.specialty-header {
    text-align: center;
    margin-bottom: 3rem;
}

.specialty-header h2 {
    font-size: 2.2rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.specialty-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.specialty-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.specialty-visual {
    position: relative;
    text-align: center;
    margin-bottom: 1.5rem;
}

.specialty-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin: 0 auto;
}

.specialty-badge {
    position: absolute;
    top: -5px;
    right: 50%;
    transform: translateX(50%);
    background: var(--success);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.specialty-content h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.specialty-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.specialty-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specialty-content li {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1rem;
}

.specialty-content li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* Mobile Banner - Hidden on Desktop */
.hero-mobile-banner {
    display: none;
}

/* Services Toggle - Hidden on Desktop */
.services-toggle-mobile {
    display: none;
}

/* Testimonials Nav - Hidden on Desktop */
.testimonials-nav {
    display: none;
}

/* Services Toggle - Hidden on Desktop */
.services-toggle-mobile {
    display: none;
}

/* Desktop - Services Grid */
@media (min-width: 1025px) {
    .services-showcase-inner {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    .service-card.compact {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 1.5rem !important;
        text-align: left !important;
    }
    
    .service-visual {
        width: 120px !important;
        height: 120px !important;
        margin-bottom: 0 !important;
    }
    
    .testimonials-showcase {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        overflow: visible !important;
    }
    
    .testimonials-showcase-wrapper {
        overflow: visible !important;
    }
    
    .testimonial-card {
        flex: none !important;
        max-width: none !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Banner in Header */
    .hero-mobile-banner {
        display: block;
        background: var(--primary-blue);
        color: white;
        text-align: center;
        padding: 0.5rem 1rem;
        font-weight: 700;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .mobile-company-name {
        letter-spacing: 0.5px;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav-cta {
        display: none;
    }
    
    .logo-text {
        display: none;
    }
    
    .nav-logo .logo {
        height: 40px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1.5rem 0;
        border-top: 1px solid var(--gray-200);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-weight: 600;
        font-size: 1.1rem;
        color: var(--gray-900);
        border-bottom: 1px solid var(--gray-100);
    }
    
    .nav-link:hover {
        background: var(--gray-50);
        color: var(--primary-blue);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--gray-50);
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }
    
    .dropdown-menu li {
        margin: 0;
    }
    
    .dropdown-menu a {
        display: block;
        padding: 0.75rem 3rem;
        font-weight: 500;
        color: var(--gray-700);
        border-bottom: 1px solid var(--gray-100);
    }
    
    .dropdown-menu a:hover {
        background: var(--gray-100);
        color: var(--primary-blue);
    }
    
    .dropdown .nav-link {
        position: relative;
    }
    
    .dropdown .nav-link i {
        position: absolute;
        right: 2rem;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .nav-link i {
        transform: rotate(180deg);
    }
    
    .hero-grid {
        display: block !important;
        grid-template-columns: none !important;
        gap: 1.5rem;
        text-align: center;
        min-height: auto !important;
        height: auto !important;
        padding: 0;
        position: relative !important;
    }
    
    .hero-container {
        padding: 0 15px !important;
        position: relative !important;
        height: auto !important;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .cta-buttons a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        min-height: 50px;
        -webkit-tap-highlight-color: rgba(37, 99, 235, 0.3);
    }
    
    .payment-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-image {
        transform: none;
        max-width: 100%;
        margin: 0 auto;
        max-height: 320px;
        overflow: hidden;
        border-radius: 16px;
    }
    
    .main-image img {
        width: 100%;
        height: auto;
        max-height: 320px;
        min-height: 250px;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    
    .image-overlay {
        bottom: 12px;
        left: 12px;
        right: 12px;
    }
    
    .service-badge {
        padding: 8px 14px;
        font-size: 0.85rem;
        white-space: normal;
        line-height: 1.3;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .service-badge i {
        flex-shrink: 0;
    }
    
    .service-badge span {
        flex: 1;
    }
    
    .floating-cards {
        display: none;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 100%;
        position: relative !important;
        height: auto !important;
    }
    
    .image-showcase {
        width: 100%;
        max-width: 100%;
        position: relative !important;
        height: auto !important;
    }
    
    .hero-content {
        position: relative !important;
        width: 100%;
        text-align: center;
    }
    
    .hero-description {
        max-width: 100%;
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .stats-container {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* About Section Mobile */
    .about {
        padding: 60px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .about-content h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .about-lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
        text-align: left;
    }
    
    .process-flow {
        gap: 0.75rem;
        padding: 0.5rem 0;
    }
    
    .process-step {
        min-width: 180px;
        padding: 1rem 0.75rem;
    }
    
    .process-step h4 {
        font-size: 1rem;
    }
    
    .process-step p {
        font-size: 0.85rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    /* Services Mobile - Complete Rewrite */
    .services-toggle-mobile {
        display: flex;
        width: 100%;
        padding: 1rem 1.5rem;
        background: var(--primary-blue);
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        margin-bottom: 1rem;
        justify-content: space-between;
        align-items: center;
        transition: background 0.3s ease;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
    }
    
    .services-toggle-mobile:active {
        background: var(--primary-dark);
    }
    
    .services-toggle-mobile i {
        transition: transform 0.3s ease;
        font-size: 0.9rem;
    }
    
    .services-toggle-mobile.active i {
        transform: rotate(180deg);
    }
    
    .services-showcase-inner {
        display: block !important;
        grid-template-columns: none !important;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    }
    
    .services-showcase-inner.active {
        max-height: 10000px;
        opacity: 1;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease 0.1s;
    }
    
    .services-showcase-inner .service-card.compact {
        margin-bottom: 1.25rem;
    }
    
    .services-showcase-inner .service-card.compact:last-child {
        margin-bottom: 0;
    }
    
    .service-card.compact {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .service-visual {
        width: 100%;
        height: 180px;
        margin-bottom: 1rem;
    }
    
    .service-info h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .service-info p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .testimonials-nav {
        display: flex !important;
    }
    
    /* Testimonials Mobile */
    .testimonials-showcase-wrapper {
        position: relative;
        overflow: hidden;
    }
    
    .testimonials-showcase {
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
        scrollbar-width: none;
    }
    
    .testimonials-showcase::-webkit-scrollbar {
        display: none;
    }
    
    .testimonial-card {
        flex: 0 0 90%;
        scroll-snap-align: start;
        max-width: 90%;
    }
    
    .testimonials-nav {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 2px solid var(--primary-blue);
        background: white;
        color: var(--primary-blue);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }
    
    .testimonial-prev:hover,
    .testimonial-next:hover {
        background: var(--primary-blue);
        color: white;
    }
    
    .testimonial-content p {
        padding-right: 1rem;
        font-size: 0.95rem;
    }
    
    /* Reasons Mobile */
    .reasons {
        padding: 60px 0;
    }
    
    .reasons-header h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .reasons-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .reasons-showcase {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .reason-card {
        flex-direction: row;
        text-align: left;
        gap: 0.75rem;
        padding: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .reason-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    .reason-icon {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
        flex-shrink: 0;
    }
    
    .reason-content {
        flex: 1;
        padding-right: 0;
    }
    
    .reason-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .reason-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Contact Mobile */
    .contact-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .modern-contact-form input,
    .modern-contact-form select,
    .modern-contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Footer Mobile */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Service Pages Mobile */
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .page-stat {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Service Page Mobile */
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-card-modern.reverse .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-text h2 {
        font-size: 1.8rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hazardous-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .specialty-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title h1 {
        font-size: 2rem;
    }
    
    .hero-title h2 {
        font-size: 1.25rem;
    }
    
    .payment-section {
        padding: 1rem;
    }
    
    .reason-item {
        padding: 1.5rem;
    }
    
    .service-card {
        margin: 0 10px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Honeypot field - hidden from users */
.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
}

.honeypot-field input {
    tabindex: -1;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}