/* =========================================
   1. MODERN FONTS & RESET
   ========================================= */
/* Importing Inter (Body) and Manrope (Headings) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Manrope:wght@400;500;700;800&display=swap');

/* ======== ROOT VARIABLES (UPDATED TO MOVE N PACK BRAND) ======== */
:root {
    /* Brand Colors (Updated) */
    --bg: #1E2D34;      /* Deep Slate / Gunmetal */
    --accent: #FB9B1D;  /* Brand Orange */
    --accent-hover: #E0860E; /* Darker Orange for hover */
    
    /* Modern Neutrals */
    --muted: #64748B;   /* Professional Gray */
    --text-light: #F8FAFC; 
    --text-dark: #334155; 
    --bg-light: #F1F5F9; /* Soft Gray-Blue Background */
    
    --header-height: 70px;
    --header-height-scrolled: 60px;
    
    /* Modern Radius & Shadows */
    --radius: 12px;
    --shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    /* CHANGED: Modern Font */
    font-family: "Inter", sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    /* CHANGED: Modern Heading Font */
    font-family: "Manrope", sans-serif;
    line-height: 1.2;
    font-weight: 800;
    color: var(--bg);
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.35rem; }

ul { list-style: none; }

a {
    text-decoration: none;
    color: var(--accent);
    transition: color 0.3s ease;
}
a:hover { color: var(--accent-hover); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ======== UTILITY & REUSABLE CLASSES ======== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.section {
    padding: 5rem 0; /* Increased padding slightly for modern look */
}

.section__title {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    color: var(--bg);
}
.section__title_center {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}
.section__subtitle_center {
    text-align: center;
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* BUTTONS - Modernized with Pill shape and Shadow */
.button {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px; /* Modern Pill Shape */
    font-weight: 700;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: "Manrope", sans-serif;
}

.button--primary {
    background-color: var(--accent);
    color: #fff; /* White text on Orange */
    box-shadow: 0 4px 10px rgba(251, 155, 29, 0.3); /* Orange Glow */
}
.button--primary:hover {
    background-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-3px); /* Floating effect */
    box-shadow: 0 8px 15px rgba(251, 155, 29, 0.4);
}

.button--secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent);
    padding: 15px 70px;
}
.button--secondary:hover {
    background-color: var(--accent);
    color: #fff;
}
/* Inverted for light bg */
.form-section .button--secondary,
.cta .button--secondary {
    color: var(--accent);
    border-color: var(--accent);
}
.form-section .button--secondary:hover,
.cta .button--secondary:hover {
    background-color: var(--accent);
    color: #fff;
}


.button--large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}
.button--full-width {
    width: 100%;
    border-radius: var(--radius);
}

.form__label-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.form__honeypot {
    position: absolute;
    left: -5000px;
    visibility: hidden;
}

/* Simple Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .button,
    .header {
        transition: none;
    }
}


/* ======== HEADER & NAV ======== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--bg);
    color: var(--text-light);
    height: var(--header-height);
    transition: height 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header.scrolled {
    height: var(--header-height-scrolled);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
}
.nav__logo svg {
    height: 35px; /* Control height */
    width: auto;
    transition: height 0.3s ease;
}
.header.scrolled .nav__logo svg {
    height: 30px;
}

.nav__menu {
    display: flex;
}
.nav__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.nav__link {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}
.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.nav__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}
.nav__phone svg {
    stroke: var(--accent);
}
.nav__phone:hover {
    color: var(--accent);
}

.nav__contact_mobile { display: none; }
.nav__toggle, .nav__close {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}


/* ======== HERO ======== */
.hero {
    position: relative;
    height: calc(100vh - var(--header-height));
    min-height: 600px;
    background-image: url('/images/bg.webp'); /* Keep your path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    display: flex;
    align-items: center;
}
.hero__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Updated Overlay Color to Slate */
    background-color: rgba(30, 45, 52, 0.85); 
}
.hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: center;
    gap: 2rem;
}
.hero__title {
    font-size: 3.25rem;
    font-weight: 800; /* Modern Bold */
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 550px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    color: #E2E8F0;
}
.hero__cta-buttons {
    display: flex;
    gap: 1rem;
}

