/* =========================================
   Variables & Reset
   ========================================= */
:root {
    --color-primary: #1e293b;
    --color-primary-dark: #0f172a;
    --color-accent: #2563eb;
    --color-accent-hover: #1d4ed8;
    --color-bg-body: #f8fafc;
    --color-bg-light: #f1f5f9;
    --color-white: #ffffff;
    --color-text-main: #334155;
    --color-text-light: #64748B;
    --color-text-muted: #94a3b8;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-blue: 0 10px 25px -5px rgba(37, 99, 235, 0.3);
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 8px;
    --radius-full: 9999px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   Preloader
   ========================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================
   Floating WhatsApp
   ========================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulseWA 2s infinite;
    /* Prevent causing horizontal overflow */
    max-width: calc(100vw - 25px);
}

.floating-whatsapp:hover {
    transform: scale(1.12);
    color: #fff;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulseWA {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
    }
}

/* =========================================
   Utilities
   ========================================= */
.container {
    padding: 0 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.text-accent {
    color: var(--color-accent);
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.sub-heading {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
    display: block;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary-dark);
    letter-spacing: -0.02em;
}

.section-header .line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    margin: 1.5rem auto 3rem auto;
    border-radius: var(--radius-full);
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-accent);
    padding: 0.2rem 0;
    border-radius: 0;
}

.btn-secondary:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.full-width {
    width: 100%;
}

.btn-white-pill,
.btn-light-pill {
    background: #fff;
    color: var(--color-primary-dark);
    padding: 0.6rem 0.6rem 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

.btn-white-pill i,
.btn-light-pill i {
    width: 32px;
    height: 32px;
    background: #0f172a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.btn-white-pill:hover,
.btn-light-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-white-pill:hover i,
.btn-light-pill:hover i {
    transform: scale(1.1);
}

/* =========================================
   NAVIGATION — BULLETPROOF MOBILE
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 1rem 0;
    transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
    padding: 0.6rem 0;
    border-bottom: none;
}

.navbar.scrolled .logo {
    color: var(--color-primary-dark);
}

.navbar.scrolled .logo .logo-icon {
    background: var(--color-primary-dark);
    color: #fff;
}

.navbar.scrolled .nav-links a {
    color: var(--color-text-main);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--color-accent);
}

.navbar.scrolled .hamburger {
    color: var(--color-primary-dark);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.02em;
    white-space: nowrap;
    z-index: 10002;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--color-white);
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* Desktop nav links */
.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-white);
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger — hidden on desktop */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-white);
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    -webkit-tap-highlight-color: transparent;
    z-index: 10002;
    position: relative;
}

/* =========================================
   Hero Section
   ========================================= */
.hero-container {
    position: relative;
}

.hero-wrapper {
    position: relative;
    width: 96%;
    max-width: 1280px;
    margin: 20px auto 0;
    height: 85vh;
    min-height: 600px;
    border-radius: 40px;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background-color: var(--color-primary-dark);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.6) 40%, rgba(15, 23, 42, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 1200px;
    width: 100%;
    padding: 0 5rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-white);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    text-align: left;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--color-white);
    padding: 2rem 4rem;
    border-top-left-radius: 50px;
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 5;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: #e2e8f0;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: -50px;
    right: 0;
    width: 50px;
    height: 50px;
    background: transparent;
    border-bottom-right-radius: 50px;
    box-shadow: 25px 25px 0 var(--color-white);
    z-index: 6;
}

.hero-stats::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50px;
    width: 50px;
    height: 50px;
    background: transparent;
    border-bottom-right-radius: 50px;
    box-shadow: 25px 25px 0 var(--color-white);
    z-index: 6;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.25rem;
    line-height: 1;
    font-weight: 800;
}

.stat-item p {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-text-light);
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0;
}

/* =========================================
   About Section
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background-color: var(--color-white);
    padding: 2rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--color-accent);
    animation: floatBadge 4s ease-in-out infinite;
}

.experience-badge .years {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    line-height: 1.2;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-text-muted);
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about-text h2 {
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.highlights-list {
    margin: 2.5rem 0;
}

.highlights-list li {
    font-size: 1.05rem;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.highlights-list li i {
    margin-right: 15px;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* =========================================
   Services Section
   ========================================= */
