/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Final overrides: ensure hero background and compact desktop sizing */
.hero-section {
    background: #f3f4f6 url('hero-bg.jpg') center/cover no-repeat !important;
}

/* Removed conflicting form rules that were causing spacing issues */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden;
}

/* Header Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(26, 50, 91, 0.08);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

/* Mobile/Tablet Actions */
.mobile-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-action-btn {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #1A325B;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(26, 50, 91, 0.15);
    padding: 0 1rem;
}

.mobile-action-btn {
    width: 40px;
    padding: 0;
    border-radius: 50%;
}

.mobile-action-btn:hover,
.mobile-action-btn:focus {
    background: #152a4a;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 50, 91, 0.2);
}

.mobile-action-btn i {
    font-size: 1rem;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(15px);
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.08);
}

.navbar-brand {
    color: #1A325B !important;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A325B;
    font-size: 1.2rem;
}

.logo-text {
    color: #1A325B;
    font-weight: bold;
}

/* Brand logo sizing for header/footer */
.brand-logo { 
    height: 40px;
    width: auto; 
}

.navbar .brand-logo { 
    height: 44px;
}

.site-footer .brand-logo { 
    height: 36px;
    opacity: .95; 
}

@media (max-width: 575.98px) {
    .navbar {
        height: 60px;
        padding: 0;
    }
    .navbar .container {
        height: 100%;
        display: flex;
        align-items: center;
        padding: 0 1rem;
    }
    .navbar-brand {
        display: flex;
        align-items: center;
        height: 100%;
        padding: 0.5rem 0;
    }
    .navbar .brand-logo {
        height: 40px;
        width: auto;
    }
    .navbar-toggler {
        margin-left: auto;
        width: 40px;
        height: 40px;
        padding: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }
    .navbar-toggler-icon {
        width: 20px;
        height: 20px;
        background-size: 20px;
    }
}

/* Desktop-specific navbar logo sizing */
@media (min-width: 992px) {
    .navbar .brand-logo { height: 56px; }
}