/* Hero Form - Modernized */
.hero__form-container {
    background: rgba(255, 255, 255, 1);
    padding: 2rem;
    border-radius: var(--radius); /* Rounded */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); /* Deep Shadow */
}
.hero__form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--bg);
}
.hero__form .form__group {
    margin-bottom: 1rem;
}
.hero__form input,
.hero__form select {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #ccc;
    border-radius: 8px; /* Rounded Inputs */
    font-size: 1rem;
    background-color: #F8FAFC;
}
.hero__form input:focus, .hero__form select:focus {
    outline: none;
    border-color: var(--accent);
    background-color: #fff;
}
.hero__form .form__note {
    font-size: 0.85rem;
    text-align: center;
    color: var(--muted);
    margin-top: 1rem;
}

/* ======== BENEFITS ======== */
.benefits {
    background-color: #ffffff;
}
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.benefit__item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius); /* Rounded */
    transition: transform 0.3s ease;
}
.benefit__item:hover {
    transform: translateY(-5px);
}
.benefit__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    color: var(--accent);
}
.benefit__item h3 {
    margin-bottom: 0.5rem;
     font-size:1.2rem;
}
.benefit__item p {
    color: var(--muted);
}

/* ======== SERVICES ======== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.service__card {
    border: none; /* Removed border for modern look */
    border-radius: var(--radius);
    padding: 2.5rem;
    background: #fff;
    box-shadow: var(--shadow); /* Soft Shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Deeper shadow on hover */
}
.service__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    color: var(--accent);
}
.service__title {
    margin-bottom: 0.5rem;
}
.service__description {
    color: var(--muted);
    margin-bottom: 1rem;
}
.service__link {
    font-weight: 700;
}

/* ======== PROCESS ======== */
.process {
    background-color: var(--bg);
    color: var(--text-light);
}
.process .section__title_center,
.process .section__subtitle_center {
    color: var(--text-light);
}
.process .section__subtitle_center {
    color: #ccc;
}
.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
/* Dashed line connector */
.process__grid::before {
    content: '';
    position: absolute;
    top: 20px; 
    left: 10%;
    width: 80%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--muted), var(--muted) 6px, transparent 6px, transparent 12px);
    z-index: 0;
}
.process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}
.process__number {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--accent);
    margin: 0 auto 1rem auto;
    background-color: var(--bg);
}
.process__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    background: var(--accent);
    padding: 15px;
    border-radius: 50%;
    color: var(--accent);
}
.process__step h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* ======== GALLERY ======== */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.gallery__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.gallery__item img {
    transition: transform 0.4s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.gallery__item::after {
    content: 'View+';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 45, 52, 0.7);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery__item:hover img {
    transform: scale(1.05);
}
.gallery__item:hover::after {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 45, 52, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.lightbox.active {
    display: flex;
}
.lightbox__content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
}
.lightbox__image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
}
.lightbox__caption {
    color: var(--text-light);
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
}
.lightbox__close, .lightbox__prev, .lightbox__next {
    position: absolute;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover {
    color: var(--accent);
}
.lightbox__close {
    top: 1rem;
    right: 2rem;
}
.lightbox__prev {
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
}
.lightbox__next {
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}


/* ======== TESTIMONIALS ======== */
.reviews {
    background-color: #f9f9f9;
}
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}
.testimonial-slider__wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.testimonial-slider__slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 2rem 3rem;
    text-align: center;
}
.testimonial-slider__slide p {
    font-family: "Manrope", sans-serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--muted);
    margin-bottom: 1rem;
}
.testimonial-slider__slide .stars {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.testimonial-slider__slide .author {
    font-weight: 600;
    color: var(--bg);
}

.slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}
.slider__arrow:hover {
    background: var(--accent);
    color: var(--text-light);
}
.slider__arrow--prev { left: 0; }
.slider__arrow--next { right: 0; }

.testimonial-slider__dots {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}
.slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    margin: 0 0.5rem;
    transition: background 0.3s ease;
}
.slider__dot.active {
    background: var(--accent);
}

/* ======== ABOUT / TRUST ======== */
.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}
.about__text p {
    margin-bottom: 1rem;
    color: var(--muted);
}
.about__badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.badge {
    background: #fff;
    border: 1px solid #eee;
    padding: 1.5rem;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.badge__value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}
.badge__label {
    font-weight: 600;
    color: var(--muted);
}

/* ======== MAIN FORM SECTION ======== */
.form-section {
    background-color: var(--bg-light);
}
.form-section__container {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 3rem;
    background-color: #fff;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.form-section__text .section__title {
    margin-bottom: 1rem;
}
.form-section__text p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}
.form-section__text h3 {
    margin-bottom: 0.5rem;
}
.form-section__phone {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--bg);
}
.form-section__phone:hover {
    color: var(--accent);
}

