/* ============================================
   CSS Variables - Brand Colors
   ============================================ */
:root {
    --primary-blue: #0066CC;
    --primary-orange: #FF6600;
    --dark-blue: #004499;
    --light-blue: #3399FF;
    --dark-orange: #CC5500;
    --light-orange: #FF8833;
    --dark-charcoal: #2C2C2C;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
    
    --font-primary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px var(--shadow-hover);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark-charcoal);
    padding-top: 70px;
    box-sizing: border-box;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: var(--dark-charcoal);
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video[poster] {
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.85) 0%, rgba(255, 102, 0, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    padding: 0.5rem 2rem 0.8rem;
    text-align: center;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 70px);
    max-height: calc(100vh - 70px);
    box-sizing: border-box;
    overflow: hidden;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
    width: 100%;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 102, 0, 0.2);
    border: 2px solid var(--primary-orange);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 0.7rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
    max-width: 700px;
    margin: 0.6rem auto;
    padding: 0 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 102, 0, 0.2);
    transform: translateX(5px);
}

.benefit-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-orange);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 3px 6px rgba(255, 102, 0, 0.5));
}

.benefit-item span {
    color: var(--white);
}

.hero-offer {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    padding: 0.6rem 1.5rem;
    border-radius: 0;
    margin: 0.7rem auto;
    max-width: 600px;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
    animation: pulse 2s infinite;
}

.offer-highlight {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.offer-sub {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin: 0.7rem 0;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.6);
}

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

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

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

.trust-item {
    text-align: center;
    min-width: 100px;
    padding: 0.7rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.trust-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 102, 0, 0.2);
    border-radius: 50%;
    color: var(--primary-orange);
    transition: var(--transition);
}

.trust-icon svg {
    width: 18px;
    height: 18px;
}

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

.trust-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-orange);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.trust-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.2;
    color: var(--white);
}


/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 5rem 0;
    background: var(--light-gray);
}

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-container {
    position: relative;
    margin-bottom: 3rem;
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 102, 0, 0.05) 100%);
    border-radius: 50%;
    transition: var(--transition);
}

.service-icon svg {
    width: 45px;
    height: 45px;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    line-height: 1.8;
}

.slider-controls {
    display: none;
}

.slider-dots {
    display: none;
}

.services-offer {
    text-align: center;
    margin-top: 3rem;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    color: var(--white);
    padding: 1.5rem 3rem;
    border-radius: 0;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
    transform: none;
    animation: pulse 2s infinite;
    transition: var(--transition);
}

.offer-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.6);
}

.offer-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
    animation: rotate 3s linear infinite;
}

.offer-icon svg {
    width: 24px;
    height: 24px;
}

.offer-text {
    white-space: nowrap;
}

/* ============================================
   About Section
   ============================================ */
/* ============================================
   About Section - Redesigned
   ============================================ */
.about {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(180deg, #FAFBFC 0%, var(--white) 100%);
    overflow: hidden;
}

.about-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 102, 0, 0.03) 0%, transparent 50%);
    background-size: 800px 800px, 600px 600px;
    background-position: top left, bottom right;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(255, 102, 0, 0.1) 100%);
    border: 1px solid rgba(0, 102, 204, 0.2);
    color: var(--primary-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: fadeInDown 0.8s ease-out;
}

.about-badge svg {
    width: 16px;
    height: 16px;
}

.about-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-content {
    margin-top: 4rem;
}

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

.about-text-wrapper {
    position: relative;
}

.about-text-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: var(--transition);
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 102, 204, 0.2);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(255, 102, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

.about-image-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-blue);
    animation: slideInRight 0.8s ease-out 0.6s both;
}

.about-image-badge svg {
    width: 18px;
    height: 18px;
    color: var(--primary-orange);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    border: 2px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, rgba(255, 102, 0, 0.03) 100%);
    opacity: 0;
    transition: var(--transition);
}

.feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
    border-color: transparent;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover::after {
    transform: scaleY(1);
}

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(255, 102, 0, 0.1) 100%);
    border-radius: 18px;
    color: var(--primary-blue);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.feature-item h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    overflow: hidden;
}

.contact-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 60px 60px, 80px 80px;
    pointer-events: none;
}

.contact .section-header {
    position: relative;
    z-index: 1;
}

.contact-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 102, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 102, 0, 0.3);
}

.contact-header-badge svg {
    width: 20px;
    height: 20px;
    color: var(--primary-orange);
}

.contact-header-badge span {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact .section-title,
.contact .section-subtitle {
    color: var(--white);
}

.contact .section-subtitle {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-intro {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-intro h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-intro p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.75rem;
    transition: var(--transition);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon-wrapper {
    flex-shrink: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    background: rgba(255, 102, 0, 0.15);
    border-radius: 15px;
    transition: var(--transition);
}

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

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.contact-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 700;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.contact-link {
    display: block;
    color: var(--primary-orange);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--light-orange);
    transform: translateX(5px);
}

.contact-hours {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-style: italic;
}

.social-link-card {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    color: var(--white);
    font-weight: 500;
}

.social-link-card svg {
    width: 20px;
    height: 20px;
}

.social-link-card:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.contact-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
}

.cta-badge svg {
    width: 24px;
    height: 24px;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-blue) 100%);
}

