/* ========================================
   CSS VARIABLES & RESET
======================================== */
:root {
    --deep-blue: #003366;
    --black: #000000;
    --white: #FFFFFF;
    --grey-light: #f5f5f5;
    --grey-medium: #e0e0e0;
    --grey-dark: #666666;
    --orange: #ff6b00;
    --orange-light: #ff8c00;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   SKIP LINK (Accessibility)
======================================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--deep-blue);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    z-index: 10000;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

/* ========================================
   FOCUS STYLES (Accessibility)
======================================== */
:focus-visible {
    outline: 3px solid var(--deep-blue);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--deep-blue);
    outline-offset: 2px;
}

/* ========================================
   EMERGENCY BANNER
======================================== */
.emergency-banner {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    text-align: center;
}

.emergency-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.emergency-banner-content a {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.emergency-banner-icon {
    font-size: 1.1rem;
}

.emergency-banner-text {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.emergency-banner-phone {
    background-color: rgba(255, 255, 255, 0.25);
    padding: 4px 16px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.emergency-banner-phone:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.emergency-dismiss {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    line-height: 1;
    transition: var(--transition);
}

.emergency-dismiss:hover {
    color: var(--white);
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
header {
    background-color: var(--white);
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease;
}

header.banner-dismissed {
    top: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--grey-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--deep-blue);
    border-radius: 2px;
    transition: var(--transition);
}

nav ul {
    display: flex;
    gap: 35px;
}

nav a {
    font-weight: 500;
    color: var(--black);
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--deep-blue);
    transition: var(--transition);
}

nav a:hover {
    color: var(--deep-blue);
}

nav a:hover::after {
    width: 100%;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #001a33 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 125px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.02) 50px,
            rgba(255, 255, 255, 0.02) 51px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.02) 50px,
            rgba(255, 255, 255, 0.02) 51px
        );
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero h1 span {
    color: rgba(255, 255, 255, 0.7);
}

.hero-subheadline {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 5px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--grey-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--deep-blue);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.2rem;
}

/* ========================================
   TRUSTED BY BANNER
======================================== */
.trusted-banner {
    background-color: #2a2a2a;
    padding: 30px 0;
}

.trusted-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.trusted-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
}

.trusted-logos span {
    opacity: 0.8;
    transition: var(--transition);
}

.trusted-logos span:hover {
    opacity: 1;
}

.trusted-logo-img {
    height: 70px;
    width: auto;
    background-color: white;
    padding: 10px 15px;
    border-radius: 8px;
    transition: var(--transition);
}

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

.trusted-divider {
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   SERVICES SECTION
======================================== */
.services {
    padding: 100px 0;
    background-color: var(--grey-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--deep-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 20px;
}

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

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

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-card.featured {
    border: 3px solid var(--deep-blue);
}

.service-image {
    height: 220px;
    background-color: var(--grey-medium);
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--deep-blue);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-content {
    padding: 35px;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--grey-dark);
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--black);
}

.service-features li::before {
    content: '\2713';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--deep-blue);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ========================================
   FAQ SECTION
======================================== */
.faq {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--grey-light);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    cursor: pointer;
    gap: 15px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
    flex: 1;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background-color: var(--deep-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 22px;
    color: var(--grey-dark);
    line-height: 1.8;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
    padding: 100px 0;
    background-color: var(--grey-light);
}

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

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 25px;
}

.about-content h2 span {
    color: var(--deep-blue);
}

.about-intro {
    font-size: 1.15rem;
    color: var(--grey-dark);
    margin-bottom: 40px;
    line-height: 1.8;
}