/* Main Form */
.main-form .form__group {
    margin-bottom: 1.25rem;
}
.main-form .form__label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.main-form input[type="text"],
.main-form input[type="tel"],
.main-form input[type="email"],
.main-form input[type="date"],
.main-form select,
.main-form textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #ccc;
    border-radius: 8px; /* Rounded */
    font-size: 1rem;
    font-family: inherit;
    background: #F8FAFC;
}
.main-form textarea {
    resize: vertical;
}
.main-form .form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.main-form .form__error-message {
    color: #d93025;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}
.main-form .form__group.invalid input,
.main-form .form__group.invalid select,
.main-form .form__group.invalid textarea {
    border-color: #d93025;
}
.main-form .form__group.invalid .form__error-message {
    display: block;
}

.form__status {
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}
.form__status.success { color: #1e8e3e; }
.form__status.error { color: #d93025; }


/* ======== FAQ ======== */
.faq {
    background-color: var(--bg);
    color: var(--text-light);
}
.faq .section__title_center {
    color: var(--text-light);
}
.faq__container {
    max-width: 800px;
}
.faq__item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.faq__question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    text-align: left;
    font-family: "Manrope", sans-serif;
}
.faq__icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.faq__answer p {
    padding-bottom: 1.5rem;
    color: #ccc;
    line-height: 1.7;
}

.faq__item.active .faq__answer {
    max-height: 300px; /* Adjust as needed */
}
.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

/* ======== CTA BANNER ======== */
.cta {
    background: linear-gradient(135deg, var(--accent) 0%, #E0860E 100%);
    color: var(--bg);
    text-align: center;
}
.cta h2 {
    font-size: 2.25rem;
    color: var(--bg);
    margin-bottom: 0.5rem;
}
.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.cta .button--primary {
    background-color: var(--bg);
    color: var(--text-light);
    box-shadow: none;
}
.cta .button--primary:hover {
    background-color: #0F172A;
    color: var(--text-light);
}
.cta .button--secondary {
    border-color: var(--bg);
    color: var(--bg);
}
.cta .button--secondary:hover {
    background-color: var(--bg);
    color: var(--text-light);
}

/* ======== FOOTER ======== */
.footer {
    background-color: var(--bg);
    color: #ccc;
    padding-top: 4rem;
}
.footer__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
}
.footer__col h3 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}
.footer__col--about p {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 300px;
}
.footer__logo svg {
    height: 35px;
    width: auto;
}
.footer__socials {
    display: flex;
    gap: 1rem;
}
.footer__socials img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.footer__socials a:hover img {
    opacity: 1;
}

.footer__col ul li {
    margin-bottom: 0.75rem;
}
.footer__col ul a {
    color: #ccc;
}
.footer__col ul a:hover {
    color: var(--accent);
    padding-left: 4px;
}
.footer__col p {
    margin-bottom: 0.75rem;
}
.footer__contact-link {
    color: #ccc;
    word-break: break-word;
}
.footer__contact-link:hover {
    color: var(--accent);
}
.footer__contact-link strong {
    color: var(--text-light);
}

.footer__bottom {
    border-top: 1px solid var(--muted);
    margin-top: 2rem;
    padding: 1.5rem 0;
}
.footer__bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--muted);
}
.footer__bottom a {
    color: var(--muted);
}
.footer__bottom a:hover {
    color: var(--accent);
}
    /* Content Layout Flip */
    .about-visual-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr; 
        align-items: center;
        gap: 4rem;
    }

    /* Image styling for the left side */
    .about__image-container img {
        width: 100%;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        object-fit: cover;
        height: auto;
    }

    .about__badges-horizontal {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .about__list {
        margin-top: 1.5rem;
        list-style: none;
    }

    .about__list li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.75rem;
        color: var(--muted);
    }

    .about__list li::before {
        content: '✔';
        position: absolute;
        left: 0;
        color: var(--accent);
        font-weight: bold;
    }

    /* Map & Contact Card Wrapper */
    .location-wrapper {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    .contact-card {
        background: #fff;
        padding: 2.5rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        border-left: 5px solid var(--accent);
    }

    .contact-card h3 {
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .map-embed {
        width: 100%;
        height: 450px;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        border: 1px solid #e2e8f0;
    }

    @media (max-width: 992px) {
        
    }

.float{font-weight:600;vertical-align:middle;padding:16px;position:fixed;    bottom: 20px;
    left: 20px;background-color:#FFA526;color:#FFF;border-radius:50%;text-align:center;font-size:10px;z-index:99;border:1px solid #fff;transition:transform 0.3s ease-in-out; animation: pulse 2s infinite;
    }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(247, 159, 26, 0.7); } 70% { box-shadow: 0 0 0 20px rgba(247, 159, 26, 0); } 100% { box-shadow: 0 0 0 0 rgba(247, 159, 26, 0); } }

    