.services {
    background-color: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.service-card .card-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.service-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.08);
}

.service-card .icon-box {
    position: absolute;
    bottom: -30px;
    right: 25px;
    width: 65px;
    height: 65px;
    background-color: var(--color-accent);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--color-white);
}

.service-card .card-content {
    padding: 2.5rem 1.5rem 2rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
    font-size: 1.4rem;
}

.service-card ul li {
    color: var(--color-text-light);
    margin-bottom: 0.7rem;
    position: relative;
    padding-left: 18px;
    font-size: 0.95rem;
}

.service-card ul li::before {
    content: '•';
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* =========================================
   Gallery Section
   ========================================= */
.gallery {
    background-color: var(--color-bg-body);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.gallery-item {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item-img {
    height: 220px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
    color: var(--color-primary-dark);
    font-weight: 700;
}

.gallery-info p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.gallery-info p i {
    color: var(--color-accent);
    margin-right: 6px;
}

.gallery-info .price {
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1.15rem;
    margin-top: 10px;
}

/* =========================================
   Testimonials
   ========================================= */
.testimonials {
    background-color: var(--color-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background-color: var(--color-bg-body);
    padding: 3rem 2rem 2.5rem;
    border-radius: var(--radius-xl);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    background-color: var(--color-white);
}

.testimonial-card i.fa-quote-left {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    color: rgba(37, 99, 235, 0.1);
}

.testimonial-card .stars {
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-card p {
    color: var(--color-text-main);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-card .client-info h5 {
    color: var(--color-primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.testimonial-card .client-info span {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 600;
}

/* =========================================
   Contact Section
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    color: var(--color-primary-dark);
}

.contact-info>p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-info .info-item i {
    font-size: 1.1rem;
    margin-right: 1.2rem;
    margin-top: 3px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-info .info-item h5 {
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
    color: var(--color-primary-dark);
    font-weight: 700;
}

.contact-info .info-item span {
    color: var(--color-text-light);
    font-size: 0.95rem;
    word-break: break-word;
}

.contact-form-container {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-form-container h3 {
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-top: 1.5rem;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    display: block;
}

/* =========================================
   Footer
   ========================================= */
footer {
    background-color: var(--color-primary-dark);
    color: #fff;
    padding: 0;
    position: relative;
    margin-top: 100px;
}

.relative-container {
    position: relative;
}

.pre-footer-cta {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #1e293b 100%);
    padding: 3.5rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    top: -80px;
    margin-bottom: -40px;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.cta-content {
    z-index: 2;
}

.cta-content h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 4rem 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    flex: 1;
    padding-right: 3rem;
    min-width: 220px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    width: 34px;
    height: 34px;
    background: var(--color-white);
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 800;
}

.footer-social p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

.footer-columns {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-col {
    min-width: 110px;
}

.footer-col h3 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-col ul li a i {
    font-size: 0.8rem;
}

.footer-bottom {
    background-color: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.footer-bottom a:hover {
    color: var(--color-accent) !important;
}

/* =========================================
   Animations
   ========================================= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-left,
.reveal-right,
.reveal-bottom {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-bottom {
    transform: translateY(50px);
}

.reveal-left.active,
.reveal-right.active,
.reveal-bottom.active {
    opacity: 1;
    transform: translate(0);
}

.reveal-bottom.delay-1 {
    transition-delay: 0.15s;
}

.reveal-bottom.delay-2 {
    transition-delay: 0.3s;
}

.reveal-bottom.delay-3 {
    transition-delay: 0.45s;
}

/* =========================================
   RESPONSIVE: 992px — Tablet
   ========================================= */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    /* === HAMBURGER MENU === */
    .hamburger {
        display: flex !important;
    }

    .btn-light-pill {
        display: none !important;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 10001;
        padding: 0;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links a {
        color: #fff !important;
        font-size: 1.3rem;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links a:hover {
        color: var(--color-accent) !important;
        background: rgba(255, 255, 255, 0.05);
    }

    .nav-links a::after {
        display: none;
    }

    /* Hero */
    .hero-wrapper {
        width: 100%;
        border-radius: 0;
        height: auto;
        min-height: auto;
        margin-top: 0;
    }

    .hero-content {
        padding: 7rem 2rem 4rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.7) 60%, rgba(15, 23, 42, 0.3) 100%);
    }

    .hero-stats {
        position: relative;
        width: 100%;
        border-radius: 0;
        justify-content: space-around;
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .hero-stats::before,
    .hero-stats::after {
        display: none;
    }

    /* Grids */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .experience-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin: -20px auto 0;
        width: fit-content;
    }

    .about-text {
        text-align: center;
    }

    .section-header-left {
        text-align: center;
    }

    .highlights-list li {
        justify-content: center;
    }

    .contact-form-container {
        padding: 2rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
    }

    .footer-brand {
        padding-right: 0;
        margin-bottom: 1.5rem;
    }

    .pre-footer-cta {
        padding: 2.5rem 2rem;
        top: -60px;
        text-align: center;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        justify-content: center !important;
        flex-wrap: wrap;
    }
}

/* =========================================
   RESPONSIVE: 768px — Small Tablet / Large Phone
   ========================================= */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-content {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-stats {
        padding: 1.2rem 0.5rem;
        gap: 0.5rem;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .stat-item p {
        font-size: 0.65rem;
    }

    .stat-divider {
        height: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-columns {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-col {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    footer {
        margin-top: 70px;
    }

    .floating-whatsapp {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        bottom: 16px;
        right: 16px;
    }
}

/* =========================================
   RESPONSIVE: 480px — Mobile Phone
   ========================================= */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section-padding {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .sub-heading {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .hero-wrapper {
        width: 100%;
        margin-top: 0;
        border-radius: 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 5.5rem 1rem 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .btn-white-pill,
    .btn-light-pill {
        font-size: 0.78rem;
        padding: 0.45rem 0.45rem 0.45rem 1.2rem;
        gap: 8px;
    }

    .btn-white-pill i,
    .btn-light-pill i {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.8rem;
        padding: 1.2rem 1rem;
        justify-content: center;
    }

    .stat-item {
        min-width: 0;
        flex: 0 0 auto;
    }

    .stat-item h3 {
        font-size: 1.3rem;
    }

    .stat-item p {
        font-size: 0.6rem;
    }

    .stat-divider {
        width: 1px;
        height: 28px;
    }

    .service-card .card-image {
        height: 180px;
    }

    .gallery-item-img {
        height: 180px;
    }

    .btn {
        font-size: 0.85rem;
        padding: 0.75rem 1.5rem;
    }

    .btn-primary.full-width {
        padding: 0.75rem 1.2rem;
        font-size: 0.85rem;
    }

    .pre-footer-cta {
        padding: 2rem 1.2rem;
        border-radius: 20px;
        top: -45px;
    }

    .cta-content h2 {
        font-size: 1.3rem;
    }

    .cta-content p {
        font-size: 0.85rem;
    }

    .cta-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.75rem !important;
    }

    .logo {
        font-size: 1.1rem;
        gap: 8px;
    }

    .logo-icon {
        width: 26px;
        height: 26px;
        font-size: 0.9rem;
    }

    footer {
        margin-top: 50px;
    }

    .footer-bottom p {
        font-size: 0.7rem;
        padding: 0 0.5rem;
    }

    .contact-form-container {
        padding: 1.5rem 1rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .map-container iframe {
        height: 180px;
    }

    .experience-badge {
        padding: 1.2rem 1.5rem;
        left: auto;
        right: auto;
        position: relative;
        margin: -20px auto 0;
        width: fit-content;
    }

    .experience-badge .years {
        font-size: 1.3rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-card i.fa-quote-left {
        font-size: 2rem;
        top: 1rem;
        right: 1rem;
    }

    .floating-whatsapp {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        bottom: 14px;
        right: 14px;
    }

    #backToTop {
        width: 40px !important;
        height: 40px !important;
        bottom: 14px !important;
        left: 14px !important;
        font-size: 1rem !important;
    }
}