/* Custom CSS for Firefly Global Solutions */

/* Color Variables */
:root {
    --navy: #001f4d;
    --royal-blue: #003366;
    --deep-orange: #ff5722;
    --crimson: #dc143c;
    --gold: #ffd700;
    --orange: #ff9800;
    --charcoal: #333333;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
}

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

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--charcoal);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--navy);
}

/* Navigation */
.navbar {
      background: #FBF4EA !important;
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
            /*padding: 1rem 0;*/
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1030; /* Ensure navbar stays on top */
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold) !important;
    text-decoration: none;
}

.navbar-brand i {
    color: var(--deep-orange);
}

.nav-link {
    color: #003366 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.dropdown-menu {
    background: var(--navy);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: var(--white);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Hero Carousel */
.hero-carousel {
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.slide-1 {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
}

.slide-2 {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--navy) 100%);
}

.slide-3 {
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-orange) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 31, 77, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    margin-top: 2rem;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
}

.carousel-indicators .active {
    background: var(--gold);
}

/* Buttons */
.btn-primary-cta {
    background: var(--deep-orange);
    border: 2px solid var(--deep-orange);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-cta:hover {
    background: var(--crimson);
    border-color: var(--crimson);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--deep-orange);
    color: var(--deep-orange);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--deep-orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* Section Styling */
.section-padding {
    padding: 120px 0;
}

.section-label {
    color: var(--deep-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.section-description {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.text-gold {
    color: var(--gold) !important;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* About Section */
.about-home {
    background: var(--white);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--deep-orange);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

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

.about-content {
    padding-left: 2rem;
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature-item i {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.feature-item h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.feature-item p {
    color: var(--dark-gray);
    margin: 0;
}

/* Services Section */
.services-home {
    background: var(--light-gray);
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(255, 87, 34, 0.4);
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: var(--charcoal);
    font-weight: 500;
}

.service-features i {
    margin-right: 1rem;
    font-size: 1rem;
}

/* Why Choose Us Section */
.why-choose-home {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
    color: var(--white);
    position: relative;
}

.why-choose-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 87, 34, 0.1) 0%, transparent 50%);
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

.why-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 2rem;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.why-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.why-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Contact CTA Section */
.contact-cta {
    background: var(--light-gray);
    text-align: center;
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.cta-description {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    margin-bottom: 3rem;
}

.cta-stats {
    border-top: 1px solid #e9ecef;
    padding-top: 3rem;
}

.stat-item {
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--deep-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--deep-orange);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.contact-info .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-info .contact-item i {
    margin-right: 1rem;
    font-size: 1.1rem;
}

/*.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}*/

.copyright,
.tagline {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128c7e;
    color: var(--white);
    transform: scale(1.1);
}

.sticky-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.sticky-contact-btn {
    background: var(--deep-orange);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 87, 34, 0.4);
    transition: all 0.3s ease;
}

.sticky-contact-btn:hover {
    background: var(--crimson);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.4);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .experience-badge {
        position: relative;
        top: auto;
        right: auto;
        margin: 2rem auto;
        display: block;
        width: fit-content;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-card,
    .why-card {
        margin-bottom: 2rem;
    }
    
    .whatsapp-float,
    .sticky-contact {
        bottom: 20px;
    }
    
    .whatsapp-float {
        right: 20px;
    }
    
    .sticky-contact {
        left: 20px;
    }
    
    .sticky-contact-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-buttons .btn {
        display: block;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .cta-buttons .btn {
        display: block;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .service-icon,
    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

/* About Page Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
    color: var(--white);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 87, 34, 0.1) 0%, transparent 50%);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 0;
}

/* About Image Wrapper */
.about-image-wrapper {
    position: relative;
}

.overlay-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    display: flex;
    gap: 1rem;
}

.stat-box {
    background: var(--deep-orange);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
    min-width: 80px;
}

.stat-box .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-box .stat-text {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Key Highlights */
.key-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
}

.highlight-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.highlight-content p {
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

/* Mission Vision Values Cards */
.mvv-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.mvv-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.mvv-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.mvv-card p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.mvv-points {
    list-style: none;
    padding: 0;
    text-align: left;
}

.mvv-points li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: var(--charcoal);
    font-weight: 500;
}

.mvv-points i {
    margin-right: 1rem;
    font-size: 1rem;
}

/* Team Section */
.team-content h3 {
    color: var(--navy);
    font-weight: 700;
}

.expertise-areas {
    margin-top: 2rem;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.expertise-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.expertise-icon i {
    font-size: 1.2rem;
}

.expertise-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.expertise-item p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.95rem;
}

/* Team Stats Grid */
.team-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.team-stat-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.team-stat-card h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--deep-orange);
    margin-bottom: 0.5rem;
}

.team-stat-card p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Global Operations Section */
.global-operations {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
    color: var(--white);
    position: relative;
}

.global-operations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 87, 34, 0.1) 0%, transparent 50%);
}

.location-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.location-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.location-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.location-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.location-features {
    margin-bottom: 2rem;
}

.feature-point {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.feature-point i {
    margin-right: 1rem;
    font-size: 1rem;
}

.location-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

.location-contact h6 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.location-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.location-contact i {
    margin-right: 0.5rem;
    width: 16px;
}

/* Achievement Cards */
.achievement-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.achievement-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.achievement-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

/* Content Block */
.content-block {
    padding-left: 2rem;
}

/* Responsive Adjustments for About Page */
@media (max-width: 992px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .overlay-stats {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .team-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .overlay-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-box {
        min-width: auto;
        width: 100%;
    }
    
    .location-header {
        flex-direction: column;
        text-align: center;
    }
    
    .location-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .mvv-card,
    .achievement-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .overlay-stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .stat-box {
        flex: 1;
        margin: 0 0.5rem;
        padding: 1rem;
    }
    
    .stat-box .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-box .stat-text {
        font-size: 0.7rem;
    }
}

/* Service Overview Cards */
.service-overview-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    transition: all 0.5s ease;
    z-index: 1;
    opacity: 0.05;
}

.service-overview-card:hover::before {
    left: 0;
}

.service-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.service-overview-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy);
    position: relative;
    z-index: 2;
}

.service-overview-card p {
    color: var(--dark-gray);
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Service Detail Sections */
.service-detail-section {
    margin-bottom: 6rem;
}

.service-detail-section:last-child {
    margin-bottom: 0;
}

.service-badge {
    background: var(--deep-orange);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

.service-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.service-detail-description {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Service Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-grid-item {
    display: flex;
    align-items: flex-start;
}

.feature-grid-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.feature-grid-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.feature-grid-item p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.95rem;
}

/* Service Benefits */
.service-benefits {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    padding: 2rem;
    border-left: 5px solid var(--gold);
}

.service-benefits h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.service-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-benefits li {
    padding: 0.5rem 0;
    color: var(--charcoal);
    position: relative;
    padding-left: 2rem;
}

.service-benefits li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--deep-orange);
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Service Image Wrapper */
.service-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-image-wrapper img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

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

.service-highlight {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--deep-orange);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.4);
}

