* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --secondary: #ff6b35;
    --dark: #0a0a1a;
    --dark-light: #1a1a2e;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f8fafc;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    --gradient-2: linear-gradient(135deg, #ff6b35 0%, #ff9a56 100%);
    --gradient-3: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(0,102,255,0.3);
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 110px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Top Bar */
.top-bar {
    background: var(--gradient-3);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

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

.top-bar-left, .top-bar-right {
    display: flex;
    gap: 30px;
}

.top-bar a,
.info-content p a,
.contact-list li a {
    color: inherit;
    text-decoration: none;
}

.contact-list li a {
    display: inline;
    padding-left: 0;
}

.contact-list li a:hover {
    padding-left: 0;
    color: var(--primary);
}

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

.top-bar i {
    color: var(--primary);
}

/* Header */
.header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 42px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    top: 0;
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 45px;
    width: auto;
}

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

.logo-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav a:hover, .nav a.active {
    color: var(--primary);
    background: rgba(0,102,255,0.08);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,102,255,0.3);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,102,255,0.4);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 70px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slide.slide-repair {
    background-image: url('images/GeneralRepair.webp');
}

.slide.slide-cleaning {
    background-image: url('images/DeepCleaning.webp');
}

.slide.slide-installation {
    background-image: url('images/Installation.webp');
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,102,255,0.2);
    border: 1px solid rgba(0,102,255,0.3);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    animation: fadeInUp 0.5s ease;
}

.hero-badge i {
    color: var(--secondary);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.5s ease backwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 600px;
    animation: fadeInUp 0.5s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 0.5s ease 0.5s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0,102,255,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,102,255,0.4);
}

.btn-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 4px 20px rgba(0,102,255,0.3); }
    to { box-shadow: 0 4px 40px rgba(0,102,255,0.5); }
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 60px;
    animation: fadeInUp 0.8s ease 1.2s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.stat-plus {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-top: 5px;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    width: 40px;
    border-radius: 6px;
}

/* Features Strip */
.features-strip {
    background: var(--white);
    padding: 40px 0;
    margin-top: -60px;
    position: relative;
    z-index: 20;
}

.features-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header.light .section-title,
.section-header.light .section-subtitle {
    color: var(--white);
}