.navbar-nav .nav-link {
    color: #1A325B !important;
    margin: 0 1rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.navbar-nav .nav-link:hover {
    opacity: 0.8;
}

.btn-callback {
    background-color: #1A325B;
    color: white;
    border: 2px solid white;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-callback:hover {
    background-color: white;
    color: #1A325B;
}

/* Mobile CTA Section */
.mobile-cta {
    background: linear-gradient(135deg, #1A325B, #152a4a);
    padding: 2rem;
    margin: 2rem 1rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(16, 24, 40, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.mobile-cta p {
    color: #e2e8f0;
    font-size: 1rem;
    margin-bottom: 1.75rem;
    line-height: 1.5;
    opacity: 0.9;
}

.mobile-cta-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-primary {
    background: #d9b400;
    color: #1a202c;
    border: none;
}

.btn-cta-primary:hover {
    background: #c4a200;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 180, 0, 0.3);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 575.98px) {
    .mobile-cta {
        margin: 1.5rem 0.75rem;
        padding: 1.75rem 1.5rem;
        border-radius: 14px;
    }

    .mobile-cta h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .mobile-cta p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
}

/* Desktop Navigation */
.desktop-nav {
    margin-left: auto;
}

.desktop-nav .navbar-nav {
    margin-right: 1.5rem;
}

/* Main Hero Section */
.hero-section {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background-color: #f3f4f6; /* fallback */
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem 0;
    will-change: transform;
    overflow: visible;
}

/* Ensure proper stacking context */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: auto;
    display: flex;
    align-items: center;
}

.hero-container .row {
    margin: 0 -1rem;
    align-items: center;
    height: auto;
    min-height: auto;
}

.left-content {
    padding: 1.5rem 1rem;
}

.form-section {
    padding: 1rem 1rem;
    position: relative;
    z-index: 2;
    margin-top: 0;
}

@media (max-width: 767px) {
    .hero-section {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
        min-height: auto;
        padding: 2rem 0;
        overflow: visible;
    }
    
    .hero-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-container {
        height: auto;
        overflow: visible;
        padding: 0 1rem;
    }

    .hero-container .row {
        flex-direction: column;
        gap: 3rem;
        margin: 0;
        height: auto;
    }

    .left-content {
        padding: 0;
        width: 100%;
        margin-bottom: 2rem;
        order: 1 !important;
    }

    .form-section {
        width: 100%;
        margin-top: 0;
        position: relative;
        z-index: 2;
        padding: 0;
        order: 2 !important;
    }
    
    /* Ensure the form column comes after content on mobile */
    .col-xl-5.col-lg-5.col-md-12 {
        order: 2 !important;
    }
    
    .col-xl-7.col-lg-7.col-md-12 {
        order: 1 !important;
    }

    .contact-form-wrapper {
        width: 100%;
        margin: 0;
        position: relative;
        z-index: 2;
    }

    .contact-form {
        margin: 0;
        width: 100%;
    }

    .promo-rating-row {
        flex-direction: column;
        gap: 1rem;
    }

    .promo-button, .rating-section {
        width: 100%;
    }
}

/* Dark overlay for better text readability */
.hero-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.6) !important; /* Dark overlay with 60% opacity - force override */
    z-index: 1 !important;
    pointer-events: none !important;
    display: block !important; /* Ensure overlay is always visible */
}

/* PHP-provided hero image wrapper */
.hero-image { 
    position: absolute; 
    inset: 0; 
    z-index: 0; 
    overflow: hidden; 
    pointer-events: none;
    display: none !important; /* hide hero image entirely */
}

.hero-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; /* cover entire background */
    object-position: center; 
    display: block; 
}

/* Centered max-width container for perfect alignment */
/* Removed duplicate hero-container definition */

.hero-container .row {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 2rem;
    align-items: center;
    margin: 0;
    width: 100%;
    height: auto;
    position: relative;
}

/* Ensure hero content always renders above the overlay */
.hero-section .container,
.hero-section .row {
    position: relative;
    z-index: 2;
}

/* Safety: never hide hero content due to JS animations */
.hero-section .content-wrapper,
.hero-section .form-card {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Desktop hero refinements: proper viewport fitting */
@media (min-width: 992px) {
    .hero-section { 
        min-height: calc(100vh - 80px);
        padding: 3rem 0;
        overflow: visible;
    }
    .hero-container { 
        height: auto;
        display: flex;
        align-items: center;
    }
    .hero-container .row { 
        width: 100%;
        height: auto;
        align-items: center;
        justify-content: space-between;
        margin: 0;
    }
}

/* Desktop hero refinements: tighter spacing, wider but shorter form */
@media (min-width: 1200px) {
    .hero-container { padding-left: 1rem; padding-right: 1rem; }
    .left-content, .form-section { padding: 1rem 0.75rem; }
    .content-wrapper { max-width: 520px; }
    .main-heading { font-size: 2.3rem; line-height: 1.15; margin-bottom: 0.875rem; }
    .sub-heading { margin-bottom: 1rem; font-size: 1rem; }
    .feature-list { margin-bottom: 1rem; }
    .feature-list li { margin-bottom: 0.5rem; font-size: 0.95rem; }
    .promo-rating-row { gap: 1rem; margin-bottom: 1rem; }
    .promo-button { padding: 1rem; border-radius: 12px; }
    .rating-section { padding: 1rem; border-radius: 12px; }
    /* Removed conflicting form rules that were causing spacing issues */
}

/* Dark overlay is now active for better text readability */

.left-content {
    background-color: transparent;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    position: relative;
    z-index: 2;
    max-height: none;
    overflow: visible;
}

.content-wrapper {
    max-width: 580px;
    text-align: left;
    padding: 0;
}

.tag-badge {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #1a202c !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.main-heading {
    color: #ffffff !important;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.sub-heading {
    color: #f1f5f9 !important;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
    max-width: 90%;
}

.feature-list {
    list-style: none;
    margin: 1.25rem 0 1.5rem;
    padding-left: 0;
}

@media (max-width: 767px) {
    .feature-list {
        margin: 1.25rem 0;
    }
}

.feature-list li {
    color: #e2e8f0 !important; /* Changed to light gray for better readability - force override */
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important; /* Added subtle text shadow */
}

.feature-list li i {
    color: #fff;
    margin-right: 1.2rem;
    margin-top: 0.1rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.promo-button {
    background-color: #d9b400;
    padding: 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 5;
    max-width: 100%;
}

@media (max-width: 767px) {
    .promo-button {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .promo-icon {
        margin: 0 0 0.75rem 0;
    }
}

/* Subtle attention animation for promo */
.promo-button {
    position: relative;
    overflow: hidden;
}

.promo-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: promoShine 4.5s ease-in-out infinite;
}

@keyframes promoShine {
    0%, 65% { left: -150%; }
    75% { left: 120%; }
    100% { left: 120%; }
}

.promo-icon {
    width: 40px;
    height: 40px;
    background-color: #b87100; /* toned orange */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

.promo-text {
    flex: 1;
}

.promo-rating-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
    margin-bottom: 1.5rem;
}

.promo-main {
    color: #1a202c !important; /* Changed to dark text for better contrast on yellow - force override */
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.promo-sub {
    color: #2d3748 !important; /* Changed to darker text for better contrast on yellow - force override */
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.rating-section {
    background-color: #3f4752;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Subtle pulse on rating stars for attention */
.rating-section .stars i {
    animation: starPulse 3.5s ease-in-out infinite;
}

.rating-section .stars i:nth-child(2) { animation-delay: 0.2s; }
.rating-section .stars i:nth-child(3) { animation-delay: 0.4s; }
.rating-section .stars i:nth-child(4) { animation-delay: 0.6s; }
.rating-section .stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.9; }
}

.stars {
    display: flex;
    align-items: center;
    margin-bottom: 0.6rem;
}

.stars i {
    color: #e6c200;
    font-size: 1.2rem;
    margin-right: 0.3rem;
}

.rating-text {
    color: white;
    font-weight: bold;
    margin-left: 1rem;
}

.rating-section p {
    color: white;
    margin: 0;
    font-size: 0.95rem;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    font-weight: 500;
}

.contact-item i {
    margin-right: 1rem;
    font-size: 1.1rem;
    color: #e6c200;
    flex-shrink: 0;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-row.simple {
    background: transparent;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    margin: 0.375rem 0;
}

@media (max-width: 767px) {
    .contact-link {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
        margin: 0.25rem 0;
    }
}

.contact-link:hover {
    border-color: rgba(230,194,0,0.5);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.contact-link:focus-visible {
    outline: 2px solid #e6c200;
    outline-offset: 2px;
}

.contact-link i {
    color: #e6c200;
    font-size: 1rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(230,194,0,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-link span {
    font-weight: 600;
    letter-spacing: .2px;
}

/* Contact Form - Core Styles */
.contact-form-wrapper {
    --form-spacing-x: 0.875rem;
    --form-spacing-y: 0.875rem;
    --form-radius: 14px;
    --form-border-color: rgba(238, 240, 242, 0.9);
    --form-shadow: 0 20px 40px rgba(16, 24, 40, 0.12);
    --form-bg: #ffffff;
    --form-color-primary: #1A325B;
    --form-color-text: #64748b;
    --form-color-placeholder: #94a3b8;
    --form-transition: 0.2s ease;
    
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 380px;
    margin: 0;
    display: flex;
    align-items: flex-start;
    background: var(--form-bg);
    border-radius: var(--form-radius);
    border: 1px solid var(--form-border-color);
    box-shadow: var(--form-shadow);
}

@media (max-width: 767px) {
    .contact-form-wrapper {
        max-width: 100%;
        margin: 0;
        border-radius: calc(var(--form-radius) * 0.75);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }
}



/* Form Card */
.contact-form {
    background: var(--form-bg);
    border-radius: var(--form-radius);
    border: 1px solid var(--form-border-color);
    box-shadow: var(--form-shadow);
    padding: 1rem;
    width: 100%;
    margin-top: 0.25rem;
}

@media (max-width: 767px) {
    .contact-form {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .contact-form-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .contact-form-subtitle {
        font-size: 0.875rem;
    }

    .form-control-custom {
    height: 52px;
    padding: 0.75rem 1rem;
    font-size: 16px;
    margin-bottom: 1rem;
}

    .form-submit {
        padding: 0.875rem;
        font-size: 1rem;
    }
}

/* Map markup classes in index.php to the core form styles */
.php-email-form .form-group { 
    margin-bottom: calc(var(--form-spacing-y) * 0.7);
}

.php-email-form .form-lable {
    color: var(--form-color-primary) !important; /* override inline white */
    font-weight: 600;
    font-size: 0.9375rem;
}

.php-email-form .form-control-custom {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--form-color-primary);
    background-color: #f8fafc !important;
    border: 2px solid #e2e8f0;
    border-radius: calc(var(--form-radius) * 0.75);
    transition: all var(--form-transition);
    min-height: 48px;
}

.php-email-form .form-control-custom::placeholder {
    color: var(--form-color-placeholder);
    opacity: 0.9;
}

.php-email-form .form-control-custom:focus {
    background-color: var(--form-bg) !important;
    border-color: var(--form-color-primary);
    box-shadow: 0 0 0 2px rgba(26, 50, 91, 0.08);
    outline: none;
}

/* Submit button used in markup */
.php-email-form button[type="submit"] {
    width: 100%;
    margin-top: calc(var(--form-spacing-y) * 0.8);
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--form-color-primary), #152a4a) !important;
    border: none;
    border-radius: calc(var(--form-radius) * 0.75);
    cursor: pointer;
    transition: all var(--form-transition);
}

.php-email-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(26, 50, 91, 0.2);
}

/* Status messages inside the form */
.php-email-form .error-message {
    display: none;
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 1rem;
    border-radius: calc(var(--form-radius) * 0.75);
    text-align: center;
    font-weight: 500;
}

.php-email-form .sent-message {
    display: none;
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
    padding: 1rem;
    border-radius: calc(var(--form-radius) * 0.75);
    text-align: center;
    font-weight: 500;
}

.php-email-form .loading { display: none; }

/* Form Header */
.contact-form-header {
    text-align: center;
    margin-bottom: calc(var(--form-spacing-y) * 0.8);
}

.contact-form-title {
    color: var(--form-color-primary);
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.contact-form-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--form-color-text);
    font-size: 0.9375rem;
}

.contact-form-subtitle i {
    color: var(--form-color-primary);
}

/* Form Fields */
.form-fields {
    display: grid;
    gap: calc(var(--form-spacing-y) * 0.4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(var(--form-spacing-x) * 0.75);
}

/* Form Controls */
.form-control {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--form-color-primary);
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: calc(var(--form-radius) * 0.75);
    transition: all var(--form-transition);
}

.form-control::placeholder {
    color: var(--form-color-placeholder);
    opacity: 0.8;
}

.form-control:focus {
    background-color: var(--form-bg);
    border-color: var(--form-color-primary);
    box-shadow: 0 0 0 2px rgba(26, 50, 91, 0.08);
    outline: none;
}

textarea.form-control {
    min-height: 60px;
    resize: vertical;
}

/* Submit Button */
.form-submit {
    width: 100%;
    margin-top: calc(var(--form-spacing-y) * 0.6);
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--form-color-primary), #152a4a);
    border: none;
    border-radius: calc(var(--form-radius) * 0.75);
    cursor: pointer;
    transition: all var(--form-transition);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(26, 50, 91, 0.2);
}

/* Form Messages */
.form-message {
    margin-bottom: var(--form-spacing-y);
    padding: 1rem;
    border-radius: calc(var(--form-radius) * 0.75);
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .contact-form-wrapper {
        --form-spacing-x: 1.125rem;
        --form-spacing-y: 1.125rem;
        max-width: 540px;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .contact-form-wrapper {
        --form-spacing-x: 1rem;
        --form-spacing-y: 1rem;
        --form-radius: 12px;
    }
    
    .contact-form-title {
        font-size: 1.375rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    textarea.form-control {
        min-height: 72px;
    }
}

/* Cookie Consent Banner */
/* Accessibility helper classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* Cookie Consent Banner */
#cookieConsent {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#cookieConsent .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem;
}

#cookieConsent .cookie-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

#cookieConsentOK,
#cookieConsentNO {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    outline: none;
}

#cookieConsentOK {
    background: #1A325B;
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 2px 4px rgba(26, 50, 91, 0.1);
}

#cookieConsentOK:hover {
    background: #152a4a;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(26, 50, 91, 0.2);
}

#cookieConsentOK:focus-visible {
    box-shadow: 0 0 0 3px rgba(26, 50, 91, 0.4);
}

#cookieConsentNO {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

#cookieConsentNO:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.3);
}

