/*
Theme Name: OM Infotech
Theme URI: https://ominfotech.com
Author: OM Infotech
Author URI: https://ominfotech.com
Description: A modern, professional WordPress theme for OM Infotech computer repair shop. Features responsive design, service showcase, and contact integration.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ominfotech
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Loading Screen */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    text-align: center;
}

.loader-inner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    z-index: 1002;
    position: relative;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: visible;
}

.mobile-menu-toggle.active {
    justify-content: center;
}

.mobile-menu-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.mobile-menu-toggle:hover::before {
    width: 48px;
    height: 48px;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    position: relative;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
    display: block;
}

.mobile-menu-toggle span:nth-child(1) {
    transform-origin: top left;
}

.mobile-menu-toggle span:nth-child(3) {
    transform-origin: bottom left;
}

.mobile-menu-toggle:not(.active):hover span {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.mobile-menu-toggle.active {
    transform: none;
    justify-content: center;
}

.mobile-menu-toggle.active span {
    position: absolute;
    top: 50%;
    left: 4px;
    right: 4px;
    margin-top: -1.5px;
    width: calc(100% - 8px);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4) !important;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
    width: 0 !important;
    visibility: hidden !important;
    display: none !important;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4) !important;
    transform-origin: center;
}

.mobile-menu-toggle.active::before {
    background: rgba(102, 126, 234, 0.1);
}

/* Pulse animation for hover state */
@keyframes pulse-hamburger {
    0%, 100% {
        box-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
        transform: scaleY(1);
    }
    50% {
        box-shadow: 0 2px 12px rgba(102, 126, 234, 0.5);
        transform: scaleY(1.1);
    }
}

.mobile-menu-toggle:not(.active):hover span {
    animation: pulse-hamburger 1.5s ease-in-out infinite;
}

/* Smooth transition for all states */
.mobile-menu-toggle span {
    will-change: transform, opacity, background;
}

/* Header Styles */
.site-header {
    background: #ffffff;
    color: #1a202c;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin: 15px 20px;
    max-width: calc(100% - 40px);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 10px 20px;
    border-radius: 10px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: #1a202c;
    transition: all 0.3s ease;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
}

.site-logo::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-right: 0;
    flex-shrink: 0;
    position: relative;
}

.site-logo::after {
    content: 'O';
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
    z-index: 1;
}

.site-logo:hover {
    opacity: 0.8;
}

.site-nav {
    display: flex;
    align-items: center;
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    margin: 0;
}

.site-nav a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block;
    font-size: 0.95rem;
}

.site-nav a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}


/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 150px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 20s infinite ease-in-out;
}

.hero-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}


.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-content * {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatImage 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(102, 126, 234, 0.3));
}

.hero-main-image svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 20px 40px rgba(102, 126, 234, 0.3)); }
    50% { filter: drop-shadow(0 25px 50px rgba(118, 75, 162, 0.5)); }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    animation: floatCard 4s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.3);
}

.floating-card .card-icon {
    font-size: 1.5rem;
}

.floating-card .card-text {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: -50px;
    animation-delay: 10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 5%;
    animation-delay: 15s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(30px, 50px) scale(1.05); }
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 24px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out, pulseBadge 2s ease-in-out infinite 1s;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.badge-icon {
    font-size: 1.2rem;
    animation: spinBadge 3s linear infinite;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
    50% { transform: scale(1.05); box-shadow: 0 8px 20px rgba(255,255,255,0.2); }
}

@keyframes spinBadge {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gradient-text {
    background: linear-gradient(120deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.1s both;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s both;
    font-weight: 300;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    animation: bounceIcon 2s ease-in-out infinite;
}

.stat-item:nth-child(2) .stat-icon {
    animation-delay: 0.3s;
}

.stat-item:nth-child(3) .stat-icon {
    animation-delay: 0.6s;
}

@keyframes bounceIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(120deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}


.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.cta-button.primary {
    background: white;
    color: #667eea;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button.secondary::before {
    background: rgba(255,255,255,0.1);
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.service-card:hover .service-card-bg {
    opacity: 1;
}

.service-card > *:not(.service-card-bg) {
    position: relative;
    z-index: 2;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s;
    z-index: 1;
    pointer-events: none;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.4);
}

.service-link {
    margin-top: auto;
    color: #667eea;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link:hover {
    color: #764ba2;
    transform: translateX(5px);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.why-choose-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.2);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.why-choose-card:hover .why-choose-icon::before {
    width: 100px;
    height: 100px;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.why-choose-icon svg {
    position: relative;
    z-index: 1;
}

.why-choose-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.why-choose-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.why-choose-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-top: 3rem;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.why-choose-cta .cta-button {
    background: white;
    color: #667eea;
}

.why-choose-cta .cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #f0f0f0;
}

.map-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 700;
}

.map-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 15px;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid #667eea;
}