.form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.form-header h3 {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-group label svg {
    width: 18px;
    height: 18px;
    color: var(--primary-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.1rem 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-dark);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: var(--font-primary);
}

.btn-submit {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
}

.btn-submit svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    position: relative;
    background: linear-gradient(180deg, #1a1a1a 0%, var(--dark-charcoal) 100%);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    overflow: hidden;
}

.footer-top-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-orange) 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-logo-text h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.footer-tagline {
    display: block;
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 600;
    font-style: normal;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.footer-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--white);
    transition: var(--transition);
}

.footer-social-link svg {
    width: 22px;
    height: 22px;
}

.footer-social-link:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.footer-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
    font-weight: 700;
}

.footer-heading svg {
    width: 20px;
    height: 20px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
}

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

.footer-links li {
    margin: 0;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
    width: fit-content;
}

.footer-links a span {
    position: relative;
    z-index: 1;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition);
    border-radius: 2px;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 15px;
}

.footer-links a:hover::before {
    width: 8px;
}

.footer-contact-section {
    max-width: 300px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.footer-contact li {
    margin: 0;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition);
    color: var(--white);
}

.footer-contact-link:hover {
    background: rgba(255, 102, 0, 0.1);
    border-color: var(--primary-orange);
    transform: translateX(5px);
}

.footer-contact-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 102, 0, 0.15);
    border-radius: 10px;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 22px;
    height: 22px;
}

.footer-contact-link:hover .footer-contact-icon {
    background: var(--primary-orange);
    color: var(--white);
}

.footer-contact-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.footer-contact-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.footer-cta {
    margin-top: 1.5rem;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    color: var(--white);
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
    width: 100%;
    justify-content: center;
}

.footer-cta-btn svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.5);
}