#cookieConsentNO:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Improved focus styles for all interactive elements */
#cookieConsentOK:focus,
#cookieConsentNO:focus,
.findoutmore:focus,
#closeCookieConsent:focus {
    outline: none;
}

#cookieConsentOK:focus-visible,
#cookieConsentNO:focus-visible,
.findoutmore:focus-visible,
#closeCookieConsent:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

/* Ensure buttons remain accessible when using keyboard */
#cookieConsentOK:focus:not(:focus-visible),
#cookieConsentNO:focus:not(:focus-visible),
.findoutmore:focus:not(:focus-visible),
#closeCookieConsent:focus:not(:focus-visible) {
    box-shadow: none;
}

/* Improved touch target sizes for mobile */
@media (max-width: 767px) {
    #cookieConsentOK,
    #cookieConsentNO {
        padding: 0.875rem 1.75rem;
        min-height: 44px; /* iOS minimum touch target size */
    }
    
    #closeCookieConsent {
        width: 44px;
        height: 44px;
    }
}

.findoutmore {
    color: #fff;
    text-decoration: underline;
    opacity: 0.9;
    transition: all 0.2s ease;
}

.findoutmore:hover {
    opacity: 1;
    color: #fff;
}

#closeCookieConsent {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    margin-left: auto;
}

#closeCookieConsent:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

@media (max-width: 767px) {
    #cookieConsent .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    #cookieConsent .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    #cookieConsentOK,
    #cookieConsentNO {
        width: 100%;
        text-align: center;
    }
    
    #closeCookieConsent {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
}