.service-highlight i {
    font-size: 1.2rem;
}

/* Document Types */
.document-types {
    margin: 3rem 0;
}

.document-type-card {
    background: var(--white);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.document-type-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.document-type-card i {
    font-size: 2rem;
    color: var(--deep-orange);
    margin-bottom: 1rem;
}

.document-type-card h6 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.document-type-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.document-type-card li {
    padding: 0.3rem 0;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* HOA Process Steps */
.hoa-process {
    margin: 3rem 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.95rem;
}

/* Municipal Categories */
.municipal-categories {
    margin: 3rem 0;
}

.category-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.category-item:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.category-item i {
    font-size: 1.5rem;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.category-item h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.category-item p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.95rem;
}

/* Service Packages Section */
.service-packages {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
    position: relative;
}

.service-packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 87, 34, 0.1) 0%, transparent 50%);
}

.package-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

.package-card.featured {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--gold);
    transform: scale(1.05);
}

.package-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.package-header {
    margin-bottom: 2rem;
}

.package-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.package-header p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.package-features {
    margin-bottom: 3rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.package-features li {
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    font-weight: 500;
}

.package-features i {
    margin-right: 1rem;
    font-size: 1rem;
}

.package-cta .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.package-ctaa {
    display: flex;
    justify-content: center;  /* align center */
    align-items: center;
    gap: 15px; /* spacing between buttons */
    margin-top: 20px;
}

.package-ctaa .btn {
    flex: 1; /* makes them equal width */
    max-width: 250px; /* optional: prevent too wide */
    width: auto; /* override the 100% */
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 50px;
}

/* Responsive Adjustments for Services Page */
@media (max-width: 992px) {
    .service-detail-title {
        font-size: 2rem;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-detail-section {
        margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .service-detail-title {
        font-size: 1.8rem;
    }
    
    .service-detail-description {
        font-size: 1.1rem;
    }
    
    .service-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-overview-card {
        margin-bottom: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .category-item {
        flex-direction: column;
        text-align: center;
    }
    
    .category-item i {
        margin-right: 0;
        margin-bottom: 1rem;
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .service-detail-section {
        margin-bottom: 3rem;
    }
    
    .service-badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .feature-grid-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-grid-item i {
        margin-right: 0;
        margin-bottom: 1rem;
        margin-top: 0;
    }
    
    .package-card {
        margin-bottom: 2rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Differentiator Cards */
.differentiator-card {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.differentiator-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.differentiator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    transition: all 0.6s ease;
    z-index: 1;
    opacity: 0.03;
}

.differentiator-card:hover::before {
    left: 0;
}

.diff-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.3);
}

.differentiator-card:hover .diff-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(255, 87, 34, 0.4);
}

.diff-content {
    position: relative;
    z-index: 2;
}

.diff-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy);
}

.diff-stat {
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.diff-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.diff-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.diff-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: var(--charcoal);
    font-weight: 500;
}

.diff-features i {
    margin-right: 1rem;
    font-size: 1rem;
}

/* Competitive Advantages Section */
.competitive-advantages {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
    position: relative;
}

.competitive-advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 87, 34, 0.1) 0%, transparent 50%);
}