.map-link-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.map-link-btn svg {
    width: 18px;
    height: 18px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #667eea;
}

.contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-item strong {
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form-group.focused label {
    color: #667eea;
    transform: translateY(-5px);
    font-size: 0.9rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    transition: opacity 0.3s;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.5;
}

.form-success {
    margin-top: 1rem;
    padding: 1rem;
    background: #25D366;
    color: white;
    border-radius: 10px;
    text-align: center;
    animation: slideIn 0.5s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: visible;
    position: relative;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: visible !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(102, 126, 234, 0.3) transparent;
    cursor: grab;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding: 30px 0;
}

.testimonials-carousel:active {
    cursor: grabbing;
}

.testimonials-carousel::-webkit-scrollbar {
    height: 8px;
}

.testimonials-carousel::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.testimonials-carousel::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.3);
    border-radius: 10px;
    transition: background 0.3s;
}

.testimonials-carousel::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.5);
}

.testimonials-wrapper {
    overflow: visible;
    margin: 0 auto;
    width: 100%;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 0;
    box-sizing: border-box;
    align-items: stretch;
}

.testimonial-card {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(102, 126, 234, 0.1);
    scroll-snap-align: start;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    cursor: pointer;
    will-change: transform;
}


.testimonial-header {
    margin-bottom: 1.5rem;
}

.testimonial-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.testimonial-business {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.star-rating {
    display: flex;
    gap: 3px;
}

.star {
    color: #ffa500;
    font-size: 1.2rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    font-style: italic;
}

.testimonial-image {
    margin-top: 1.5rem;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.testimonial-img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #667eea;
    transform: scale(1.2);
}

.dot:hover {
    background: #764ba2;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
    animation: pulse 2s infinite;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1a1f2e 0%, #2c3e50 50%, #34495e 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 50px 50px 0 0;
    margin-top: 4rem;
    box-shadow: 0 -10px 50px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
    border-top: 3px solid rgba(102, 126, 234, 0.4);
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.6), rgba(118, 75, 162, 0.6), rgba(102, 126, 234, 0.6), transparent);
    z-index: 1;
}

.site-footer::after {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseFooter 5s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulseFooter {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
    50% { transform: translateX(-50%) scale(1.3); opacity: 0.6; }
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    animation: fadeInUp 0.8s ease-out;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.footer-logo h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(120deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.logo-accent {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    margin-bottom: 1.5rem;
    animation: expandWidth 1s ease-out;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 60px; }
}

.footer-about p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 0.5);
}

.social-icon:hover svg {
    transform: scale(1.2);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #667eea;
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 15px;
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: #667eea;
    transition: all 0.3s ease;
}

.footer-contact-item:hover svg {
    color: #764ba2;
    transform: scale(1.2);
}

.footer-contact-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: white;
}

.footer-contact-item span {
    flex: 1;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    margin-bottom: 2rem;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-copyright p:first-child {
    font-size: 1rem;
    font-weight: 500;
}

.footer-copyright strong {
    background: linear-gradient(120deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-style: italic;
}

.developer-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-style: normal;
    color: rgba(255,255,255,0.82);
}

.developer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 50%;
    text-decoration: none;
    color: #9bb7ff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    transition: all 0.25s ease;
}

.developer-link:hover {
    color: #ffffff;
    background: rgba(102, 126, 234, 0.35);
    border-color: rgba(255,255,255,0.28);
}

.developer-link-icon {
    width: 14px;
    height: 14px;
    display: block;
    flex-shrink: 0;
}

