/* ============================================
   VARAHI SEPTIC TANK CLEANERS - STYLESHEET
   ============================================ */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF6B35;
    --dark-orange: #E55A2B;
    --light-orange: #FFF4E6;
    --white: #ffffff;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #f5f5f5;
    --accent: #FF8C42;
    --shadow: rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* ===== VIDEO STYLES ===== */
.video-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: var(--dark-gray);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .video-wrapper {
        padding-bottom: 56.25%;
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
}

h2 {
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow-x: hidden;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
    background: transparent;
}

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

.nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    position: relative;
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray);
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    align-items: center;
    justify-content: center;
}

/* Hide hamburger menu on large screens (above 768px) */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(229, 90, 43, 0.7), rgba(255, 107, 53, 0.7)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23FF6B35" width="1200" height="600"/><path fill="%23E55A2B" d="M0 300 Q300 200 600 300 T1200 300 L1200 600 L0 600 Z"/></svg>') center/cover;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin-top: 60px;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: clamp(1.5rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: clamp(0.9rem, 2.5vw, 1.25rem);
    margin-bottom: 2rem;
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: clamp(0.75rem, 1.5vw, 0.875rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1;
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.btn i {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

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

.btn-primary:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

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

.btn-secondary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.btn-accent:hover {
    background: #008a5a;
    transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    position: relative;
    padding-bottom: 1rem;
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

/* ===== INTRO SECTION ===== */
.intro-section {
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    color: var(--medium-gray);
    line-height: 1.8;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(2rem, 4vw, 3rem);
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin: 1.5rem 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    line-height: 1;
}

.service-icon i {
    display: inline-block;
    vertical-align: middle;
}

.service-card h3 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    padding: 0 1.5rem;
}

.service-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    padding: 0 1.5rem 1.5rem;
    margin-bottom: 0;
}

/* ===== FEATURES SECTION ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--light-orange);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    line-height: 1;
}

.feature-icon i {
    display: inline-block;
    vertical-align: middle;
}

.feature-content h3 {
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--medium-gray);
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-orange);
    opacity: 0.2;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-gray);
}

/* ===== CONTACT SECTION ===== */
.contact-hero {
    min-height: 350px;
    margin-top: 60px;
    padding: 2rem 1rem;
}

.contact-section {
    background: var(--light-gray);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-orange);
    width: 100%;
    box-sizing: border-box;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.info-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--light-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-orange);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.info-card:hover .info-icon-large {
    background: var(--primary-orange);
    color: var(--white);
    transform: scale(1.1);
}

.info-card h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    word-wrap: break-word;
}

.info-card p {
    color: var(--medium-gray);
    margin-bottom: 0;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.email-link {
    color: var(--primary-orange);
    font-size: 1.1rem;
    word-break: break-word;
    display: inline-block;
    max-width: 100%;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--dark-orange);
    text-decoration: underline;
}

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

.info-icon {
    font-size: 1.5rem;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    line-height: 1;
}

.info-icon i {
    display: inline-block;
    vertical-align: middle;
}