.section-tag {
    display: inline-block;
    background: rgba(0,102,255,0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

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

.section-disclaimer {
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 8px;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-content {
    padding: 20px;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.card-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.card-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.card-features {
    list-style: none;
    margin-bottom: 15px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray);
    font-size: 0.9rem;
}

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

.btn-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-card:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* About Section */
.about {
    padding: 60px 0;
    background: var(--white);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 500;
}

.about-content .section-tag {
    margin-bottom: 15px;
}

.about-content .section-title {
    text-align: left;
    font-size: 2.2rem;
}

.about-description {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.about-feature {
    display: flex;
    gap: 15px;
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(0,102,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.feature-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.feature-info p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Machine Types */
.machine-types {
    padding: 60px 0;
    background: var(--gradient-3);
}

.types-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.type-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: all 0.3s ease;
}

.type-card:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.type-image {
    width: 100%;
    height: 100%;
}

.type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.type-card:hover .type-image img {
    transform: scale(1.1);
}

.type-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
    color: var(--white);
    z-index: 2;
}

.type-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.type-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Brands Section */
.brands {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
}

.brands-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.brands-track {
    display: flex;
    gap: 30px;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-logo {
    flex-shrink: 0;
    width: 140px;
    height: 70px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.brand-svg {
    width: 100%;
    height: 100%;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Service Areas */
.service-areas {
    padding: 60px 0;
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--light);
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.04);
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.area-item i {
    color: var(--primary);
}

.area-item:hover {
    background: rgba(0,102,255,0.06);
    border-color: rgba(0,102,255,0.2);
    transform: translateY(-3px);
}

/* Process Section */
.process {
    padding: 60px 0;
    background: var(--light);
}

.process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.process-step {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    position: relative;
    flex: 1;
    max-width: 250px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0,102,255,0.1);
    line-height: 1;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

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

.process-connector {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background: var(--gradient-3);
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.testimonial-track {
    display: flex;
    gap: 25px;
    animation: testimonialScroll 30s linear infinite;
    width: max-content;
}

@keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    min-width: 350px;
    max-width: 350px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 25px;
    flex-shrink: 0;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 0.85rem;
}

.testimonial-text {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-info span {
    color: var(--gray-light);
    font-size: 0.8rem;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(0,102,255,0.12);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(0,102,255,0.1);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1rem;
    color: var(--gray-light);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background: var(--white);
}

.contact .section-header {
    margin-bottom: 25px;
}

.contact .section-title {
    font-size: 2.2rem;
    margin-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info .info-card:last-child {
    margin-bottom: 0;
}

.info-card {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: var(--light);
    border-radius: 14px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.info-card:hover {
    transform: translateX(8px);
    background: rgba(0,102,255,0.05);
    border-color: rgba(0,102,255,0.15);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.1rem;
    color: var(--white);
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.info-content p {
    color: var(--gray);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.contact-form h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--light);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0,102,255,0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-about p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a.facebook {
    background: #1877F2;
}

.footer-social a.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.footer-social a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

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

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: var(--gray-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray-light);
}

.contact-list i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    text-align: center;
    color: var(--gray-light);
}

.footer-bottom i {
    color: #ff6b6b;
}

/* Call Float Button */
.call-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 5px 30px rgba(0,102,255,0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: callPulse 2s infinite;
}

@keyframes callPulse {
    0%, 100% { box-shadow: 0 5px 30px rgba(0,102,255,0.4); }
    50% { box-shadow: 0 5px 50px rgba(0,102,255,0.6); }
}

.call-float:hover {
    transform: translateY(-5px) scale(1.05);
}

.call-float i {
    font-size: 1.3rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: var(--white);
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 30px rgba(37,211,102,0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 5px 30px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 5px 50px rgba(37,211,102,0.6); }
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-text {
    display: none;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 30px 0;
    background: #fff8e1;
    border-top: 1px solid #ffe082;
    border-bottom: 1px solid #ffe082;
}

.disclaimer-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 25px;
    background: #fffde7;
    border-radius: 12px;
    border: 1px solid #fff176;
}

.disclaimer-box i {
    color: #f9a825;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.disclaimer-box p {
    margin: 0;
    font-size: 0.9rem;
    color: #5d4037;
    line-height: 1.7;
}

.disclaimer-box strong {
    color: #3e2723;
}

.footer-bottom .footer-disclaimer {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 10px;
    opacity: 0.8;
}

.footer-bottom .footer-business-info {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-top: 8px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .top-bar {
        display: none;
    }
    
    .header {
        top: 0;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow-md);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .nav a {
        display: block;
        padding: 15px 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .btn-call {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .features-strip .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .types-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-grid {
        flex-wrap: wrap;
    }
    
    .process-connector {
        display: none;
    }
    
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .call-float {
        display: flex;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 110px 0 70px;
    }
    
    .hero-content {
        padding: 0 24px;
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .features-strip .container {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }

    .feature-item {
        gap: 12px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
    }

    .feature-icon i {
        font-size: 1.4rem;
    }

    .feature-text p {
        display: none;
    }

    .feature-text h4 {
        font-size: 1rem;
    }
    
    .section-header {
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .types-showcase {
        grid-template-columns: 1fr;
    }
    
    .type-card {
        height: 240px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        gap: 60px;
    }
    
    .about-img-secondary {
        width: 140px;
        height: 140px;
        right: -10px;
        bottom: -20px;
    }
    
    .experience-badge {
        left: -10px;
        padding: 18px;
    }
    
    .exp-number {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .whatsapp-float {
        padding: 16px;
        border-radius: 50%;
    }
    
    .whatsapp-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-strip {
        margin-top: -40px;
    }
    
    .feature-item {
        gap: 15px;
    }
    
    .info-card {
        padding: 14px;
    }
    
    .about-img-main img {
        height: 300px;
    }
    
    .process-step {
        padding: 30px 20px;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
    }
}
