:root {
    --primary: #003567; /* Logo Deep Navy Blue */
    --primary-dark: #002447;
    --secondary: #ff7e00; /* Logo Orange */
    --accent: #f8f9fa;
    --highlight: #ff7e00; /* Logo Orange */
    --text-dark: #0f172a;
    --text-light: #475569;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

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

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

h1, h2, h3, .logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
}

section {
    padding: 120px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* --- STICKY HEADER --- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0;
    transition: var(--transition);
}

.top-bar {
    background: var(--primary);
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--white);
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 2rem;
}

.top-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
}

.top-info a i {
    color: var(--secondary);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    padding: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    flex-wrap: nowrap;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.1rem 0;
    box-shadow: var(--shadow-sm);
}

header.scrolled .nav-link {
    color: var(--text-dark);
}

header.scrolled .logo-text {
    color: var(--primary);
}



.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 90px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: var(--transition);
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-shrink: 0;
}

.nav-link {
    font-weight: 500;
    color: #0c0c0c;
    font-size: 0.95rem;
}

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

.header-cta {
    background: var(--secondary);
    color: var(--white) !important;
    padding: 0.82rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(255, 126, 0, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    background: #e67200;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

header.scrolled .mobile-menu-btn {
    color: var(--primary);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    padding: 160px 0 100px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.3) 100%), url('images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text {
        text-align: center;
    }
    .hero h1 {
        text-align: center;
    }
    .hero-sub {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btns, .hero-trust {
        justify-content: center;
    }
}

.hero-text {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(2.2rem, 8vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero h1 span {
    color: var(--secondary);
}

.hero-sub {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3.5rem;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4.5rem;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
}

.trust-item i {
    color: var(--secondary);
    font-size: 1.5rem;
}

/* --- HERO FORM CARD --- */
.hero-form-card {
    background: var(--white);
    padding: 3.5rem 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
}

.hero-form-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.hero-form-card p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.quick-quote-form .form-group {
    margin-bottom: 1.2rem;
}

.quick-quote-form input {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #edf2f7;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
}

.quick-quote-form input:focus {
    border-color: var(--primary);
    outline: none;
    background: #fff;
}

.form-control:invalid:not(:placeholder-shown) {
    border-color: #e53e3e !important;
}

.form-control:valid:not(:placeholder-shown) {
    border-color: #38a169 !important;
}

.quick-quote-form input:invalid:not(:placeholder-shown) {
    border-color: #e53e3e !important;
}

.quick-quote-form input:valid:not(:placeholder-shown) {
    border-color: #38a169 !important;
}

.btn {
    padding: 1.1rem 2.2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: var(--transition);
    cursor: pointer;
}

.service-link {
    color: var(--secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 0.8rem;
}

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

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

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

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

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* --- ABOUT SECTION --- */
.section {
    padding: 20px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

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

.about-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img img {
    width: 100%;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 30, 61, 0.3);
}

.experience-badge h3 {
    font-size: 2rem;
    line-height: 1;
}

.about-text, .about-content {
    text-align: left;
}

.about-text p, .about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-content li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.about-content li i {
    color: var(--secondary);
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

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

/* --- SERVICES SECTION --- */
.services {
    background-color: var(--accent);
}

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

.service-card {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow-md);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: var(--radius-sm);
    margin: 0 auto 2.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-light);
}

/* --- WHY CHOOSE US --- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.why-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.why-feature-item {
    display: flex;
    gap: 2rem;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.why-feature-item:hover {
    transform: translateX(12px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 55px;
    height: 55px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.why-feature-item:hover .why-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(360deg);
}

.why-feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-family: 'Outfit', sans-serif;
}

.why-feature-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.why-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.why-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    padding: 10px;
}

.stats {
    background: var(--primary);
    padding: 60px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* --- GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 59, 96, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
    gap: 0.8rem;
}

.gallery-overlay i {
    font-size: 2rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-overlay span {
    font-weight: 700;
    font-size: 1.1rem;
    transform: translateY(20px);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i,
.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.areas {
    background: #001a33; /* Darker Blue for depth */
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.areas .section-header h2 {
    color: var(--white);
}

.areas .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.areas .section-tag {
    color: var(--secondary);
}

.areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(13, 138, 158, 0.05), transparent);
    pointer-events: none;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.area-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.area-card i {
    color: var(--secondary);
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.area-card span {
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

.area-card:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.area-card:hover span {
    color: var(--primary-dark);
}

.area-card:hover i {
    background: var(--secondary);
    color: var(--white);
    transform: rotateY(360deg);
}

/* --- TESTIMONIALS --- */
.testimonials {
    background: var(--accent);
    color: var(--text-dark);
}

.testimonials .section-header h2 {
    color: var(--primary-dark);
}

.testimonials .section-tag {
    color: var(--primary);
}

.testimonials-slider {
    position: relative;
    margin: 0 -1rem;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2rem 1rem;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 450px;
    scroll-snap-align: start;
    padding: 4rem 3rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -15px;
    left: 25px;
    font-size: 2rem;
    color: var(--primary);
    background: var(--white);
    padding: 0 10px;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 30, 61, 0.1);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.stars {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.customer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
}

/* --- CONTACT SECTION --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

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

.info-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.info-content p, .info-content a {
    color: var(--text-light);
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf2f7;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 30, 61, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--primary-dark);
}

/* --- FOOTER --- */
footer {
    background: #0f172a;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-desc {
    color: #94a3b8;
    margin-bottom: 2rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
}

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

.footer-links a {
    color: #94a3b8;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 0.9rem;
}

/* --- FLOATING BUTTONS --- */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

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

.btn-whatsapp {
    background: #25d366;
}

.btn-call {
    background: var(--primary);
    display: none; /* Only mobile */
}

/* --- PROCESS --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.process-step h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.process-step p {
    color: var(--text-light);
}

/* --- FAQ --- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.faq-item {
    background: var(--accent);
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.faq-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .hero {
        padding: 140px 0 80px;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        text-align: center;
    }

    .hero h1 span {
        display: inline;
    }

    .hero-sub {
        text-align: center;
        margin: 0 auto 2.5rem;
    }

    .hero-btns, .hero-trust {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 5px 0;
    }

    .top-bar-content {
        justify-content: center;
    }

    .top-info {
        gap: 1rem;
        font-size: 0.75rem;
    }

    .top-info a {
        gap: 0.4rem;
    }

    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        z-index: 1002;
    }

    .header-content {
        padding: 0 0.5rem;
    }

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

    .logo img {
        height: 60px;
    }

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

    .hero-trust {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
        text-align: center;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .trust-item {
        font-size: 1rem;
    }

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

    .hero-form-card {
        padding: 2rem 1.5rem;
    }

    .hero-form-card h3 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .hero-form-card p {
        text-align: center;
    }

    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .about-feature {
        background: var(--accent);
        padding: 1rem;
        border-radius: 12px;
        width: 100%;
        justify-content: center;
    }

    .why-text .btn {
        width: 80%;
        justify-content: center;
    }

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

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .area-card {
        padding: 0.8rem;
    }

    .area-card span {
        font-size: 0.85rem;
    }

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

    .process-step, .faq-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .area-card {
        padding: 1rem;
    }

    .service-card {
        padding: 1.5rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .why-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .why-feature-item {
        padding: 1.2rem;
        gap: 1rem;
    }

    .why-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        margin: 0 auto 1.5rem !important;
        display: block !important;
        width: fit-content;
    }
    
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .btn-call {
        display: flex;
    }

    .contact-info {
        text-align: center;
        align-items: center;
    }
    
    .contact-info p {
        text-align: center;
    }

    .info-card {
        flex-direction: column;
        align-items: center;
        width: 100%;
        background: var(--white);
        padding: 1.5rem;
        border-radius: 16px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }

    .info-content h3 {
        margin-top: 0.5rem;
    }

    .about-text, .about-content, .why-text {
        text-align: center;
        margin-bottom: 2rem;
    }

    .about-text p, .about-content p, .why-text p {
        text-align: justify;
        text-justify: inter-word;
        font-size: 1rem;
        padding: 9px
    }

    .about-content ul {
        display: inline-block;
        text-align: left;
    }

    .about-features {
        align-items: center;
        width: 100%;
    }
    
    .about-content h2, .about-content h3 {
        text-align: center;
    }
    
    .about-content ul {
        display: block;
        text-align: left;
        max-width: fit-content;
        margin: 1.5rem auto;
    }

    .floating-btns {
        bottom: 25px;
        right: 25px;
        z-index: 9999;
    }

    .btn-whatsapp {
        display: flex !important;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
        max-width: 450px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem;
    }

    .testimonial-card::before {
        font-size: 1.5rem;
        left: 15px;
    }

    .slider-nav {
        gap: 1rem;
    }

    .testimonials-track {
        gap: 1rem;
        padding: 1rem 0;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        padding-bottom: 80px; /* Space for floating buttons */
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-form-container {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .service-card p, .process-step p, .faq-item p, .section-header p, .section-title p, .about-content p, .why-text p {
        text-align: center;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-desc {
        text-align: center;
    }
    
    h1, h2, h3, h4, .section-tag {
        text-align: center !important;
        line-height: 1.2;
    }

    .btn, .read-more, .service-link, .header-cta, .nav-btn {
        margin-left: auto !important;
        margin-right: auto !important;
        display: inline-flex !important;
        justify-content: center;
        text-align: center;
        padding: 0.8rem 1.6rem !important;
        font-size: 0.95rem;
        border-radius: 50px;
    }

    .service-link {
        background: rgba(255, 126, 0, 0.1);
        color: var(--secondary) !important;
        border: 1px solid rgba(255, 126, 0, 0.2);
    }

    .about-features {
        justify-content: center;
    }

    .about-feature {
        justify-content: center !important;
        text-align: center;
    }
}

/* Page Header Responsiveness */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 50px !important;
    }

    .page-header h1 {
        font-size: 2.2rem !important;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem !important;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* MOBILE OVERLAY */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    transform: translateX(100%);
}

.mobile-overlay.active {
    transform: translateX(0);
}

.mobile-overlay a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--white);
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    padding: 12px 0;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    color: var(--primary-dark) !important;
    padding: 12px 25px !important;
    text-decoration: none !important;
    display: block !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    text-align: left !important;
    width: 100%;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: var(--accent) !important;
    color: var(--secondary) !important;
    padding-left: 30px !important;
}

/* Mobile Dropdown Styles */
.mobile-nav-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-dropdown-header {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.05);
    width: 100%;
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 10px;
}

.mobile-nav-item.active .mobile-dropdown-content {
    display: flex;
}

.mobile-dropdown-content a {
    font-size: 1.1rem !important;
    padding: 8px 0 !important;
    font-weight: 500 !important;
    opacity: 0.8;
}

.mobile-nav-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-dropdown-header i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.text-orange {
    color: var(--secondary) !important;
}

.text-blue {
    color: var(--primary) !important;
}