/* ===== MAP ===== */
.map-container {
    margin-top: 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .map-container {
        margin-top: 2rem;
        border-radius: 8px;
    }

    .map-container iframe {
        height: 300px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .map-container {
        margin-top: 1.5rem;
        border-radius: 8px;
    }

    .map-container iframe {
        height: 250px;
    }

    .section-title {
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
    }

    .text-center.mt-2 {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }

    .cta-banner {
        padding: 2rem 1.25rem;
        margin: 1.5rem 0;
    }

    .cta-banner h2 {
        font-size: 1.35rem;
    }

    .cta-banner p {
        font-size: 0.95rem;
    }
}

/* ===== SERVING AREAS ===== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.area-tag {
    background: var(--light-orange);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    color: var(--primary-orange);
    font-weight: 500;
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: scale(1.05);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: var(--white);
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    margin: clamp(2rem, 4vw, 3rem) 0;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.cta-banner p {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-banner a {
    word-break: break-word;
}

.cta-btn {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 2.5rem 1.5rem;
        margin: 2rem 0;
        border-radius: 12px;
    }

    .cta-banner h2 {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }

    .cta-banner p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .cta-banner .btn {
        width: 100%;
        min-height: 50px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 2rem 1.25rem;
        margin: 1.5rem 0;
        border-radius: 10px;
    }

    .cta-banner h2 {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .cta-banner p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .cta-banner .btn {
        width: 100%;
        min-height: 50px;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: var(--white);
    padding: 0;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
}

.footer-top-wave {
    height: 60px;
    background: linear-gradient(180deg, var(--light-gray) 0%, transparent 100%);
    position: relative;
    margin-bottom: 3rem;
}

.footer-top-wave::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    position: relative;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: inline-block;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-brand h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.footer-brand p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.social-icon:hover {
    background: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    border-color: var(--primary-orange);
}

.social-icon:nth-child(1):hover { background: #25d366; border-color: #25d366; }
.social-icon:nth-child(2):hover { background: #1877f2; border-color: #1877f2; }
.social-icon:nth-child(3):hover { background: #e4405f; border-color: #e4405f; }
.social-icon:nth-child(4):hover { background: var(--primary-orange); border-color: var(--primary-orange); }

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

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

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact li:hover .contact-icon {
    background: var(--primary-orange);
    color: var(--white);
    transform: scale(1.1);
}

.contact-text {
    flex: 1;
}

.contact-text span,
.contact-text a {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-orange);
}

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

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: #b0b0b0;
    font-size: 0.9rem;
}

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

.footer-credit {
    color: #b0b0b0;
}

.footer-credit a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-credit a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    line-height: 1;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float a {
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.whatsapp-float a i {
    display: inline-block;
    vertical-align: middle;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

/* ===== RESPONSIVE DESIGN ===== */

/* Large screens (1400px and above) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-carousel {
        min-height: 700px;
    }
    
    .services-hero-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* Desktop screens (1024px - 1399px) */
@media (min-width: 1024px) and (max-width: 1399px) {
    .services-hero-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet landscape and small desktop (992px - 1023px) */
@media (min-width: 992px) and (max-width: 1023px) {
    .services-hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet portrait (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-carousel {
        min-height: 550px;
        height: 80vh;
    }
    
    .hero-slide-content {
        padding: 1.5rem;
    }
    
    .hero-slide h1 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .hero-slide p {
        font-size: clamp(0.95rem, 2vw, 1.1rem);
    }
    
    .services-hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section {
        padding: 4rem 2rem;
    }
    
    .section-title {
        font-size: clamp(1.4rem, 3vw, 1.7rem);
    }
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1.5rem 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: clamp(1.3rem, 5vw, 1.75rem);
    }

    .hero p {
        font-size: clamp(0.85rem, 2.5vw, 0.9rem);
    }

    .hero-slide h1 {
        font-size: clamp(1.2rem, 4.5vw, 1.75rem);
    }

    .hero-slide p {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    }

    h1 {
        font-size: clamp(1.3rem, 4vw, 1.75rem);
    }

    h2 {
        font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    }

    .section {
        padding: 2.5rem 1.25rem;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }

    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
        box-sizing: border-box;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        padding-bottom: 0.75rem;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .contact-hero {
        min-height: 300px;
        margin-top: 55px;
        padding: 1.5rem 1rem;
    }

    .contact-hero h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-section {
        padding: 2.5rem 1.5rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
        width: 100%;
    }

    .info-icon-large {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        min-width: 70px;
        min-height: 70px;
        margin-bottom: 1.25rem;
    }

    .info-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.875rem;
    }

    .info-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .email-link {
        font-size: 1rem;
        word-break: break-all;
    }

    .info-card .btn {
        min-height: 50px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        margin-top: 1rem;
    }

    .cta-banner {
        padding: 2.5rem 1.5rem;
        margin: 2rem 0;
    }

    .cta-banner h2 {
        font-size: 1.5rem;
    }

    .cta-banner p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        min-height: 48px;
    }

    .btn {
        width: 100%;
        min-height: 48px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        font-size: 1.5rem;
        min-width: 56px;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-image,
    .service-hero-image {
        height: 180px;
    }

    .feature-icon {
        font-size: 2rem;
        min-width: 50px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1.25rem;
        gap: 1rem;
    }

    .feature-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .feature-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .service-hero-icon {
        font-size: 3rem;
        min-height: 100px;
    }

    .service-image,
    .service-hero-image {
        height: 160px;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-top-wave {
        height: 40px;
        margin-bottom: 2rem;
    }

    .footer-content {
        padding: 0 1.5rem 1.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.5rem 1rem;
        box-sizing: border-box;
    }
    
    .quick-connect {
        right: 15px;
        bottom: 15px;
        max-width: calc(100vw - 30px);
    }
    
    .section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .services-hero-section {
        padding: 3rem 1rem;
    }

    .services-hero-grid {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .service-hero-card {
        max-width: 100%;
        border-radius: 15px;
    }

    .service-hero-card:hover {
        transform: translateY(-10px) scale(1.01);
    }
    
    .service-hero-image {
        height: 200px;
    }

    .service-hero-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        top: 12px;
        right: 12px;
    }
    
    .service-hero-content {
        padding: 1.75rem 1.25rem;
    }
    
    .service-hero-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.875rem;
    }
    
    .service-hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .service-hero-link {
        padding: 0.7rem 1.5rem;
        font-size: 0.875rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 35px;
    }

    .hero {
        min-height: 500px;
        padding: 1rem;
    }

    .hero h1 {
        font-size: 1.1rem;
    }

    .hero p {
        font-size: 0.8rem;
    }

    .hero-carousel {
        min-height: 450px;
        height: 65vh;
        margin-top: 55px;
    }

    .hero-slide {
        background-attachment: scroll;
    }

    .hero-slide-content {
        padding: 1rem;
        max-width: 100%;
    }

    .hero-slide h1 {
        font-size: clamp(1rem, 4vw, 1.3rem);
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .hero-slide p {
        font-size: clamp(0.75rem, 2vw, 0.9rem);
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .hero-slide p:last-of-type {
        font-size: clamp(0.7rem, 1.8vw, 0.85rem);
        display: block; /* Show description but make it smaller */
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        min-height: 48px;
    }

    .carousel-controls {
        bottom: 15px;
        gap: 8px;
        padding: 0.5rem;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(8px);
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
        border-width: 2px;
        min-width: 10px;
        min-height: 10px;
    }

    .carousel-dot.active {
        width: 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .stat-label {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-section {
        padding: 2.5rem 1.25rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .testimonial-card-enhanced {
        padding: 2rem 1.5rem;
    }

    .hero-carousel {
        min-height: 500px;
        height: 70vh;
    }

    .hero-slide {
        background-attachment: scroll;
    }

    .hero-slide-content {
        padding: 1rem;
        max-width: 100%;
    }

    .hero-slide h1 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
        line-height: 1.3;
    }

    .hero-slide p {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
        line-height: 1.4;
    }

    .hero-slide p:last-of-type {
        font-size: 0.65rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }

    .carousel-controls {
        bottom: 20px;
        gap: 8px;
        padding: 0.4rem;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
        border-width: 1.5px;
    }

    .carousel-dot.active {
        width: 25px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .services-hero-section {
        padding: 4rem 1.5rem;
    }

    .services-hero-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .service-hero-card {
        max-width: 100%;
        width: 100%;
    }
    
    .service-hero-image {
        height: clamp(180px, 40vw, 220px);
    }

    .service-hero-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        top: 15px;
        right: 15px;
    }
    
    .service-hero-content {
        padding: 2rem 1.5rem;
    }
    
    .service-hero-content h3 {
        font-size: 1.2rem;
    }
    
    .service-hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .service-hero-link {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
    }

    .quick-connect {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .quick-connect-btn {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
        min-width: 56px;
        min-height: 56px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .logo-img {
        height: 40px;
    }

    .info-icon {
        font-size: 1.2rem;
        min-width: 25px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
    }

    .footer-column h4 {
        font-size: 1.1rem;
    }

    .footer-top-wave {
        height: 30px;
        margin-bottom: 1.5rem;
    }

    .footer-content {
        padding: 0 1rem 1rem;
    }

    .footer-bottom {
        padding: 1.25rem 1rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .footer-logo {
        padding: 0.75rem 1.25rem;
    }

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

    .testimonial-section {
        padding: 2.5rem 1rem;
    }

    .testimonials-grid {
        gap: 1.25rem;
        margin-top: 1.5rem;
    }

    .testimonial-card-enhanced {
        padding: 1.75rem 1.25rem;
    }

    .testimonial-text-enhanced {
        font-size: 0.9rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    .testimonial-text-enhanced::before {
        font-size: 2.5rem;
        left: -5px;
        top: -10px;
    }

    .stars {
        font-size: 1rem;
        margin-bottom: 1rem;
        letter-spacing: 2px;
    }

    .testimonial-service {
        font-size: 0.7rem;
    }

    .testimonial-author-enhanced {
        font-size: 0.9rem;
    }
}

@media (max-width: 425px) {
    .features-grid {
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        gap: 1rem;
        background: var(--white);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        border-left: 4px solid var(--primary-orange);
        border-radius: 8px;
    }

    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.15);
        background: var(--white);
    }

    .feature-icon {
        font-size: 2.25rem;
        min-width: auto;
        width: 70px;
        height: 70px;
        margin: 0 auto;
        background: var(--light-orange);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .feature-icon i {
        color: var(--primary-orange);
    }

    .feature-content {
        width: 100%;
    }

    .feature-content h3 {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
        font-weight: 600;
        color: var(--dark-gray);
    }

    .feature-content p {
        font-size: 0.875rem;
        line-height: 1.6;
        color: var(--medium-gray);
        text-align: left;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 360px) {
    .testimonial-section {
        padding: 2rem 0.75rem;
    }

    .features-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .feature-item {
        padding: 1.25rem 0.875rem;
        gap: 0.875rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .feature-content h3 {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }

    .feature-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .testimonials-grid {
        gap: 1.25rem;
        margin-top: 1.5rem;
    }

    .testimonial-card-enhanced {
        padding: 1.75rem 1.25rem;
    }

    .testimonial-text-enhanced {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .testimonial-text-enhanced::before {
        font-size: 2.5rem;
        left: -5px;
        top: -10px;
    }

    .stars {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .testimonial-service {
        font-size: 0.7rem;
    }

    .testimonial-author-enhanced {
        font-size: 0.9rem;
    }

    .footer-main {
        gap: 2rem;
    }

    .footer-links-section {
        gap: 1.5rem;
    }

    .footer-brand h3 {
        font-size: 1.2rem;
    }

    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links a,
    .contact-text span,
    .contact-text a {
        font-size: 0.85rem;
    }

    .footer-top-wave {
        height: 25px;
        margin-bottom: 1.25rem;
    }

    .footer-content {
        padding: 0 0.75rem 1rem;
    }

    .footer-bottom {
        padding: 1rem 0.75rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .footer-logo {
        padding: 0.75rem 1rem;
    }

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

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
        min-width: 40px;
        min-height: 40px;
    }

    .contact-hero {
        min-height: 280px;
        margin-top: 55px;
        padding: 1.25rem 0.75rem;
    }

    .contact-hero h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .contact-hero p {
        font-size: 0.95rem;
    }

    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-info-grid {
        gap: 1.25rem;
        margin-top: 1.5rem;
    }

    .info-card {
        padding: 1.75rem 1.25rem;
        width: 100%;
    }

    .info-icon-large {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        margin-bottom: 1rem;
        min-width: 65px;
        min-height: 65px;
    }

    .info-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .info-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .email-link {
        font-size: 0.9rem;
        word-break: break-all;
        line-height: 1.5;
    }

    .info-card .btn {
        min-height: 50px;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        width: 100%;
        margin-top: 0.875rem;
    }
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: clamp(500px, 80vh, 600px);
    margin-top: 60px;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

@media (max-width: 768px) {
    .hero-slide {
        background-attachment: scroll;
    }
    
    .hero-carousel {
        min-height: clamp(450px, 70vh, 550px);
    }
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-content {
    max-width: 900px;
    text-align: center;
    color: var(--white);
    padding: clamp(1rem, 3vw, 2rem);
    z-index: 2;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.hero-slide h1 {
    font-size: clamp(1.2rem, 4.5vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
    line-height: 1.3;
}

.hero-slide p {
    font-size: clamp(0.85rem, 2.2vw, 1.2rem);
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-overlay {
        background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55));
    }
}

@media (max-width: 480px) {
    .hero-overlay {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
    }
}

.carousel-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(5px);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.carousel-dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
    background: var(--primary-orange);
    color: var(--white);
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
    max-width: 1200px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-label {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
}

/* ===== WORK PROCESS SECTION ===== */
.process-section {
    background: var(--light-gray);
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
    margin-top: clamp(2rem, 4vw, 3rem);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-item {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.process-number {
    display: inline-flex;
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    align-items: center;
    justify-content: center;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1;
    margin-left: auto;
    margin-right: auto;
}

.process-item h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.process-item p {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* ===== ENHANCED SERVICES SECTION ===== */
.services-hero-section {
    padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 3vw, 2rem);
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 50%, #f8f9fa 100%);
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.services-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--dark-orange) 50%, var(--primary-orange) 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

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

.services-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: clamp(2rem, 5vw, 4rem);
    justify-items: center;
    align-items: stretch;
}

.service-hero-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    position: relative;
    border: 2px solid transparent;
}

.service-hero-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange), var(--primary-orange));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-hero-card:hover::after {
    opacity: 1;
}

.service-hero-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.25);
}

.service-hero-image {
    width: 100%;
    height: clamp(200px, 30vw, 240px);
    overflow: hidden;
    position: relative;
}

.service-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 107, 53, 0) 0%, rgba(255, 107, 53, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-hero-card:hover .service-hero-image::before {
    opacity: 1;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-hero-card:hover .service-hero-image img {
    transform: scale(1.2) rotate(2deg);
}

.service-hero-icon {
    position: absolute;
    top: clamp(15px, 2.5vw, 20px);
    right: clamp(15px, 2.5vw, 20px);
    width: clamp(55px, 9vw, 70px);
    height: clamp(55px, 9vw, 70px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary-orange);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(255, 107, 53, 0.2);
}

.service-hero-card:hover .service-hero-icon {
    transform: scale(1.15) rotate(360deg);
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: var(--white);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
    border-color: var(--white);
}

.service-hero-icon i {
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.service-hero-content {
    padding: 2.5rem 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.service-hero-content h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

.service-hero-card:hover .service-hero-content h3 {
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.service-hero-content p {
    color: var(--medium-gray);
    margin-bottom: 1.75rem;
    line-height: 1.8;
    text-align: center;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    flex-grow: 1;
}

.service-hero-link {
    color: var(--white);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 0 auto;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.service-hero-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.service-hero-link:hover::before {
    left: 100%;
}

.service-hero-link:hover {
    gap: 1rem;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.service-hero-link:active {
    transform: translateY(0);
}

/* ===== ENHANCED TESTIMONIALS ===== */
.testimonial-section {
    background: var(--light-gray);
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(2rem, 4vw, 3rem);
}

.testimonial-card-enhanced {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-orange);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

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

.testimonial-service {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    display: inline-block;
}

.stars {
    color: #ffc107;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    letter-spacing: 3px;
}

.testimonial-text-enhanced {
    color: var(--dark-gray);
    font-size: clamp(0.9rem, 2.2vw, 1.05rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    padding: 0 1rem;
}

.testimonial-text-enhanced::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-orange);
    opacity: 0.2;
    position: absolute;
    left: -10px;
    top: -15px;
    font-family: Georgia, serif;
}

.testimonial-author-enhanced {
    font-weight: 700;
    color: var(--dark-gray);
    font-size: 1rem;
    margin-top: 1rem;
}


/* ===== QUICK CONNECT SECTION ===== */
.quick-connect {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    max-width: calc(100vw - 60px);
}

.quick-connect-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
    min-width: 60px;
    min-height: 60px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.quick-connect-btn i {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.quick-connect-btn:hover {
    transform: scale(1.1);
}

.quick-connect-call {
    background: var(--primary-orange);
}

.quick-connect-email {
    background: #6c757d;
}

.quick-connect-whatsapp {
    background: #25d366;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