.footer-copyright p:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .site-header {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin: 10px;
        max-width: calc(100% - 20px);
        width: calc(100% - 20px);
        border-radius: 20px;
        padding: 0.8rem 1rem;
        z-index: 1000;
        overflow: visible;
        box-sizing: border-box;
    }
    
    .site-header .container {
        position: relative;
        padding: 0 15px;
    }
    
    .header-content {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100%;
        position: relative;
        height: auto;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1002;
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 6px 4px;
        box-shadow: none;
        cursor: pointer;
        width: 32px;
        height: 24px;
        margin: 0;
        margin-left: auto;
        align-items: center;
        justify-content: space-between;
        flex-shrink: 0;
        overflow: visible;
    }
    
    .mobile-menu-toggle:hover {
        transform: scale(1.1);
    }
    
    .mobile-menu-toggle:active {
        transform: scale(0.95);
    }
    
    .mobile-menu-toggle.active {
        transform: none !important;
        justify-content: center !important;
    }
    
    .mobile-menu-toggle span {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        height: 3px !important;
        border-radius: 3px !important;
        box-shadow: 0 2px 4px rgba(102, 126, 234, 0.2) !important;
        display: block !important;
    }
    
    .mobile-menu-toggle:hover span {
        background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4) !important;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4) !important;
        position: absolute !important;
        top: 50% !important;
        left: 4px !important;
        right: 4px !important;
        margin-top: -1.5px !important;
        width: calc(100% - 8px) !important;
        transform-origin: center !important;
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
        transform: scaleX(0) !important;
        width: 0 !important;
        visibility: hidden !important;
        display: none !important;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4) !important;
        position: absolute !important;
        top: 50% !important;
        left: 4px !important;
        right: 4px !important;
        margin-top: -1.5px !important;
        width: calc(100% - 8px) !important;
        transform-origin: center !important;
    }
    
    .site-header .container {
        width: 100%;
        padding: 0;
        position: relative;
    }
    
    .site-header.scrolled {
        top: 5px;
        border-radius: 15px;
    }
    
    .site-logo {
        font-size: 1.25rem;
        padding: 0;
        z-index: 1;
        flex: 0 0 auto;
        margin: 0;
        line-height: 1;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        height: auto;
        box-sizing: border-box;
    }
    
    .site-logo::before {
        width: 32px;
        height: 32px;
    }
    
    .site-logo::after {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    /* Hide navigation in header on mobile - but show when active */
    .header-content .site-nav:not(.active) {
        display: none !important;
    }
    
    /* Simple rectangular menu below header on mobile */
    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        z-index: 999;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0;
        margin-top: 10px;
    }
    
    /* Show menu when active - override all hidden states */
    .site-nav.active,
    .header-content .site-nav.active {
        display: block !important;
        max-height: 500px;
        padding: 1.5rem 1rem;
        overflow: visible;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .site-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
        z-index: 0;
        pointer-events: none;
    }
    
    .site-nav.active ul {
        position: relative;
        z-index: 2;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        width: 100%;
        padding: 0;
        margin: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        list-style: none;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .site-nav.active ul li {
        width: 100%;
        display: block !important;
        margin: 0 0 0.75rem 0;
        padding: 0;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .site-nav.active ul li:last-child {
        margin-bottom: 0;
    }
    
    .site-nav.active a {
        display: block !important;
        padding: 14px 20px;
        font-size: 1rem;
        font-weight: 500;
        border-radius: 10px;
        width: 100%;
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.2);
        transition: all 0.3s ease;
        color: white !important;
        text-decoration: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        cursor: pointer;
    }
    
    .site-nav a:hover {
        background: rgba(255,255,255,0.25);
        transform: translateY(-2px);
        border-color: rgba(255,255,255,0.4);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    .site-nav a::before,
    .site-nav a::after {
        display: none;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .site-footer {
        border-radius: 30px 30px 0 0;
        margin-top: 2rem;
        padding: 3rem 0 1.5rem;
    }

    .developer-link {
        width: 32px;
        height: 32px;
    }

    .developer-link-icon {
        width: 16px;
        height: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .hero-section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
        padding: 100px 0 120px;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .hero-section .container {
        width: 100%;
        max-width: 100vw;
        padding: 0 20px;
        box-sizing: border-box;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-wrapper {
        display: block;
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-image,
    .hero-image-wrapper {
        display: none;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0;
        margin: 0 auto;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero-badge {
        margin: 0 auto 1.5rem;
        font-size: 0.85rem;
        padding: 8px 16px;
        white-space: nowrap;
        max-width: 100%;
        box-sizing: border-box;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin: 0 auto 1rem;
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 auto 2rem;
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        white-space: normal;
        text-align: center;
        display: block;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-stats {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        margin: 0 auto 2rem;
        padding: 0;
        box-sizing: border-box;
        align-items: center;
        justify-content: center;
    }
    
    .stat-item {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 140px;
        max-width: 180px;
        box-sizing: border-box;
        padding: 1.2rem 1rem;
        margin: 0 auto;
    }
    
    .hero-buttons {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0;
        margin: 0 auto 80px;
        box-sizing: border-box;
        align-items: center;
        justify-content: center;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        max-width: 300px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    .scroll-indicator {
        bottom: 20px !important;
        position: absolute;
        z-index: 1;
    }
    
    .scroll-indicator span {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }
    
    .mouse {
        width: 20px;
        height: 32px;
    }
    
    .services-section {
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        width: 100%;
        box-sizing: border-box;
    }
    
    .why-choose-section {
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .about-section {
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .contact-section {
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        width: 100%;
        box-sizing: border-box;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .map-link-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .map-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonials-section {
        padding: 50px 0;
        width: 100%;
        overflow-x: hidden;
        overflow-y: visible;
        box-sizing: border-box;
        position: relative;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        min-width: calc(100vw - 30px);
        max-width: calc(100vw - 30px);
        width: calc(100vw - 30px);
        box-sizing: border-box;
    }
    
    .testimonials-carousel {
        margin: 0;
        max-width: 100vw;
        width: 100vw;
        padding: 20px 0;
        box-sizing: border-box;
        overflow-x: auto;
        overflow-y: visible;
    }
    
    .testimonials-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: visible;
        box-sizing: border-box;
        padding: 20px 0;
    }
    
    
    .testimonials-track {
        gap: 20px;
        padding: 0;
        box-sizing: border-box;
    }
    
    /* Prevent any element from causing horizontal overflow */
    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    main {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .testimonial-header {
        margin-bottom: 1rem;
    }
    
    .testimonial-info h3 {
        font-size: 1.2rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
    
    .testimonial-img {
        max-height: 150px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* Extra Small Devices (phones, 480px and down) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-section {
        padding: 80px 0 100px;
    }

    .developer-credit {
        gap: 0.4rem;
    }

    .developer-link {
        width: 32px;
        height: 32px;
    }

    .developer-link-icon {
        width: 16px;
        height: 16px;
    }
    
    .hero-section .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        padding: 0 15px;
        max-width: calc(100% - 30px);
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
        line-height: 1.5;
        max-width: calc(100% - 30px);
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        max-width: calc(100% - 30px);
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 0.75rem;
        padding: 0;
        max-width: calc(100% - 30px);
    }
    
    .stat-item {
        flex: 1 1 calc(50% - 0.375rem);
        min-width: 120px;
        max-width: 150px;
        padding: 1rem 0.75rem;
    }
    
    .hero-buttons {
        padding: 0;
        max-width: calc(100% - 30px);
        margin-bottom: 80px !important;
    }
    
    .hero-buttons .cta-button {
        max-width: 100%;
        width: 100%;
    }
    
    .scroll-indicator {
        bottom: 15px !important;
    }
    
    .scroll-indicator span {
        font-size: 0.65rem;
        margin-bottom: 6px;
    }
    
    .mouse {
        width: 18px;
        height: 28px;
    }
    
    .testimonials-section {
        padding: 40px 0;
        width: 100%;
        overflow-x: hidden;
        overflow-y: visible;
        position: relative;
    }
    
    .testimonials-carousel {
        margin: 0;
        max-width: 100%;
        width: 100%;
        padding: 15px 0;
        overflow-y: visible;
    }
    
    .testimonials-wrapper {
        overflow: visible;
        padding: 15px 0;
    }
    
    .testimonials-track {
        gap: 15px;
        padding: 0;
    }
    
    
    .testimonial-card {
        min-width: calc(100vw - 20px);
        max-width: calc(100vw - 20px);
        width: calc(100vw - 20px);
        padding: 1.2rem;
        border-radius: 12px;
        box-sizing: border-box;
    }
    
    .testimonials-carousel {
        width: 100vw;
        max-width: 100vw;
    }
    
    .testimonials-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .testimonial-info h3 {
        font-size: 1.1rem;
    }
    
    .testimonial-content p {
        font-size: 0.85rem;
    }
    
    .testimonial-img {
        max-height: 120px;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 481px) and (max-width: 576px) {
    .testimonial-card {
        min-width: calc(100vw - 30px);
        max-width: calc(100vw - 30px);
        width: calc(100vw - 30px);
        padding: 1.8rem;
        box-sizing: border-box;
    }
    
    .testimonials-carousel {
        width: 100vw;
        max-width: 100vw;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 577px) and (max-width: 768px) {
    .testimonial-card {
        min-width: calc(50vw - 25px);
        max-width: calc(50vw - 25px);
        width: calc(50vw - 25px);
        padding: 2rem;
        box-sizing: border-box;
    }
    
    .testimonials-track {
        gap: 25px;
    }
    
    .testimonials-carousel {
        width: 100%;
        max-width: 100%;
    }
}

