/*
 * The TMP Company - Premium Landing Page Styles
 * Primary: #F7931E (traffic orange)
 * Secondary: #111111 (dark charcoal)
 * Background: #F7F7F5
 * Accent: #FFFFFF
 */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800&family=Montserrat:wght@900&display=swap');

:root {
    --primary: #F7931E;
    --primary-hover: #e07f12;
    --secondary: #111111;
    --bg-light: #F7F7F5;
    --white: #FFFFFF;
    --text-dark: #111111;
    --text-muted: #555555;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accent {
    color: #F7931E !important;
}

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

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

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

body.menu-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

h4 {
    font-size: clamp(1rem, 2vw, 1.1rem);
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 0.8rem;
}

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

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

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

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.6rem 0;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.top-bar .accent {
    color: var(--primary);
    font-weight: 700;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 33px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.8rem 0;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.navbar.sticky {
    /* Already fixed — nothing extra needed */
}

.navbar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.menu-close {
    display: none;
    /* Hidden on desktop */
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--secondary);
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    /* Smaller text */
    letter-spacing: 0.1em;
    position: relative;
}

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

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

.nav-logo {
    display: flex;
    justify-content: center;
}

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

.navbar.sticky .nav-logo img {
    height: 45px;
}

.nav-cta {
    display: flex;
    justify-content: flex-end;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    overflow: hidden;
    padding-top: 60px;
}

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

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text h1 .accent {
    color: #F7931E !important;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}
}

.hero-btns {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
}

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

.stat-number {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.hero-form-wrapper {
    perspective: 1000px;
}

.hero-form {
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 1.8rem;
    border-radius: 0;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    height: 552px;
    min-height: auto;
    width: 100%;
    max-width: 540px;
    margin: 0 auto 3rem;
    outline: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    /* Horizontal gap */
    margin-bottom: 0;
}

.hero-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.5);
}

.form-header {
    margin-bottom: 0.1rem;
    text-align: left;
    padding-top: 0;
}

.form-header h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 0;
}

.form-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 1;
    margin-bottom: 0.2rem;
    /* Reduced */
}

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
    margin-top: 0;
    /* Removed top margin to use group bottom margin instead */
}

.hero-form .form-control {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #eeeeee;
    color: #000000;
    border-radius: 0 !important;
    padding: 0.2rem 0;
    /* Reduced from 0.3rem */
    font-weight: 500;
    font-size: 0.95rem;
    outline: none;
    width: 100%;
    font-family: inherit;
}

textarea.form-control {
    resize: none;
    min-height: 65px;
    /* Slightly reduced height */
    border: 1.5px solid #eeeeee !important;
    padding: 0.3rem !important;
    /* Reduced padding */
    margin-top: 0.1rem;
    /* Reduced */
}

.hero-form .form-control::placeholder {
    color: #cccccc;
    font-size: 0.9rem;
}

.hero-form .form-control:focus {
    background: transparent;
    border-color: var(--primary);
    box-shadow: none;
    outline: none;
}

.hero-form select.form-control {
    padding-left: 0;
    background-position: right 0 center;
}

.hero-form select.form-control option {
    background: #ffffff;
    color: #000000;
}

.hero-form .btn-submit {
    border-radius: 0 !important;
    transform: translateY(-40px);
    margin-top: 1rem;
    padding: 0.75rem 1.8rem;
    width: 100%;
    font-size: 0.9rem;
}

.form-trust-pointers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.8rem;
    padding-bottom: 0.2rem;
    transform: translateY(-20px);

}

.trust-pointer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    /* Increased size */
    color: var(--text-muted);
    font-weight: 600;
}

.trust-pointer i {
    color: var(--primary);
    flex-shrink: 0;
}

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

.stat-number {
    font-size: 1.6rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    display: block;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.7;
}

