:root {
    --primary-color: #1e4d6b;
    --secondary-color: #2c88b0;
    --accent-color: #e67e22;
    --text-color: #2c3e50;
    --light-bg: #f5f8fa;
    --dark-bg: #34495e;
    --white: #ffffff;
    --error: #e74c3c;
    --success: #27ae60;
}

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

html {
    font-size: 62.5%; /* This makes 1rem = 10px */
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 2rem; /* 20px */
}

h1 {
    font-size: 4.8rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

h3 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

/* Header and Navigation */
header {
    background-color: var(--white);
    padding: 1rem 4rem;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

main {
    margin-top: 0;
}

.hero-section {
    padding-top: 0;
}

nav {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--primary-color);
}

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

.mobile-menu .logo img {
    width: 240px;
    height: auto;
}

@media (max-width: 768px) {
    .logo img {
        width: 200px;
    }
    
    .mobile-menu .logo img {
        width: 200px;
    }
}

@media (max-width: 576px) {
    .logo img {
        width: 180px;
    }
    
    .mobile-menu .logo img {
        width: 180px;
    }
}

nav ul {
    display: flex;
    gap: 3rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    header {
        padding: 1rem 2rem;
    }
    
    nav ul li a {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    header {
        padding: 0.8rem 1.5rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-color: #1e4d6b;
    color: var(--white);
    display: flex;
    align-items: stretch;
}

.hero-content {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 550px;
    align-items: center;
}

.hero-content-left {
    padding: 8rem 12rem 8rem 8rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 6.4rem;
    font-weight: 700;
    margin-bottom: 2.4rem;
    line-height: 1.1;
    color: var(--white);
}

.hero-description {
    font-size: 2.2rem;
    margin-bottom: 4rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 80%;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.6rem 2.4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.badge-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

.badge-text {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
}

/* Hero Form */
.hero-form-container {
    background: var(--white);
    height: calc(100vh - 8rem);
    margin: 4rem;
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.hero-form h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--primary-color);
    line-height: 1.2;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.8rem 2rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.6rem;
    color: #1e293b;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

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

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

.cta-button {
    width: 100%;
    padding: 2rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(230, 126, 34, 0.2);
}

@media (max-width: 1400px) {
    .hero-content-left {
        padding: 6rem 8rem 6rem 6rem;
    }
    
    .hero-form-container {
        padding: 5rem;
        margin: 3rem;
        height: calc(100vh - 6rem);
    }
}

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr 500px;
    }
    
    .hero-content-left {
        padding: 5rem 6rem 5rem 5rem;
    }
    
    .hero-form-container {
        padding: 4rem;
        margin: 2.5rem;
        height: calc(100vh - 5rem);
    }
}

@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-content-left {
        padding: 6rem 3rem;
        text-align: center;
    }
    
    .hero-form-container {
        margin: 0;
        height: auto;
        border-radius: 0;
        padding: 6rem 3rem;
    }
}

@media (max-width: 576px) {
    .hero-content-left {
        padding: 4rem 2rem;
    }
    
    .hero-form-container {
        padding: 4rem 2rem;
    }
}

/* Services Section */
.services-section {
    padding: 10rem 8rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(44, 136, 176, 0.2), transparent);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 8rem;
}