.footer-cta-btn:hover svg {
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

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

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(-2deg) scale(1);
    }
    50% {
        transform: rotate(-2deg) scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   Mobile Responsive Styles
   ============================================ */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .nav-container {
        padding: 0.875rem 1.25rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-logo {
        gap: 0.75rem;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
    }
    
    .logo-text {
        font-size: 1rem;
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }
    
    .nav-link:hover::after {
        width: 0;
    }
    
    /* Hero Mobile */
    .hero {
        padding-top: 70px;
        min-height: 100vh;
        height: auto;
    }

    .hero-content {
        padding: 2rem 1.25rem 3rem;
        height: auto;
        min-height: calc(100vh - 70px);
        max-height: none;
        align-items: center;
        justify-content: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
        display: inline-block;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin: 1rem auto;
        padding: 0;
        max-width: 100%;
    }

    .benefit-item {
        font-size: 0.8rem;
        padding: 0.6rem 0.9rem;
        gap: 0.6rem;
        justify-content: flex-start;
    }

    .benefit-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .benefit-icon svg {
        width: 100%;
        height: 100%;
    }

    .hero-offer {
        padding: 0.75rem 1.25rem;
        margin: 1rem auto;
        max-width: 95%;
        border-radius: 8px;
    }

    .offer-highlight {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }

    .offer-sub {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin: 1rem 0;
        padding: 0 0.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: 100%;
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        border-radius: 50px;
    }
    
    .hero-trust {
        gap: 0.5rem;
        margin-top: 1rem;
        padding-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 1rem 0.5rem 0;
    }

    .trust-item {
        min-width: calc(50% - 0.5rem);
        flex: 1 1 calc(50% - 0.5rem);
        padding: 0.75rem 0.5rem;
        max-width: 140px;
    }
    
    .trust-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 0.4rem;
    }
    
    .trust-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .trust-number {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

    .trust-label {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    
    /* Services Mobile */
    .services {
        padding: 3.5rem 0;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 1.875rem;
        margin-bottom: 0.875rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    
    /* Services Mobile - Slider */
    .services-container {
        margin-bottom: 2rem;
    }
    
    .services-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
        padding: 0 0 1.5rem;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-orange) transparent;
    }
    
    .services-slider::-webkit-scrollbar {
        height: 6px;
    }
    
    .services-slider::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .services-slider::-webkit-scrollbar-thumb {
        background: var(--primary-orange);
        border-radius: 3px;
    }
    
    .service-card {
        min-width: calc(85vw - 2rem);
        max-width: calc(85vw - 2rem);
        scroll-snap-align: center;
        flex-shrink: 0;
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .service-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .service-title {
        font-size: 1.3rem;
        margin-bottom: 0.875rem;
    }
    
    .service-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .slider-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .slider-btn {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--primary-blue);
        color: var(--white);
        border: none;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
        touch-action: manipulation;
    }
    
    .slider-btn svg {
        width: 22px;
        height: 22px;
        stroke: currentColor;
    }
    
    .slider-btn:hover,
    .slider-btn:focus {
        background: var(--primary-orange);
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    }
    
    .slider-btn:active {
        transform: scale(0.95);
    }
    
    .slider-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1rem;
        flex-wrap: wrap;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #CCCCCC;
        cursor: pointer;
        transition: var(--transition);
        touch-action: manipulation;
    }
    
    .dot.active {
        background: var(--primary-orange);
        transform: scale(1.3);
        width: 12px;
        height: 12px;
    }
    
    .services-offer {
        margin-top: 2rem;
    }
    
    .offer-badge {
        padding: 1.25rem 2rem;
        font-size: 1.15rem;
        display: flex;
        flex-direction: row;
        gap: 0.875rem;
    }
    
    .offer-icon {
        width: 35px;
        height: 35px;
    }
    
    .offer-icon svg {
        width: 22px;
        height: 22px;
    }
    
    /* About Mobile */
    .about {
        padding: 3.5rem 0;
    }
    
    .about-header {
        margin-bottom: 2rem;
    }
    
    .about-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .about-title {
        font-size: 1.875rem;
        margin-bottom: 0.875rem;
    }
    
    .about-subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-main {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-text-wrapper {
        order: 2;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-text-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .about-description {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        line-height: 1.7;
    }
    
    .about-image-wrapper {
        order: 1;
    }
    
    .about-image {
        transform: none;
        border-radius: 12px;
    }
    
    .about-image:hover {
        transform: scale(1.01);
    }
    
    .about-image-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .about-image-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .about-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        text-align: center;
        padding: 1rem 0.5rem;
        background: var(--light-gray);
        border-radius: 10px;
    }
    
    .stat-number {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--primary-orange);
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        color: var(--text-light);
        display: block;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .feature-icon-wrapper {
        margin-bottom: 0.875rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0;
    }
    
    .feature-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .feature-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Contact Mobile */
    .contact {
        padding: 4rem 0;
    }
    
    .contact-header-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .contact-header-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 2.5rem;
    }
    
    .contact-intro {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .contact-intro h3 {
        font-size: 1.25rem;
    }
    
    .contact-cards {
        gap: 1.25rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-card:hover {
        transform: translateY(-5px);
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-cta {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .cta-badge {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-badge svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group label svg {
        width: 16px;
        height: 16px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo {
        margin-bottom: 1.25rem;
    }
    
    .footer-logo-img {
        width: 50px;
        height: 50px;
    }
    
    .footer-logo-text h3 {
        font-size: 1.3rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-heading svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-contact-link {
        padding: 0.875rem;
        gap: 0.875rem;
    }
    
    .footer-contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0.3rem 0.8rem 0.5rem;
        height: calc(100vh - 60px);
        max-height: calc(100vh - 60px);
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.8rem;
        margin-bottom: 0.4rem;
    }

    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .hero-benefits {
        gap: 0.35rem;
        margin: 0.5rem auto;
    }

    .benefit-item {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }

    .hero-offer {
        padding: 0.5rem 0.9rem;
        margin: 0.5rem auto;
    }

    .offer-highlight {
        font-size: 0.8rem;
    }

    .offer-sub {
        font-size: 0.65rem;
    }

    .btn {
        padding: 0.65rem 1.3rem;
        font-size: 0.85rem;
    }

    .hero-trust {
        gap: 0.5rem;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }

    .trust-item {
        min-width: 70px;
        padding: 0.5rem 0.4rem;
    }

    .trust-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 0.3rem;
    }

    .trust-icon svg {
        width: 14px;
        height: 14px;
    }

    .trust-number {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }

    .trust-label {
        font-size: 0.55rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .contact {
        padding: 3rem 0;
    }
    
    .contact-header-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .contact-intro h3 {
        font-size: 1.1rem;
    }
    
    .contact-intro p {
        font-size: 0.9rem;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-link {
        font-size: 1rem;
    }
    
    .cta-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .contact-form-container {
        padding: 1.5rem 1.25rem;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .form-header p {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.95rem;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .footer {
        padding: 2.5rem 0 1.25rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-logo-img {
        width: 45px;
        height: 45px;
    }
    
    .footer-logo-text h3 {
        font-size: 1.2rem;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer-heading {
        font-size: 1rem;
    }
    
    .offer-badge {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        gap: 0.75rem;
        flex-direction: column;
    }
    
    .offer-icon {
        width: 35px;
        height: 35px;
    }
    
    .offer-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .offer-text {
        white-space: normal;
        text-align: center;
    }
}

/* ============================================
   Accessibility Improvements
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-blue: #0055AA;
        --primary-orange: #DD5500;
        --text-dark: #000000;
        --text-light: #333333;
    }
}