.my-float{width:30px;height:25px;animation:shake 1s infinite;rotate:90deg}
@keyframes shake{0%{transform:rotate(0deg)}
25%{transform:rotate(10deg)}
50%{transform:rotate(-10deg)}
75%{transform:rotate(10deg)}
100%{transform:rotate(0deg)}
}
/* ======== RESPONSIVE ======== */

/* Tablet */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__text {
        margin-bottom: 2rem;
    }
    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero__cta-buttons {
        justify-content: center;
    }
    .hero__form-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .process__grid {
        grid-template-columns: 1fr 1fr;
    }
    .process__grid::before { display: none; }

    .about__container {
        grid-template-columns: 1fr;
    }
    .about__badges {
        margin-top: 2rem;
    }

    .form-section__container {
        grid-template-columns: 1fr;
    }
    .form-section__text {
        text-align: center;
    }
    .about-visual-grid, .location-wrapper {
            grid-template-columns: 1fr;
        }
        .contact-card {
            order: 2;
        }
        .map-embed {
            order: 1;
            height: 300px;
        }
.about-visual-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .about__image-container {
            order: 1; /* Image stays on top in mobile */
        }
        .about__text {
            order: 2;
        }
    .footer__container {
        grid-template-columns: 1fr 1fr;
    }
    .footer__col--about {
        grid-column: 1 / 3;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: flex-start;
    }
}

/* Mobile */
@media (max-width: 767px) {
    h1 { font-size: 2.25rem; }
    h2, .section__title, .section__title_center { font-size: 1.75rem; }
    .hero__title { font-size: 2.5rem; }

    .section { padding: 3rem 0; }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh; 
        background-color: var(--bg);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        transition: right 0.4s ease-in-out;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 9999;
        padding: 2rem 1rem;
    }
    .footer__bottom {
        padding-bottom: 5rem;
    }

    .nav__menu.is-active {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: 2rem;
        margin-top: 10%
    }
    .nav__link {
        font-size: 1.25rem;
    }
    .nav__close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        font-size: 2.5rem;
    }
    .nav__toggle {
        display: block;
        font-size: 1.5rem;
    }
    .nav__phone { display: none; }
    .nav__cta { display: none; }
    .nav__contact_mobile { display: block; }
    
    .hero {
        height: auto;
        padding: 4rem 0;
    }
    .hero__content {
        padding-top: 2rem;
    }
    .hero__cta-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    .hero__form-container {
        padding: 1.5rem;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
    }
    .services__grid {
        grid-template-columns: 1fr;
    }
    .process__grid {
        grid-template-columns: 1fr;
    }
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
    .testimonial-slider__slide {
        padding: 1rem;
    }
    .slider__arrow {
        top: 40%;
    }
   
    .main-form .form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .main-form .form__row .form__group:first-child {
        margin-bottom: 1.25rem;
    }

    .footer__container {
        grid-template-columns: 1fr;
        /*text-align: center;*/
    }
    .footer__col--about p {
        margin-left: auto;
        margin-right: auto;
    }
    .footer__socials {
        justify-content: center;
    }
    .footer__bottom-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    /* Sticky Mobile Bar */
    .mobile-sticky-bar {
        display: flex;
    }
}
/* Dropdown menu styles */
.dropdown {
    position: relative;
    text-align: center;
    width: 100%;
}

.dropdown__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a272d;
    min-width: 200px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    margin-top: 8%;
}

.dropdown__menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown__menu li:last-child {
    border-bottom: none;
}

.dropdown__link {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown__link:hover {
    background: var(--accent);
    color: #000;
}

/* Show dropdown on hover (desktop) */
@media (min-width: 769px) {
    .dropdown:hover > .dropdown__menu {
        display: block;
    }
}
@media (max-width: 525px){
        .footer__col--about {
        text-align: center;
                align-items: center;
        align-content: center;
    }
}
/* Mobile dropdown toggle */
@media (max-width: 768px) {
    .dropdown__menu {
        position: static;
        box-shadow: none;
        background: #1a272d;
        border-radius: 0;
        border-radius: 5px;
        margin-inline: 2%;
    }
    .dropdown__menu.show {
        display: block;
        margin-top: 5%;
    }
}