.team-member {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.team-member:hover {
    background-color: var(--deep-blue);
}

.team-member:hover .member-icon,
.team-member:hover h4,
.team-member:hover p {
    color: var(--white);
}

.team-member:hover .member-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.member-icon {
    width: 60px;
    height: 60px;
    background-color: var(--deep-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    transition: var(--transition);
}

.member-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
    transition: var(--transition);
}

.member-info p {
    font-size: 0.95rem;
    color: var(--grey-dark);
    line-height: 1.6;
    transition: var(--transition);
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px 40px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.trust-signal-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.trust-signal p {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.5;
}

.trust-signal p strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--deep-blue);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.experience-badge .number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   GALLERY SECTION
======================================== */
.gallery {
    padding: 100px 0;
    background-color: var(--white);
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px 20px;
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

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

.gallery-overlay h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Before/After Slider */
.ba-slider {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
}

.ba-slider img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.ba-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.ba-before img {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    max-width: none;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--white);
    transform: translateX(-50%);
    z-index: 3;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.ba-handle::after {
    content: '\2194';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--deep-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ba-label {
    position: absolute;
    top: 15px;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    z-index: 2;
}

.ba-label-before {
    left: 15px;
    background-color: rgba(0, 0, 0, 0.6);
}

.ba-label-after {
    right: 15px;
    background-color: var(--deep-blue);
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials {
    padding: 100px 0;
    background-color: var(--grey-light);
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--grey-dark);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    color: var(--grey-medium);
    opacity: 0.5;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--grey-medium);
    padding-top: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--deep-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
}

.testimonial-author-info p {
    font-size: 0.85rem;
    color: var(--grey-dark);
}

/* ========================================
   CONTACT CTA SECTION
======================================== */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-blue) 0%, #001a33 100%);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.contact-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.contact-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 40px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.contact-card-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.contact-card-number {
    font-size: 1.5rem;
    font-weight: 700;
}

/* ========================================
   CONTACT FORM SECTION
======================================== */
.contact-form-section {
    padding: 100px 0;
    background-color: var(--grey-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 20px;
}

.contact-info h2 span {
    color: var(--deep-blue);
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--grey-dark);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background-color: var(--deep-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--grey-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.contact-detail-text p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
}

.contact-detail-text a {
    color: var(--deep-blue);
    transition: var(--transition);
}

.contact-detail-text a:hover {
    color: var(--black);
}

/* Map Container */
.contact-map {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    display: block;
    border: none;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    border: 2px solid var(--grey-medium);
    border-radius: 8px;
    transition: var(--transition);
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--deep-blue);
}

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

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

.btn-submit {
    width: 100%;
    padding: 16px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--deep-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: #002244;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.3);
}

/* ========================================
   FOOTER
======================================== */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

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

.footer-social a:hover {
    background-color: var(--deep-blue);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item span:first-child {
    font-size: 1.2rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ========================================
   SCROLL ANIMATIONS
======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   STICKY MOBILE CALL BUTTON
======================================== */
.sticky-call {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: linear-gradient(135deg, var(--deep-blue) 0%, #001a33 100%);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.sticky-call:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 51, 102, 0.6);
}

.sticky-call svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.sticky-call-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--black);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.sticky-call-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--black);
}

.sticky-call:hover .sticky-call-tooltip {
    opacity: 1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(0, 51, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(0, 51, 102, 0.7), 0 0 0 10px rgba(0, 51, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 51, 102, 0.4);
    }
}

/* ========================================
   BOOKING MODAL
======================================== */
.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 5px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: var(--white);
    border: none;
    cursor: pointer;
}

.booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: -1;
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--grey-light);
    }

    nav a::after {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .trusted-logos {
        flex-direction: column;
        gap: 20px;
    }

    .trusted-divider {
        display: none;
    }

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

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

    .gallery-item img,
    .ba-slider img {
        height: 220px;
    }

    .gallery-overlay {
        transform: translateY(0);
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .sticky-call {
        display: flex;
    }

    .emergency-banner-content {
        font-size: 0.85rem;
    }

    .emergency-dismiss {
        position: static;
        margin-left: 8px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 12px 15px;
    }

    .logo img {
        height: 50px;
    }

    .footer-logo {
        height: 80px;
    }

    .hero {
        padding-top: 115px;
    }

    .service-content {
        padding: 25px;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
    }

    .member-icon {
        margin: 0 auto;
    }

    .experience-badge {
        padding: 20px;
        bottom: 10px;
        right: 10px;
    }

    .experience-badge .number {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-answer p {
        padding: 0 20px 18px;
    }
}

/* ========================================
   BLOG STYLES
======================================== */
.blog-hero {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #001a33 100%);
    padding: 160px 0 80px;
    text-align: center;
    color: var(--white);
}

.blog-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 15px;
}

.blog-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    padding: 80px 0;
}