/* iOS Specific Fixes */
@supports (-webkit-touch-callout: none) {
    .form-control {
        font-size: 16px;
        -webkit-appearance: none;
        appearance: none;
    }
    
    .form-submit {
        -webkit-appearance: none;
        appearance: none;
    }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .hero-container .row {
        --bs-gutter-x: 2rem;
    }
    
    .left-content, .form-section {
        padding: 2.5rem 1.5rem;
    }
    
    .main-heading {
        font-size: 2.4rem;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav {
        margin: 1rem 0;
    }
    
    .btn-callback {
        margin-top: 1rem;
    }
    
    .hero-section {
        margin-top: 70px;
        min-height: calc(100vh - 70px);
        min-height: auto;
        background-attachment: scroll;
        overflow: visible;
    }
    
    .hero-container {
        padding: 2rem 1rem;
        height: auto;
        overflow: visible;
    }
    
    .hero-container .row {
        min-height: auto;
        height: auto;
        flex-direction: column;
        gap: 2rem;
        margin: 0;
    }
    
    .left-content {
        padding: 1rem 0;
        width: 100%;
        margin-bottom: 1rem;
        order: 1 !important;
    }
    
    .form-section {
        padding: 0;
        margin-top: 2rem;
        width: 100%;
        position: relative;
        z-index: 2;
        order: 2 !important;
    }
    
    /* Ensure proper column ordering on tablet and mobile */
    .col-xl-5.col-lg-5.col-md-12 {
        order: 2 !important;
    }
    
    .col-xl-7.col-lg-7.col-md-12 {
        order: 1 !important;
    }
    
    .contact-form-wrapper {
        margin: 0;
        max-width: 100%;
        position: relative;
        z-index: 2;
    }
    
    .feature-list {
        margin-bottom: 1.5rem;
    }
    
    .feature-list li {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }
    
    .promo-rating-row {
        margin-bottom: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-row {
        margin-top: 1.5rem;
    }
    
    .content-wrapper {
        max-width: 100%;
    }
    
    .form-card {
        max-width: 100%;
        padding: 2rem;
    }
    
    .main-heading {
        font-size: 2.2rem;
        color: #ffffff; /* Ensure white color on mobile */
    }
    
    .sub-heading {
        color: #f1f5f9; /* Ensure light color on mobile */
    }
    
    .feature-list li {
        color: #e2e8f0; /* Ensure light color on mobile */
    }
    
    .promo-button {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .promo-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .promo-rating-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 767.98px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .hero-section {
        margin-top: 70px;
    }
    
    .hero-container {
        padding: 2.5rem 1rem;
    }
    
    .left-content {
        padding: 1.5rem 0;
    }
    
    .form-section {
        padding: 0;
        margin-top: 1.5rem;
    }
    
    .main-heading {
        font-size: 2rem;
        color: #ffffff; /* Ensure white color on mobile */
    }
    
    .sub-heading {
        font-size: 1rem;
        color: #f1f5f9; /* Ensure light color on mobile */
    }
    
    .feature-list li {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        color: #e2e8f0; /* Ensure light color on mobile */
    }
    
    .promo-main {
        font-size: 1rem;
    }
    
    .form-card {
        padding: 1.75rem;
    }
    
    .form-card h2 {
        font-size: 1.8rem;
    }
    
    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .tag-badge {
        margin-bottom: 1.5rem;
        padding: 0.5rem 1rem;
    }
    
    .feature-list {
        margin-bottom: 1.5rem;
    }
    
    .promo-rating-row {
        margin-bottom: 1.5rem;
    }
    
    .contact-info {
        margin-top: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        margin-top: 60px;
    }
    
    .hero-container {
        padding: 1.5rem 1rem;
    }
    
    .left-content {
        padding: 0;
    }
    
    .form-section {
        padding: 0;
        margin-top: 2rem;
    }
    
    .contact-form {
        padding: 1.25rem;
    }
    
    .contact-form-title {
        font-size: 1.25rem;
    }
    
    .contact-form-subtitle {
        font-size: 0.875rem;
    }
    
    .form-control-custom {
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    .tag-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .main-heading {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .feature-list {
        margin-bottom: 1.25rem;
    }
    
    .feature-list li {
        font-size: 0.9375rem;
        margin-bottom: 0.625rem;
        gap: 0.75rem;
    }
    
    .feature-list li i {
        font-size: 0.875rem;
        width: 24px;
        height: 24px;
    }
    
    .promo-rating-row {
        margin-bottom: 1.25rem;
        gap: 1rem;
    }
    
    .promo-button {
        padding: 1rem;
    }
    
    .promo-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .rating-section {
        padding: 1rem;
    }
    
    .contact-row {
        margin-top: 1.25rem;
        gap: 0.75rem;
    }
    
    .contact-link {
        padding: 0.875rem 1rem;
    }
    
    .contact-link i {
        width: 28px;
        height: 28px;
        font-size: 0.875rem;
    }
}
    
    .main-heading {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
        color: #ffffff; /* Ensure white color on mobile */
    }
    
    .sub-heading {
        margin-bottom: 1.5rem;
        color: #f1f5f9; /* Ensure light color on mobile */
    }
    
    .tag-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1.25rem;
    }
    
    .promo-button {
        padding: 1rem;
    }
    
    .promo-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .form-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .form-card h2 {
        font-size: 1.6rem;
    }
    
    .quote-form .form-control {
        padding: 0.75rem 0.875rem;
        font-size: 16px;
    }
    
    .feature-list li {
        margin-bottom: 0.75rem;
        color: #e2e8f0; /* Ensure light color on mobile */
    }
    
    .promo-rating-row {
        margin-bottom: 1.25rem;
    }
    
    .contact-info {
        margin-top: 1.25rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero-container {
        padding: 0 0.875rem;
    }
    
    .main-heading {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .sub-heading {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .tag-badge {
        font-size: 0.75rem;
        padding: 0.625rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-list li i {
        margin-right: 1rem;
        font-size: 1.1rem;
        width: 28px;
        height: 28px;
        color: #e6c200;
        background: rgba(230, 194, 0, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .form-card {
        padding: 1.5rem 1.25rem; /* Reduced from 1.75rem 1.25rem */
        margin: 0 0.25rem;
        border-radius: 16px;
    }
    
    .form-card h2 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem; /* Added margin-bottom for consistency */
    }
    
    .response-time {
        margin-bottom: 1.25rem; /* Added for consistency */
        font-size: 0.85rem; /* Added for consistency */
    }
    
    .btn-submit {
        padding: 0.875rem 1.25rem; /* Reduced from 1rem 1.25rem */
        font-size: 0.95rem; /* Reduced from 1rem */
        margin-bottom: 0.75rem; /* Added for consistency */
    }
    
    .promo-button {
        padding: 1.25rem;
    }
    
    .promo-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-right: 0.875rem;
    }
    
    .rating-section {
        padding: 1.25rem;
    }
    
    .contact-link {
        padding: 1rem 1.25rem;
    }
    
    .contact-link i {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* iOS-specific fixes */
@supports (-webkit-touch-callout: none) {
    .hero-section {
        background-attachment: scroll;
    }
    
    .quote-form .form-control {
        font-size: 16px;
        -webkit-appearance: none;
        appearance: none;
        border-radius: 12px;
    }
    
    .btn-submit {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 12px;
    }
}

/* Smooth scrolling and performance */
@media (prefers-reduced-motion: no-preference) {
    .navbar-nav {
        animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .navbar-nav .nav-link {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .btn-callback {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .promo-button {
        transition: all 0.3s ease;
    }
    
    .contact-link {
        transition: all 0.3s ease;
    }
}

/* ---------- Shared Section Styles ---------- */
.section-padding { 
    padding: 80px 0; 
    scroll-margin-top: 90px; 
}

.section-title { 
    font-size: 2.125rem; 
    font-weight: 800; 
    color: #0f172a; 
    letter-spacing: -0.2px; 
}

.section-subtitle { 
    color: #475467; 
    margin-top: 0.35rem; 
    font-size: 1.05rem; 
}

/* ---------- Testimonial Banner ---------- */
.testimonial-banner { 
    background: #fffbea; 
    border-top: 1px solid #fff3c4; 
    border-bottom: 1px solid #fff3c4; 
}

.testimonial-banner.section-padding { 
    padding: 42px 0; 
}

.testimonial-content { 
    padding: 18px 24px; 
    max-width: 900px; 
    margin: 0 auto; 
}

.testimonial-content .quote-mark { 
    font-size: 40px; 
    line-height: 1; 
    color: #f4b400; 
    margin-bottom: 8px; 
}

.testimonial-content .lead { 
    color: #334e68; 
    font-size: 1.0625rem; 
}

.testimonial-content .author { 
    font-weight: 700; 
    color: #102a43; 
}

.testimonial-content .role { 
    color: #627d98; 
    font-size: 0.95rem; 
}

@media (max-width: 991.98px) {
    .testimonial-banner.section-padding { 
        padding: 32px 0; 
    }
    
    .testimonial-content { 
        padding: 14px 18px; 
    }
}

/* ---------- Services ---------- */
.services-section { 
    background: #f8fafc; 
}

.service-item { 
    padding: 16px 6px; 
}

.service-icon { 
    width: 64px; 
    height: 64px; 
    border-radius: 50%; 
    background: #eff4fb; 
    color: #1A325B; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 22px; 
    margin-bottom: 12px; 
    box-shadow: 0 1px 0 rgba(16,24,40,0.04) inset; 
    border: 1px solid #e5e7eb; 
}

.service-title { 
    font-weight: 700; 
    color: #0f172a;
    overflow-wrap: break-word;
}

.service-desc { 
    color: #667085; 
    font-size: 0.93rem; 
}

/* Desktop: 2 rows of 4 services each */
@media (min-width: 1200px) {
    .services-grid { 
        display: grid; 
        grid-template-columns: repeat(4, minmax(0,1fr)); 
        column-gap: 2rem; 
        row-gap: 2rem; 
    }
    
    .services-grid > [class^='col-'],
    .services-grid > [class*=' col-'] { 
        width: 100%; 
        max-width: 100%; 
        flex: 0 0 auto; 
    }
}

.services-section.section-padding { 
    padding: 56px 0; 
}

/* ---------- Benefits ---------- */
.benefits-section { 
    background: #ffffff; 
}

.benefit-list { 
    list-style: none; 
    padding-left: 28px; 
    margin: 0; 
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-list li { 
    display: flex; 
    align-items: center; 
    justify-content: flex-start;
    gap: 10px; 
    padding: 8px 0; 
    color: #101828; 
}

.benefit-list i { 
    color: #0891b2; 
    width: 20px; 
    height: 20px; 
    border-radius: 50%; 
    background: #e6f4ff; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 11px; 
}

.benefits-section.section-padding { 
    padding: 56px 0; 
}

.benefits-section .row.g-4 { 
    justify-content: center; 
    column-gap: 2rem; 
}

.benefits-section .col-md-6 { 
    flex: 0 0 440px; 
    width: 440px; 
    max-width: 440px; 
}

@media (max-width: 991.98px) {
    .benefits-section .row.g-4 {
        column-gap: 1.25rem;
    }
    .benefits-section .col-md-6 {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
    .benefit-list {
        padding-left: 18px;
    }
    .benefit-list li {
        padding: 10px 0;
    }
}

/* Phone-specific tweak: push points a bit further right */
@media (max-width: 575.98px) {
    .benefit-list {
        padding-left: 24px;
    }
}

/* Hide reCAPTCHA badge/inline rendering (keeps logic intact) */
.grecaptcha-badge { 
    right: 20px !important;
    bottom: 20px !important;
    transform: scale(0.9);
}

/* ---------- Trusted by & Reviews ---------- */
.clients-marquee { 
    overflow: hidden; 
    position: relative; 
}

.clients-track { 
    display: flex; 
    gap: 2.5rem; 
    align-items: center; 
    animation: marquee 30s linear infinite; 
    will-change: transform;
}

.clients-marquee:hover .clients-track { 
    animation-play-state: paused; 
}

.clients-track .client img { 
    height: 36px; 
    width: auto; 
    opacity: .9; 
    filter: grayscale(100%); 
    transition: filter .2s ease, opacity .2s ease; 
}

.clients-track .client img:hover { 
    filter: grayscale(0%); 
    opacity: 1; 
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.reviews-section { 
    background: #f8fafc; 
}

.reviews-rating .stars i { 
    color: #f59e0b; 
}

.reviews-rating .rating-value { 
    font-weight: 700; 
    color: #0f172a; 
}

/* Review Boxes */
.review-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.review-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.12);
}

.review-content {
    padding: 1.75rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.reviewer-info {
    flex: 1;
    padding-right: 1rem;
}

.reviewer-name {
    font-weight: 600;
    color: #1A325B;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.reviewer-title {
    color: #64748b;
    font-size: 0.9rem;
}

.review-rating {
    color: #f59e0b;
    font-size: 0.9rem;
    white-space: nowrap;
}

.review-text {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.review-source {
    color: #64748b;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-source i {
    color: #1A325B;
}

/* Featured Review */
.review-featured {
    background: linear-gradient(to right bottom, #1A325B, #152a4a);
}

.review-featured .reviewer-name,
.review-featured .review-text {
    color: #ffffff;
}

.review-featured .reviewer-title,
.review-featured .review-source {
    color: #cbd5e1;
}

.review-featured .review-source i {
    color: #e2e8f0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .review-content {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .review-content {
        padding: 1.25rem;
    }
    
    .reviewer-name {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
}

/* ---------- Projects ---------- */
.projects-section { 
    background: #fbfdff; 
}

.project-card { 
    background: #ffffff; 
    border: 1px solid #e5e7eb; 
    border-radius: 14px; 
    box-shadow: 0 8px 20px rgba(16,24,40,.06); 
    overflow: hidden; 
}

.project-shot { 
    aspect-ratio: 16/9; 
    overflow: hidden; 
}

.project-shot img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
}

.project-card:hover .project-shot img { 
    transform: scale(1.02); 
    transition: transform .35s ease; 
}

.projects-note { 
    color: #667085; 
    font-style: italic; 
}

/* ---------- Why Choose ---------- */
.why-section { 
    background: #12324a; 
}

.why-section .section-title { 
    color: #ffffff; 
}

.why-section .section-subtitle { 
    color: #d0e1ec; 
}

.why-item h5 { 
    color: #ffffff; 
    font-weight: 700; 
    margin-top: 10px; 
}

.why-item p { 
    color: #ccdae4; 
    margin: 0; 
}

.why-icon { 
    width: 64px; 
    height: 64px; 
    border-radius: 50%; 
    background: #fff; 
    color: #12324a; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 26px; 
    margin-bottom: 8px; 
    box-shadow: 0 2px 0 rgba(16,24,40,0.05) inset; 
}

/* ---------- Coverage ---------- */
.coverage-section { 
    background: #ffffff; 
}

.coverage-card { 
    background: #0f2740; 
    color: #e6edf3; 
    border-radius: 12px; 
    padding: 18px; 
    box-shadow: 0 8px 20px rgba(16,24,40,.06); 
}

.coverage-card.primary { 
    background: #103452; 
}

.coverage-card .card-title { 
    font-weight: 700; 
    margin-bottom: 10px; 
    color: #ffffff; 
}

.coverage-card .area-block { 
    border-left: 3px solid #49a7ff; 
    padding-left: 10px; 
    margin: 12px 0; 
}

.coverage-card .area-heading { 
    font-weight: 700; 
    color: #ffffff; 
}

.coverage-card .area-desc { 
    color: #cfe0ea; 
    font-size: .95rem; 
}

.coverage-card.stats { 
    background: #f8fafc; 
    color: #0f172a; 
}

.coverage-card.stats .stats-row { 
    display: flex; 
    justify-content: space-between; 
    padding: 8px 0; 
    border-top: 1px dashed #e5e7eb; 
}

.coverage-card.stats .stats-row:first-child { 
    border-top: 0; 
}

.location-pill { 
    display: block; 
    width: 100%; 
    text-align: left; 
    background: #ffffff; 
    border: 1px solid #e5e7eb; 
    border-radius: 8px; 
    padding: 10px 12px; 
    color: #0f172a; 
    text-decoration: none; 
}

.location-pill:hover { 
    background: #f3f4f6; 
}

.location-note { 
    color: #667085; 
    font-size: .95rem; 
    margin-top: 12px; 
}

.map-card { 
    background: #ffffff; 
    color: #0f172a; 
}

.map-card .map-subtitle { 
    color: #667085; 
    margin-bottom: 8px; 
}

.map-embed { 
    width: 100%; 
    height: 300px; 
    border: 0; 
    border-radius: 10px; 
}

.cta-band { 
    background: #103452; 
    padding: 20px; 
    border-radius: 12px; 
    color: #e6edf3; 
    text-align: center; 
    box-shadow: 0 8px 20px rgba(16,24,40,.06); 
}

.cta-band .cta-text { 
    font-weight: 800; 
    font-size: 1.25rem; 
}

.cta-band .cta-sub { 
    color: #cfe0ea; 
    margin: 6px 0 12px; 
}

/* ---------- Footer ---------- */
.site-footer .footer-cta { 
    background: #103452; 
    padding: 48px 0; 
    color: #e6edf3; 
}

.site-footer .footer-title { 
    color: #ffffff; 
    font-weight: 800; 
    margin-bottom: 6px; 
}

.site-footer .footer-sub { 
    color: #cfe0ea; 
    margin-bottom: 16px; 
}

.site-footer .footer-phone { 
    color: #ffffff; 
    font-weight: 700; 
    text-decoration: none; 
}

.site-footer .footer-phone i { 
    margin-right: 6px; 
}

.site-footer .footer-bottom { 
    background: #f6f8fb; 
    padding: 10px 0; 
    color: #667085; 
    font-size: .9rem; 
}

/* Enhanced mobile navbar */
@media (max-width: 991.98px) {
    .navbar-nav {
        margin: 1.5rem 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border-radius: 16px;
        padding: 1.5rem;
        box-shadow: 0 12px 40px rgba(16, 24, 40, 0.15);
        border: 1px solid rgba(26, 50, 91, 0.1);
        animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-15px) scale(0.98);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    .navbar-nav .nav-link {
        padding: 1rem 1.5rem;
        border-radius: 12px;
        margin: 0.5rem 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        font-weight: 600;
        font-size: 1rem;
        text-align: center;
    }
    
    .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, rgba(26, 50, 91, 0.1), rgba(26, 50, 91, 0.05));
        transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
    }
    
    .navbar-nav .nav-link:hover::before {
        width: 100%;
    }
    
    .navbar-nav .nav-link:hover {
        background: transparent;
        color: #1A325B !important;
        transform: translateX(6px);
    }
    
    .btn-callback {
        margin-top: 1.5rem;
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-weight: 600;
        font-size: 1rem;
        border: 2px solid #1A325B;
    }
    
    .btn-callback:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(26, 50, 91, 0.25);
        background-color: #1A325B;
        color: white;
    }
}

/* Additional navbar enhancements */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(26, 50, 91, 0.1);
    padding: 0.75rem 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(15px);
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.08);
}

/* Mobile-First Responsive Design - Complete Overhaul */

/* Small screens (< 576px) */
@media (max-width: 575.98px) {
    .hero-section {
        margin-top: 60px;
        padding-bottom: 40px;
    }
    
    .hero-container {
        padding: 0.75rem;
    }
    
    .left-content {
        padding: 0.5rem 0;
    }
    
    .form-section {
        padding: 0;
    }
    
    .contact-form {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .contact-form-title {
        font-size: 1.25rem;
    }
    
    .form-control-custom {
        padding: 0.75rem;
        height: 48px;
        font-size: 16px;
    }
    
    .main-heading {
        font-size: 1.5rem;
    }
    
    .feature-list li {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .promo-button {
        padding: 0.875rem;
    }
    
    .rating-section {
        padding: 0.875rem;
    }
}

/* Mobile Layout (< 768px) - Consolidated */
@media (max-width: 767px) {
    .hero-section {
        margin-top: 60px;
        height: auto;
        min-height: auto;
        padding: 2rem 0;
        overflow: visible;
    }
    
    .hero-container {
        padding: 0 1rem;
        height: auto;
        overflow: visible;
    }
    
    .hero-container .row {
        flex-direction: column;
        gap: 2rem;
        margin: 0;
    }
    
    .left-content {
        padding: 0;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .form-section {
        padding: 0;
        width: 100%;
        margin: 0;
        position: relative;
        z-index: 2;
        margin-top: 1rem;
    }
    
    .contact-form-wrapper {
        max-width: 100%;
        margin: 0;
        position: relative;
        z-index: 2;
        margin-top: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin: 0;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    /* Fix content spacing */
    .content-wrapper {
        margin-bottom: 2rem;
    }

    /* Ensure proper stacking */
    .col-xl-7, .col-lg-7, .col-md-12 {
        padding: 0;
    }

    /* Adjust form margins */
    #quote {
        margin-top: 0;
    }

    /* Fix form field spacing */
    .form-row {
        margin-bottom: 1rem;
    }

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

    /* Ensure proper z-index stacking */
    .hero-section > * {
        position: relative;
        z-index: 1;
    }

    /* Fix container overflow */
    .container {
        overflow: visible;
    }

    /* Adjust spacing for better mobile layout */
    .tag-badge {
        margin-bottom: 1.25rem;
    }

    .main-heading {
        margin-bottom: 1.25rem;
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .feature-list {
        margin-bottom: 1.5rem;
    }

    .promo-rating-row {
        margin-bottom: 1.5rem;
    }

    /* Fix form responsiveness */
    .contact-form-header {
        margin-bottom: 1.25rem;
    }

    .contact-form-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .contact-form-subtitle {
        font-size: 0.875rem;
    }

    /* Ensure form fields are properly spaced */
    .form-control-custom {
        margin-bottom: 0.75rem;
    }

    /* Fix button alignment */
    .form-submit {
        width: 100%;
        margin-top: 1rem;
    }
}
    
    .main-heading {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .tag-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .feature-list {
        margin-bottom: 1rem;
    }
    
    .feature-list li {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .promo-rating-row {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .promo-button, .rating-section {
        width: 100%;
        padding: 1rem;
    }
    
    .contact-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .contact-link {
        width: 100%;
    }
}

/* Base mobile optimizations - Consolidated */
@media (max-width: 991.98px) {
    .hero-section {
        margin-top: 70px;
        height: auto;
        min-height: auto;
        background-attachment: scroll;
        overflow: visible;
    }
    
    .hero-container {
        max-width: 100%;
        padding: 0 1.5rem;
        height: auto;
        overflow: visible;
    }
    
    .hero-container .row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 0;
        margin: 0;
        align-items: stretch;
        height: auto;
        gap: 3rem;
    }
    
    .left-content, .form-section {
        padding: 1.5rem 0;
        height: auto;
        min-height: auto;
        width: 100%;
    }
    
    .left-content {
        margin-bottom: 2rem;
    }
    
    .content-wrapper {
        max-width: 100%;
        padding: 0;
        text-align: left;
    }
    
    .form-card {
        max-width: 100%;
        padding: 2rem 1.5rem;
        margin: 0 auto;
        border-radius: 18px;
        box-shadow: 0 15px 35px rgba(16, 24, 40, 0.12);
    }
    
    .main-heading {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        text-align: left;
        letter-spacing: -0.02em;
        font-weight: 700;
    }
    
    .sub-heading {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        text-align: left;
        line-height: 1.6;
        color: #f1f5f9;
        font-weight: 400;
    }
    
    .tag-badge {
        margin-bottom: 2rem;
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
        display: inline-block;
        border-radius: 25px;
        font-weight: 600;
        letter-spacing: 0.5px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        color: #1a202c;
    }
    
    .feature-list {
        margin-bottom: 2rem;
        text-align: left;
    }
    
    .feature-list li {
        margin-bottom: 0.875rem;
        font-size: 1rem;
        line-height: 1.6;
        padding-left: 0;
        color: #e2e8f0;
        font-weight: 400;
    }
    
    .feature-list li i {
        margin-right: 1rem;
        font-size: 1.1rem;
        flex-shrink: 0;
        color: #e6c200;
        background: rgba(230, 194, 0, 0.2);
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .promo-rating-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .promo-button {
        flex-direction: row;
        text-align: left;
        padding: 1.5rem;
        border-radius: 18px;
        margin-bottom: 0;
        align-items: center;
        background: linear-gradient(135deg, #d9b400, #b87100);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }
    
    .promo-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }
    
    .promo-icon {
        margin-right: 1.25rem;
        margin-bottom: 0;
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        flex-shrink: 0;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
    }
    
    .promo-main {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
        line-height: 1.3;
        color: #1a202c;
    }
    
    .promo-sub {
        font-size: 0.95rem;
        opacity: 0.9;
        color: #2d3748;
    }
    
    .rating-section {
        padding: 1.75rem;
        border-radius: 18px;
        text-align: left;
        background: linear-gradient(135deg, #3f4752, #2c3e50);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .rating-section .stars {
        justify-content: flex-start;
        margin-bottom: 1rem;
    }
    
    .rating-section .stars i {
        font-size: 1.3rem;
        margin-right: 0.5rem;
        color: #e6c200;
    }
    
    .rating-section p {
        font-size: 1rem;
        margin: 0;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.95);
    }
    
    .contact-info {
        margin-top: 2rem;
    }
    
    .contact-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .contact-link {
        padding: 1.25rem 1.75rem;
        border-radius: 18px;
        justify-content: flex-start;
        text-align: left;
        gap: 1rem;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(15px);
        transition: all 0.3s ease;
    }
    
    .contact-link:hover {
        background: rgba(255, 255, 255, 0.18);
        border-color: rgba(230, 194, 0, 0.5);
        transform: translateY(-2px);
    }
    
    .contact-link i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        background: rgba(230, 194, 0, 0.25);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #e6c200;
    }
    
    .contact-link span {
        font-size: 1rem;
        font-weight: 600;
        color: white;
    }
}

/* Tablet optimizations */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 2rem 0;
        min-height: auto; /* Ensure natural height */
    }
    
    .hero-container {
        padding: 0 1.25rem;
        height: auto; /* Ensure natural height */
    }
    
    .hero-container .row {
        height: auto; /* Ensure natural height */
    }
    
    .left-content, .form-section {
        padding: 1.5rem 0;
        height: auto; /* Ensure natural height */
    }
    
    .main-heading {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .sub-heading {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .tag-badge {
        font-size: 0.85rem;
        padding: 0.875rem 1.75rem;
        margin-bottom: 2rem;
    }
    
    .feature-list li {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .form-card {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }
    
    .form-card h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .response-time {
        margin-bottom: 1.75rem;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        padding: 1.25rem 1.75rem;
        font-size: 1.1rem;
        border-radius: 14px;
    }
    
    .promo-button {
        padding: 1.75rem;
    }
    
    .promo-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
        margin-right: 1.25rem;
    }
    
    .promo-main {
        font-size: 1.2rem;
    }
    
    .rating-section {
        padding: 1.75rem;
    }
    
    .contact-link {
        padding: 1.25rem 1.75rem;
    }
    
    .contact-link i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Small mobile devices */
@media (max-width: 575.98px) {
    .hero-section {
        margin-top: 60px; /* Match navbar height */
        min-height: auto;
        height: auto;
        padding: 1.5rem 0;
    }
    
    .hero-container {
        padding: 0 1rem;
        height: auto;
    }
    
    .hero-container .row {
        min-height: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin: 0;
    }

    .left-content {
        flex: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
        height: auto;
    }

    .main-heading {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }

    .sub-heading {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        opacity: 0.95;
        max-width: 100%;
    }

    .tag-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.875rem;
        margin-bottom: 1rem;
        border-radius: 16px;
    }

    .feature-list {
        margin-bottom: 1.25rem;
    }

    .feature-list li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        gap: 0.625rem;
    }

    .feature-list li i {
        font-size: 0.875rem;
        width: 24px;
        height: 24px;
    }

    .form-section {
        padding: 0;
        margin-top: 0.5rem;
    }

    .form-card {
        padding: 1.5rem;
        margin: 0;
        border-radius: 14px;
    }

    .form-card h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .response-time {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }
}
    
    .left-content, .form-section {
        padding: 1.25rem 0;
        height: auto; /* Ensure natural height */
    }
    
    .main-heading {
        font-size: 2rem;
        margin-bottom: 1.25rem;
        color: #ffffff; /* Ensure white color on mobile */
    }
    
    .sub-heading {
        margin-bottom: 1.75rem;
        color: #f1f5f9; /* Ensure light color on mobile */
    }
    
    .tag-badge {
        font-size: 0.8rem;
        padding: 0.75rem 1.5rem;
        margin-bottom: 1.75rem;
        border-radius: 25px;
    }
    
    .feature-list {
        margin-bottom: 2rem;
    }
    
    .feature-list li {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
        line-height: 1.5;
        color: #e2e8f0; /* Ensure light color on mobile */
    }
    
    .feature-list li i {
        margin-right: 1rem;
        font-size: 1.1rem;
        width: 28px;
        height: 28px;
        color: #e6c200;
        background: rgba(230, 194, 0, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .promo-rating-row {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .promo-button {
        padding: 1.5rem;
        border-radius: 18px;
    }
    
    .promo-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        margin-right: 1rem;
    }
    
    .promo-main {
        font-size: 1.1rem;
    }
    
    .promo-sub {
        font-size: 0.9rem;
    }
    
    .rating-section {
        padding: 1.5rem;
        border-radius: 18px;
    }
    
    .rating-section .stars i {
        font-size: 1.3rem;
    }
    
    .rating-text {
        font-size: 1rem;
    }
    
    .rating-section p {
        font-size: 0.95rem;
    }
    
    .contact-info {
        margin-top: 2rem;
    }
    
    .contact-row {
        gap: 1.25rem;
    }
    
    .contact-link {
        padding: 1.25rem 1.5rem;
        border-radius: 18px;
        gap: 1rem;
    }
    
    .contact-link i {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .contact-link span {
        font-size: 1rem;
    }
    
    .form-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(16, 24, 40, 0.12);
    }
    
    .form-card h2 {
        font-size: 1.7rem;
        margin-bottom: 0.875rem;
    }
    
    .response-time {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    
    .quote-form .form-control {
        padding: 1rem 1.25rem;
        font-size: 16px;
        border-radius: 12px;
        margin-bottom: 1rem;
        border: 2px solid #e9ecef;
    }
    
    .quote-form .form-control:focus {
        border-color: #1A325B;
        box-shadow: 0 0 0 0.2rem rgba(26, 50, 91, 0.15);
    }
    
    .quote-form textarea {
        min-height: 90px;
    }
    
    .btn-submit {
        padding: 1.125rem 1.5rem;
        font-size: 1.05rem;
        border-radius: 12px;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #1A325B, #152a4a);
        border: none;
        transition: all 0.3s ease;
    }
    
    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(26, 50, 91, 0.3);
    }

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero-container {
        padding: 0 0.875rem;
    }
    
    .main-heading {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .sub-heading {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .tag-badge {
        font-size: 0.75rem;
        padding: 0.625rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .form-card {
        padding: 1.75rem 1.25rem;
        margin: 0 0.25rem;
    }
    
    .form-card h2 {
        font-size: 1.6rem;
    }
    
    .btn-submit {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .promo-button {
        padding: 1.25rem;
    }
    
    .promo-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-right: 0.875rem;
    }
    
    .rating-section {
        padding: 1.25rem;
    }
    
    .contact-link {
        padding: 1rem 1.25rem;
    }
    
    .contact-link i {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}