/* Rotating Circle Badge */
.rotating-badge {
    position: absolute;
    top: 20%;
    right: calc(2% + 6px);
    /* Moved left by 6px */
    width: 140px;
    /* Increased from 120px */
    height: 140px;
    /* Increased from 120px */
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Badge container with solid background and spacing */
.badge-container {
    position: relative;
    width: 120px;
    /* Increased from 100px */
    height: 120px;
    /* Increased from 100px */
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 6px;
}

.circle-text {
    width: 100%;
    height: 100%;
    animation: rotate-badge 20s linear infinite;
    transform-origin: center center;
}

.circle-text svg {
    width: 100%;
    height: 100%;
    display: block;
}

.circle-text text {
    fill: var(--secondary);
    font-family: 'Urbanist', sans-serif;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
}

@keyframes rotate-badge {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: none;
}

.trust-badges {
    position: absolute;
    bottom: 10%;
    right: 5%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 3;
}

.badge {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    transform: translateX(50px);
    opacity: 0;
    animation: slideIn 0.8s forwards;
}

.badge:nth-child(1) {
    animation-delay: 0.2s;
}

.badge:nth-child(2) {
    animation-delay: 0.4s;
}

.badge:nth-child(3) {
    animation-delay: 0.6s;
}

.badge i {
    color: var(--primary);
    font-size: 1.5rem;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* About Section */
.about {
    padding: 8rem 0;
    margin-top: 2rem;
    /* Add margin to prevent intersection */
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

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

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4/3;
    height: auto;
}

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

.about h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.about-bullets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.bullet {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
}

.bullet i {
    color: var(--primary);
}

/* Services Section */
.services {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

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

.section-title h2 {
    font-size: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background-color: var(--primary);
}

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

.service-card {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 30px;
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(247, 147, 30, 0.1);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
}

/* Why Choose Us - Bento Layout (matching reference) */
.why-us {
    padding: 6rem 0;
    background-color: #EFEEEB;
    color: var(--text-dark);
}

.why-header {
    text-align: left;
    margin-bottom: 2.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.why-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #FFFFFF;
    border: 1px solid #E0DFDC;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.why-badge i,
.why-badge svg {
    color: var(--primary);
}

.why-header h2 {
    font-size: 2.8rem;
    line-height: 1.15;
    color: var(--secondary);
    text-transform: none;
    letter-spacing: -0.02em;
    max-width: 900px;
}

/* Bento Grid: 6-col base for 2+2+3 layout */
.why-bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.6rem;
    max-width: 1100px;
    margin: 0 auto;
}

.why-bento-card.large {
    grid-column: span 3;
}

.why-bento-card.small {
    grid-column: span 2;
}

/* Card base styles */
.why-bento-card {
    background: #E8E7E3;
    border: none;
    border-radius: 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.why-bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Graphic area — compact */
.card-graphic {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
}

/* Subtle crosshair / grid pattern background */
.card-graphic::before {
    content: '';
    position: absolute;
    inset: 15%;
    border: 1px dashed rgba(0, 0, 0, 0.06);
    border-radius: 0;
}

.card-graphic::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 1px;
    background: rgba(0, 0, 0, 0.04);
}

/* Corner dots on the graphic area */
.graphic-circle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    border: none;
    top: 15%;
    left: 15%;
    box-shadow:
        calc(70% * 10 / 7) 0 0 rgba(0, 0, 0, 0.15),
        0 calc(70% * 10 / 7) 0 rgba(0, 0, 0, 0.15),
        calc(70% * 10 / 7) calc(70% * 10 / 7) 0 rgba(0, 0, 0, 0.15);
}

/* Icon wrapper */
.icon-wrap {
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrap svg {
    color: #A8A8A0;
    stroke-width: 2.5;
    transition: var(--transition);
    width: 100px;
    height: 100px;
}

.why-bento-card:hover .icon-wrap svg {
    color: var(--primary);
    transform: scale(1.08);
}

/* Text at bottom of card */
.card-body {
    text-align: left;
    padding: 1rem 1.5rem 1.3rem;
}

.card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    color: var(--secondary);
    text-transform: none;
    font-weight: 800;
}

.card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Small card adjustments */
.why-bento-card.small .card-body {
    padding: 1.2rem 1.5rem 1.5rem;
}

.why-bento-card.small .card-body h3 {
    font-size: 1.05rem;
}

.why-bento-card.small .card-body p {
    font-size: 0.8rem;
}

.why-bento-card.small .icon-wrap svg {
    width: 80px;
    height: 80px;
}

/* Scrolling Band */
.scrolling-band {
    background-color: var(--primary);
    color: var(--white);
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.scroll-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll 60s linear infinite;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    /* Increased weight */
    font-size: 0.85rem;
    /* Increased size */
    letter-spacing: 0.5em;
    text-transform: uppercase;
    opacity: 0.9;
    /* Increased opacity */
}

@keyframes scroll {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* Reviews Section */
.reviews {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

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

.review-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border-top: 5px solid var(--primary);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.review-quote {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

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

.review-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--secondary);
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.star-rating {
    display: flex;
    gap: 0.3rem;
    color: #FFC107;
    margin-bottom: 1rem;
}

/* Location Section */
.location {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.8)), url('assets/location.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background-color: var(--white);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    max-width: 800px;
    margin: 0 auto;
}

.cta-info {
    text-align: center;
}

.cta-info h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.contact-methods {
    margin-top: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-details h4 {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-details p {
    font-weight: 800;
    font-size: 1.25rem;
}



.cta-form {
    background-color: var(--bg-light);
    padding: 4rem;
    border-radius: 0;
    box-shadow: var(--shadow-md);
}

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

.form-control {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-control.invalid {
    border-color: #ff4d4d;
    background-color: rgba(255, 77, 77, 0.02);
}

.form-control.invalid:focus {
    box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.1);
}

.error-msg {
    color: #ff4d4d;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: none;
    align-items: center;
    gap: 0.4rem;
}

.form-control.invalid+.error-msg {
    display: flex;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1.2rem;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: var(--secondary);
    /* Back to dark charcoal */
    color: var(--white);
    padding: 6rem 0 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    gap: 4rem;
}

.footer-logo img {
    height: 50px;
    filter: none;
    /* New white logo provided, no filter needed */
}

.footer-info {
    max-width: 400px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-links h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: space-between;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

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

/* Menu Toggle */
.menu-toggle {
    display: none;
    color: var(--secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar.sticky .menu-toggle {
    color: var(--secondary);
}

/* Responsive */
/* Responsive Refinements */
@media (max-width: 1400px) {
    .container {
        padding: 0 4rem;
    }

    .panel-left-middle h1 {
        font-size: 2.8rem;
    }

    .rotating-badge {
        width: 180px;
        height: 180px;
    }

    .badge-container {
        width: 160px;
        height: 160px;
    }
}

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

    .nav-links {
        gap: 2rem;
    }

    .top-bar-right {
        gap: 1.5rem;
    }

    .hero-content {
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-form {
        padding: 2.5rem;
    }

    .about-grid,
    .cta-grid {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .hero-panels {
        gap: 1rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .about,
    .services,
    .why-us,
    .location,
    .cta-section {
        padding: 6rem 0;
    }

    .about-grid,
    .cta-grid {
        gap: 2rem;
    }

    .why-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-bento-card.large {
        grid-column: span 1;
    }

    .why-bento-card.small {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: block;
        order: 1;
    }

    .nav-logo {
        order: 2;
    }

    .nav-cta {
        order: 3;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.65);
        /* True glassmorphism */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: center;
        /* Center the links */
        align-items: center;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1001;
        gap: 2.5rem;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }

    .menu-close {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--secondary);
        /* Dark color for white bg */
        position: absolute;
        top: 2rem;
        left: 2rem;
        cursor: pointer;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.1em;
        transition: var(--transition);
        padding: 0.5rem 1rem;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 50px;
    }

    .menu-close:hover {
        background: rgba(0, 0, 0, 0.05);
        border-color: var(--secondary);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        color: var(--secondary);
        /* Dark color for white bg */
        font-size: 1.5rem;
        letter-spacing: 0.2em;
    }

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

    .navbar.sticky .nav-logo img {
        height: 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

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

    .hero-text p {
        margin-left: 0;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: flex-start;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .hero-form-wrapper {
        perspective: none;
    }

    .hero-form {
        transform: none;
        padding: 2.5rem;
    }

    .hero-form:hover {
        transform: translateY(-5px);
    }

    .about-grid,
    .cta-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about-image {
        height: auto;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */

/* Large Tablets & Small Laptops (1100px) */
@media (max-width: 1100px) {
    .container {
        padding: 0 3rem;
    }

    h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        gap: 2rem;
    }
}

/* Tablets (991px) */
@media (max-width: 991px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 0;
        display: block;
        /* Vertical flow */
    }

    .hero-content {
        display: block;
    }

    .hero-text {
        min-height: calc(100svh - 90px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 80px;
        padding-bottom: 0;
    }

    .hero-text h1 {
        transform: none;
        margin-top: 0;
        font-size: 2.2rem;
    }

    .hero-text p {
        transform: none;
        margin: 0 0 1.5rem;
    }

    .hero-form-wrapper {
        padding: 1.5rem;
        background-color: transparent;
    }

    .hero-form {
        transform: none;
        margin: 0 auto;
        max-width: 100%;
        background: #ffffff;
        padding: 2.5rem 1.5rem;
        border: 1px solid #eeeeee;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        height: auto;
    }

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

    .about-image {
        height: auto;
        order: -1;
    }

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

    .rotating-badge {
        display: none;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

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

    .top-bar {
        display: none;
        /* Hide top bar on mobile for space */
    }

    .navbar {
        top: 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-text {
        min-height: calc(100svh - 90px);
        padding-top: 75px;
        padding-bottom: 0;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        margin-top: 0;
    }

    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 0.6rem;
        margin-bottom: 1rem;
    }

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

    .hero-stats {
        gap: 1rem;
    }

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

    .stat-label {
        font-size: 0.65rem;
    }

    .why-header h2 {
        font-size: 1.8rem;
    }

    .why-bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-bento-card.large,
    .why-bento-card.small {
        grid-column: span 1;
    }

    .card-body {
        padding: 1rem 1.2rem 1.2rem;
    }

    .card-body h3 {
        font-size: 0.95rem;
    }

    .card-body p {
        font-size: 0.75rem;
    }

    .icon-wrap svg {
        width: 80px !important;
        height: 80px !important;
    }

    .hero-form-wrapper {
        padding: 0;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        width: calc(100% + 3rem);
    }

    .hero-form {
        border-left: none;
        border-right: none;
        border-radius: 0;
        transform: none;
    }

    .form-header {
        transform: none;
        padding-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-form .form-group {
        transform: none;
    }

    .hero-form .btn-submit {
        transform: none;
        margin-top: 0.5rem;
    }

    .form-trust-pointers {
        transform: none;
        margin-top: 1.5rem;
        grid-template-columns: 1fr;
    }

    .nav-cta span {
        display: none;
    }

    .nav-cta .btn {
        padding: 0.7rem;
        min-width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        /* Space handled by .form-group margin-bottom */
        margin-bottom: 0;
    }

    .cta-info {
        text-align: left;
        /* Left align on small screens */
    }

    .contact-methods {
        justify-content: flex-start;
        /* Left align on small screens */
    }

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

    .footer-logo {
        margin: 0 auto 1.5rem;
        display: flex;
        justify-content: center;
    }

    .footer-info {
        text-align: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-links,
    .footer-bottom {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-links ul {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-bottom {
        align-items: center;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: none;
        height: 100vh;
        background: rgba(255, 255, 255, 0.65);
        /* True glassmorphism */
        border-left: 1px solid rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1001;
        display: flex;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.5rem;
        color: var(--secondary);
        letter-spacing: 0.2em;
    }

    .menu-toggle {
        display: block;
        order: 1;
    }

    .nav-logo {
        order: 2;
    }

    .nav-cta {
        order: 3;
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
    }

    .hero-text {
        min-height: calc(100svh - 90px);
        padding-top: 70px;
        padding-bottom: 0;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 1.55rem;
    }

    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.8rem;
    }

    .hero-btns .btn {
        width: 100%;
        font-size: 0.8rem;
        padding: 0.75rem 1.8rem;
    }

    .hero-stats {
        gap: 0.8rem;
    }

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

    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.1em;
    }

    .hero-form {
        padding: 1.5rem;
    }

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

    .form-header h3 {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .why-header h2 {
        font-size: 1.5rem;
    }

    .why-bento-grid {
        grid-template-columns: 1fr;
    }

    .why-bento-card.large,
    .why-bento-card.small {
        grid-column: span 1;
    }

    .icon-wrap svg {
        width: 60px !important;
        height: 60px !important;
    }

    .card-body {
        padding: 0.8rem 1rem 1rem;
    }

    .card-body h3 {
        font-size: 0.9rem;
    }

    .card-body p {
        font-size: 0.7rem;
    }
}