.section-header h2 {
    font-size: 4.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.8rem;
    color: var(--text-color);
    line-height: 1.6;
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 2rem;
    padding: 4rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(44, 136, 176, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-1rem);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-content {
    color: var(--white);
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-content {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.service-icon {
    width: 8rem;
    height: 8rem;
    background: rgba(44, 136, 176, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 3.2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-title {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--white);
}

.service-description {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 3rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: rgba(255, 255, 255, 0.9);
}

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

.service-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.service-card:hover .service-feature {
    color: rgba(255, 255, 255, 0.9);
}

.service-feature i {
    color: var(--accent-color);
    font-size: 1.8rem;
}

.service-card:hover .service-feature i {
    color: var(--white);
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Responsive adjustments for services */
@media (max-width: 1200px) {
    .services-section {
        padding: 8rem 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-header h2 {
        font-size: 3.6rem;
    }
    
    .service-card {
        padding: 3rem;
    }
}

/* Process Section */
.process-section {
    padding: 8rem 2rem;
    background-color: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 5rem;
    height: 5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    margin: 0 auto 2rem;
}

/* About Section */
.about-section {
    padding: 8rem 2rem;
    background-color: var(--light-bg);
}

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

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

.certifications {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
}

.cert-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 0.2rem 1rem rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
}

.feature-icon i {
    font-size: 2.8rem;
}

.feature-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 2rem;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
}

.testimonial-rating {
    color: var(--accent-color);
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.testimonial-author {
    margin-top: 2rem;
    font-weight: 500;
    color: var(--primary-color);
}

/* Footer */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 2rem;
}

.footer-section i {
    margin-right: 1rem;
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Page Styles */
.contact-page {
    background-color: var(--light-bg);
}

.contact-hero {
    position: relative;
    height: 40vh;
    min-height: 400px;
    background-image: linear-gradient(rgba(30, 77, 107, 0.8), rgba(30, 77, 107, 0.8)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 6rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 77, 107, 0.95) 0%, rgba(44, 136, 176, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 2.2rem;
    opacity: 0.9;
}

.contact-section {
    padding-top: 4rem;
    padding-bottom: 6rem;
}

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

@media (max-width: 768px) {
    .contact-section {
        padding-top: 3rem;
        padding-bottom: 4rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    padding: 0 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.info-card.primary-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.info-card.primary-card .card-header h2 {
    color: var(--white);
}

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

.card-header h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.card-header p {
    font-size: 1.6rem;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.icon-wrapper {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.item-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.item-content p {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.availability {
    font-size: 1.4rem;
    opacity: 0.8;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 0.8rem;
}

.hours-item .day {
    font-weight: 600;
}

.emergency-notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 0.8rem;
    font-weight: 600;
}

.emergency-notice i {
    font-size: 1.8rem;
}

.contact-info-item i {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.contact-info-item h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
}

.contact-info-item p {
    font-size: 1.5rem;
    line-height: 1.5;
}

.contact-info-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--accent-color);
}

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

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-form-wrapper {
    position: relative;
}

.form-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 4rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.required {
    color: var(--accent-color);
}

.form-group select {
    width: 100%;
    padding: 1.4rem;
    border: 0.2rem solid var(--light-bg);
    border-radius: 0.8rem;
    font-size: 1.6rem;
    background-color: var(--white);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1.6rem;
}

.form-footer {
    margin-top: 4rem;
}

.form-notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1.4rem;
}

.form-notice i {
    color: var(--secondary-color);
}

.service-areas-section {
    padding: 6rem 0;
    background: var(--white);
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-content h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3.2rem;
    color: var(--primary-color);
}

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

.area-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.area-card:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-0.5rem);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3.6rem;
    }

    .hero-content p {
        font-size: 1.8rem;
    }

    .form-card {
        padding: 3rem;
    }

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

@media (max-width: 480px) {
    .contact-hero {
        min-height: 300px;
    }

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

    .form-card {
        padding: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-badges {
        justify-content: center;
    }

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

    .about-content {
        padding-right: 0;
        text-align: center;
    }

    .certifications {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 2rem;
    }

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

    .hero-text p {
        font-size: 1.8rem;
    }

    .badge {
        padding: 0.8rem 1.5rem;
    }

    .service-card,
    .testimonial-card {
        padding: 2rem;
    }

    .process-timeline {
        gap: 2rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 56.25%; /* Makes 1rem = 9px */
    }

    body {
        font-size: 1.8rem; /* 18px minimum */
    }

    .hero h1 {
        font-size: 3.6rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessibility */
:focus {
    outline: 0.3rem solid var(--accent-color);
    outline-offset: 0.3rem;
}

footer {
    background-color: #333;
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Form success and error messages */
.form-success-message,
.form-error-message {
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.form-success-message {
    background-color: rgba(72, 187, 120, 0.1);
    border: 1px solid #48bb78;
    color: #2f855a;
}

.form-error-message {
    background-color: rgba(245, 101, 101, 0.1);
    border: 1px solid #f56565;
    color: #c53030;
}

.form-success-message i,
.form-error-message i {
    font-size: 2.4rem;
}

.form-success-message p,
.form-error-message p {
    font-size: 1.6rem;
    margin: 0;
}

.form-error {
    background-color: #ffebee;
    color: #c62828;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #ef9a9a;
    font-size: 14px;
    text-align: center;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 4rem;
    background-color: var(--light-bg);
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        padding: 4rem 2rem;
    }

    .hero-content-left {
        padding-right: 0;
        margin-bottom: 4rem;
    }

    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .badge-item {
        width: 100%;
    }
}

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

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.6rem;
    color: var(--white);
}

.contact-info {
    font-size: 1.5rem;
    line-height: 1.5;
}

.company-name {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--accent-color);
}

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

.contact-item i {
    color: var(--accent-color);
    font-size: 1.6rem;
    min-width: 1.6rem;
    text-align: center;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.contact-item address {
    font-style: normal;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .contact-item {
        gap: 1rem;
    }
}

/* Thank You Page Styles */
.thank-you-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    background-color: var(--white);
}

.thank-you-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-content {
    background: var(--white);
    padding: 4rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thank-you-content .fa-check-circle {
    font-size: 6rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    font-size: 3.6rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thank-you-content .message {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.next-steps {
    margin: 4rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(30, 77, 107, 0.05);
    border-radius: 0.8rem;
}

.next-steps li i {
    font-size: 2.4rem;
    color: var(--accent-color);
    margin-right: 1.5rem;
    min-width: 2.4rem;
}

.next-steps li span {
    font-size: 1.6rem;
    color: var(--text-color);
    line-height: 1.5;
}

.return-home {
    margin-top: 4rem;
}

.return-home .btn {
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 4rem 2rem;
    }

    .thank-you-content {
        padding: 3rem 2rem;
    }

    .thank-you-content h1 {
        font-size: 3rem;
    }

    .next-steps li {
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {
    .thank-you-content {
        padding: 2rem 1.5rem;
    }

    .thank-you-content .fa-check-circle {
        font-size: 5rem;
    }

    .thank-you-content h1 {
        font-size: 2.6rem;
    }

    .thank-you-content .message {
        font-size: 1.6rem;
    }

    .next-steps h2 {
        font-size: 2rem;
    }
}

/* Map Container Styles */
.map-container {
    margin-top: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 300px;
}

@media (max-width: 768px) {
    .map-container {
        margin-top: 2rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .map-container {
        margin-top: 1.5rem;
    }
    
    .map-container iframe {
        height: 200px;
    }
}