.blog-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    height: 200px;
    background-color: var(--deep-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.blog-card-content {
    padding: 30px;
}

.blog-card-meta {
    font-size: 0.85rem;
    color: var(--grey-dark);
    margin-bottom: 12px;
}

.blog-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-content p {
    color: var(--grey-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card-link {
    color: var(--deep-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.blog-card-link:hover {
    color: var(--orange);
}

/* Blog Post */
.blog-post-hero {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #001a33 100%);
    padding: 160px 0 60px;
    color: var(--white);
}

.blog-post-hero .blog-post-meta {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.blog-post-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.2;
    max-width: 800px;
}

.blog-post-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black);
    margin: 40px 0 15px;
}

.blog-post-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin: 30px 0 12px;
}

.blog-post-content p {
    color: var(--grey-dark);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 15px 0 20px 25px;
    color: var(--grey-dark);
    line-height: 1.9;
}

.blog-post-content li {
    margin-bottom: 8px;
    list-style: disc;
}

.blog-post-cta {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #001a33 100%);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    margin-top: 50px;
}

.blog-post-cta h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.blog-post-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

/* ========================================
   CITY PAGE STYLES
======================================== */
.city-hero {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #001a33 100%);
    padding: 160px 0 80px;
    color: var(--white);
}

.city-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.city-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 650px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.city-services {
    padding: 80px 0;
    background-color: var(--grey-light);
}

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

.city-service-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.city-service-card:hover {
    transform: translateY(-5px);
}

.city-service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.city-service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.city-service-card p {
    color: var(--grey-dark);
    font-size: 0.95rem;
    line-height: 1.7;
}

.city-map {
    padding: 60px 0;
}

.city-map iframe {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* ========================================
   WHY CHOOSE US SECTION
======================================== */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--white);
}

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

.differentiator-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    background-color: var(--grey-light);
    transition: var(--transition);
}

.differentiator-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.differentiator-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.differentiator-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.differentiator-card p {
    color: var(--grey-dark);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   SERVICE GUARANTEE SECTION
======================================== */
.guarantees {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--deep-blue) 0%, #001a33 100%);
    color: var(--white);
}

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

.guarantee-card {
    text-align: center;
    padding: 40px 30px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    transition: var(--transition);
}

.guarantee-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.guarantee-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.guarantee-card p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.7;
}

/* ========================================
   VIDEO SECTION
======================================== */
.video-section {
    padding: 80px 0;
    background-color: var(--grey-light);
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--deep-blue) 0%, #001a33 100%);
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 30px;
}

.video-play-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.video-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.video-placeholder p {
    font-size: 1rem;
    opacity: 0.8;
}

/* ========================================
   MULTI-STEP FORM
======================================== */
.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15%;
    right: 15%;
    height: 3px;
    background-color: var(--grey-medium);
    z-index: 0;
}

.form-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.form-progress-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--grey-medium);
    color: var(--grey-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
}

.form-progress-step.active .form-progress-number {
    background-color: var(--deep-blue);
    color: var(--white);
}

.form-progress-step.completed .form-progress-number {
    background-color: var(--orange);
    color: var(--white);
}

.form-progress-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--grey-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-progress-step.active .form-progress-label {
    color: var(--deep-blue);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.service-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 10px;
}

.service-type-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 15px;
    border: 2px solid var(--grey-medium);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.service-type-option:hover {
    border-color: var(--deep-blue);
    background-color: rgba(0, 51, 102, 0.03);
}

.service-type-option.selected {
    border-color: var(--deep-blue);
    background-color: rgba(0, 51, 102, 0.08);
}

.service-type-option input {
    display: none;
}

.service-type-icon {
    font-size: 2rem;
}

.service-type-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
}

.form-step-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-form-next,
.btn-form-prev {
    flex: 1;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Roboto', sans-serif;
}

.btn-form-next {
    background-color: var(--deep-blue);
    color: var(--white);
}