.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}

.advantage-card.featured {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--gold);
    transform: scale(1.05);
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.advantage-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.advantage-badge {
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.advantage-header {
    margin-bottom: 2rem;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.advantage-header h4 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.advantage-content {
    text-align: center;
}

.advantage-stat {
    margin-bottom: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.advantage-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.advantage-benefits {
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.benefit-item i {
    margin-right: 1rem;
    font-size: 1rem;
    width: 16px;
}

/* Success Metric Cards */
.success-metric-card {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.success-metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.success-metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    opacity: 0;
    transition: all 0.3s ease;
}

.success-metric-card:hover::before {
    opacity: 0.05;
}

.metric-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.success-metric-card:hover .metric-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.4);
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--deep-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.success-metric-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--navy) 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 87, 34, 0.08) 0%, transparent 50%);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

.testimonial-card.featured {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--gold);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.testimonial-badge {
    background: var(--gold);
    color: var(--navy);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.author-info h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.stars {
    display: flex;
    gap: 0.3rem;
}

.stars i {
    color: var(--gold);
    font-size: 1rem;
}

/* Quality Process */
.quality-process {
    margin-top: 3rem;
}

.quality-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
}

.quality-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--deep-orange), var(--crimson));
    opacity: 0.3;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.step-info h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-info p {
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

/* Quality Stats */
.quality-stats {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 25px;
    padding: 3rem;
    border-left: 5px solid var(--gold);
}

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

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.stat-item .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quality-certifications h5 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cert-badge {
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.cert-badge i {
    color: var(--deep-orange);
    font-size: 1.2rem;
}

/* CTA Guarantee */
.cta-guarantee {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.guarantee-badge {
    background: var(--gold);
    color: var(--navy);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.guarantee-badge i {
    font-size: 1.2rem;
}

/* Responsive Design for Why Choose Us Page */
@media (max-width: 992px) {
    .differentiator-card,
    .advantage-card,
    .success-metric-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .advantage-card.featured {
        transform: none;
    }
    
    .advantage-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .testimonial-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .quality-step {
        flex-direction: column;
        text-align: center;
    }
    
    .quality-step::after {
        display: none;
    }
    
    .step-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .cert-badges {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .metric-number {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .diff-icon,
    .advantage-icon,
    .metric-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
}


/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 3rem;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.form-description {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Form Section Titles */
.form-section-title {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
}

.form-section-title i {
    color: var(--deep-orange);
    font-size: 1.1rem;
}

/* Form Groups */
.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1rem 1.5rem 1rem 3.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
    border-color: var(--deep-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 87, 34, 0.25);
    background: var(--white);
}

.form-control::placeholder {
    color: #adb5bd;
    font-size: 0.95rem;
}

/* Form Icons */
.form-icon {
    position: absolute;
    left: 1.2rem;
    top: 3.2rem;
    color: var(--dark-gray);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group:focus-within .form-icon {
    color: var(--deep-orange);
}

/* Textarea Specific */
textarea.form-control {
    resize: vertical;
    min-height: 140px;
    padding-top: 1rem;
}

/* Select Styling */
select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.5rem;
    appearance: none;
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.checkbox-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 1rem;
    accent-color: var(--deep-orange);
    cursor: pointer;
}

.checkbox-item label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    color: var(--navy);
}

.checkbox-item:has(input:checked) {
    background: rgba(255, 87, 34, 0.1);
    border-color: var(--deep-orange);
}

/* Form Agreement */
.form-agreement {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.form-agreement input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    accent-color: var(--deep-orange);
    flex-shrink: 0;
}

.form-agreement label {
    margin: 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.5;
}

.form-agreement a {
    color: var(--deep-orange);
    text-decoration: none;
    font-weight: 600;
}

.form-agreement a:hover {
    text-decoration: underline;
}

/* Form Note */
.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-style: italic;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    position: sticky;
    top: 120px;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 87, 34, 0.1) 0%, transparent 50%);
}

.contact-card-header {
    position: relative;
    z-index: 2;
    margin-bottom: 2.5rem;
}

.contact-card-header h4 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-card-header p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
}

/* Contact Methods */
.contact-methods {
    position: relative;
    z-index: 2;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.method-info h6 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.method-info p {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.method-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* Office Locations */
.office-locations {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.locations-title {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.location-item {
    padding: 1.5rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.location-item:hover {
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.location-item:last-child {
    margin-bottom: 0;
}

.location-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.location-flag {
    font-size: 2rem;
    margin-right: 1rem;
}

.location-header h6 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.location-type {
    color: var(--deep-orange);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.location-details p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.location-details i {
    color: var(--gold);
    width: 16px;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

/* Quick Stats */
.quick-stats {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.quick-stats h5 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.stat-item i {
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 20px;
}

.stat-item span {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Map Section */
.map-section {
    position: relative;
    margin: 0;
}

.map-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 31, 77, 0.8) 0%, transparent 60%);
    z-index: 10;
    display: flex;
    align-items: center;
}

.map-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.map-info h3 {
    color: var(--navy);
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.map-info p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.map-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-feature {
    display: flex;
    align-items: center;
    color: var(--navy);
    font-weight: 600;
}

.map-feature i {
    margin-right: 1rem;
    font-size: 1.1rem;
    width: 18px;
}

/* Emergency Contact Section */
.emergency-contact {
    background: linear-gradient(135deg, var(--deep-orange) 0%, var(--crimson) 100%);
    color: var(--white);
    position: relative;
}

.emergency-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.emergency-content {
    position: relative;
    z-index: 2;
}

.emergency-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: pulse 2s infinite;
}

.emergency-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.emergency-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.emergency-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.emergency-options {
    margin-top: 3rem;
}

.emergency-option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.emergency-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.emergency-option i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.emergency-option h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.emergency-option p {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.emergency-option span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
    .contact-info-wrapper {
        position: static;
        margin-top: 3rem;
    }
    
    .map-overlay {
        background: linear-gradient(180deg, rgba(0, 31, 77, 0.8) 0%, transparent 70%);
    }
    
    .map-info {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .method-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .location-header {
        flex-direction: column;
        text-align: center;
    }
    
    .location-flag {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .map-overlay {
        position: relative;
        background: rgba(0, 31, 77, 0.9);
        padding: 2rem 0;
    }
    
    .map-info {
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        padding: 1.5rem;
        color: var(--white);
    }
    
    .map-info h3 {
        color: var(--white);
    }
    
    .map-info p {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .map-feature {
        color: var(--white);
    }
    
    .emergency-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .form-control {
        padding: 0.8rem 1rem 0.8rem 3rem;
    }
    
    .form-icon {
        top: 2.8rem;
        left: 1rem;
    }
    
    .checkbox-item {
        padding: 0.8rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .office-locations,
    .quick-stats {
        padding: 2rem 1.5rem;
    }
    
    .emergency-option {
        padding: 2rem 1.5rem;
    }
    
    .emergency-option i {
        font-size: 2.5rem;
    }
}

  .logo-h{
            height: 90px;
        }

        /* Add to the beginning of every CSS file */
html, body {
    width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

/* Add to all sections */
.section-name {
    width: 100%;
    overflow: hidden;
}

/* Add to all text elements */
h1, h2, h3, h4, h5, h6, p, span, div {
    word-break: break-word;
}

/* Add to all flex containers */
.flex-container {
    flex-wrap: wrap;
}

/* Add to all icons and fixed elements */
.icon, .fixed-element {
    flex-shrink: 0;
}
.navbar-toggler{
            background-color: #ffc107 !important;
        }