.btn-form-next:hover {
    background-color: #002244;
    transform: translateY(-2px);
}

.btn-form-prev {
    background-color: var(--grey-light);
    color: var(--black);
    border: 2px solid var(--grey-medium);
}

.btn-form-prev:hover {
    background-color: var(--grey-medium);
}

/* ========================================
   SMS BUTTONS
======================================== */
.btn-sms {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 5px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

.btn-sms:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.sticky-text {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.sticky-text:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.sticky-text svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
}

.sticky-text-tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--black);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.sticky-text-tooltip::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--black);
}

.sticky-text:hover .sticky-text-tooltip {
    opacity: 1;
}

/* ========================================
   FINANCING BADGE & BAR
======================================== */
.financing-badge {
    display: inline-block;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 10px;
    vertical-align: middle;
}

.financing-bar {
    background-color: rgba(0, 51, 102, 0.06);
    border: 1px solid rgba(0, 51, 102, 0.12);
    border-radius: 10px;
    padding: 18px 25px;
    margin-bottom: 25px;
    text-align: center;
}

.financing-bar p {
    font-size: 0.9rem;
    color: var(--black);
    font-weight: 500;
    margin: 0;
}

.financing-bar strong {
    color: var(--deep-blue);
}

/* ========================================
   EXIT-INTENT POPUP
======================================== */
.exit-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.exit-popup-overlay.active {
    display: flex;
}

.exit-popup {
    background-color: var(--white);
    border-radius: 15px;
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: popupSlideIn 0.35s ease;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.exit-popup-header {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #001a33 100%);
    padding: 35px 30px;
    text-align: center;
    color: var(--white);
}

.exit-popup-header h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.exit-popup-header p {
    font-size: 1rem;
    opacity: 0.9;
}

.exit-popup-body {
    padding: 30px;
}

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

.exit-popup-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: var(--transition);
    z-index: 1;
}

.exit-popup-close:hover {
    color: var(--white);
}

/* ========================================
   GOOGLE REVIEWS BADGE
======================================== */
.google-reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 20px;
}

.google-reviews-icon {
    font-size: 1.8rem;
}

.google-reviews-info {
    display: flex;
    flex-direction: column;
}

.google-reviews-stars {
    color: #ffc107;
    font-size: 1rem;
    letter-spacing: 2px;
}

.google-reviews-text {
    font-size: 0.8rem;
    color: var(--grey-dark);
    font-weight: 600;
}

/* ========================================
   LANGUAGE TOGGLE
======================================== */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: 15px;
    border: 2px solid var(--grey-medium);
    border-radius: 5px;
    overflow: hidden;
}

.lang-toggle button {
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    color: var(--grey-dark);
    font-family: inherit;
}

.lang-toggle button.active {
    background-color: var(--deep-blue);
    color: var(--white);
}

/* ========================================
   LICENSE DISPLAY
======================================== */
.license-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
}

/* ========================================
   FOOTER SOCIAL & REVIEW CTA
======================================== */
.footer-review-cta {
    margin-top: 15px;
}

.footer-review-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-review-cta a:hover {
    color: var(--orange-light);
}

/* Contact text card */
.contact-text-card {
    background-color: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 30px 40px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.contact-text-card:hover {
    background-color: rgba(37, 211, 102, 0.25);
    transform: translateY(-5px);
}

.contact-text-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.contact-text-number {
    font-size: 1.5rem;
    font-weight: 700;
}

/* ========================================
   PHASE 2 RESPONSIVE
======================================== */
@media (max-width: 992px) {
    .differentiators-grid,
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .differentiators-grid,
    .guarantees-grid {
        grid-template-columns: 1fr;
    }

    .service-type-grid {
        grid-template-columns: 1fr;
    }

    .sticky-text {
        display: flex;
    }

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

    .lang-toggle {
        margin-left: 0;
        margin-top: 10px;
    }

    .google-reviews-badge {
        flex-direction: column;
        text-align: center;
    }

    .contact-text-card {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .form-progress-label {
        display: none;
    }

    .exit-popup-header {
        padding: 25px 20px;
    }

    .exit-popup-body {
        padding: 20px;
    }
}
