:root {
            --primary-red: #cf0202;
            --light-red: #ffa8a8;
            --white: #ffffff;
            --black: #000000;
            --dark-gray: #2f3d4d;
            --body-gray: #333333;
            --light-gray: #f5f5f5;
            --neutral-100: #111111;
            --neutral-200: #222222;
            --neutral-300: #444444;
            --neutral-400: #666666;
            --neutral-500: #888888;
            --neutral-600: #aaaaaa;
            --neutral-700: #cccccc;
            --neutral-800: #e5e5e5;
            --neutral-900: #f7f7f7;
            --transition: all 0.3s ease;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            font-size: 16px;
            line-height: 1.5;
            color: var(--body-gray);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--dark-gray);
        }

.main-navbar {
            position: fixed;
            top: 40px;
            left: 0;
            width: 100%;
            background: transparent;
            z-index: 999;
            transition: var(--transition);
            padding: 15px 0;
            color: var(--dark-gray);
        }

        .main-navbar.scrolled {
            background: var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            top:0;
        }

        .main-navbar .nav-links li {
            color: var(--white);
        }

        .main-navbar .logo {
            color: var(--dark-gray);
        }

        .main-navbar.scrolled .nav-links a {
            color: var(--dark-gray);
        }

        .main-navbar.scrolled .logo {
            color: var(--dark-gray);
        }
        .mobile-toggle{
            color: var(--dark-gray);
        }

/* contact.css */
.contact-hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1587560699334-bea93391dcef?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0px;
}

.contact-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.contact-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 20px;
    color: var(--white);
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--neutral-600);
}

/* Why Contact Section */
.why-contact {
    background: var(--light-gray);
    padding: 100px 0;
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.contact-purposes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.purpose-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.purpose-icon {
    width: 60px;
    height: 60px;
    background: var(--light-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-red);
    font-size: 24px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: var(--white);
    display: flex;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info-side {
    position: relative;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.95) 65%,
        transparent 120%
    );
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details h3 {
    color: var(--primary-red);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--light-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.contact-text p {
    color: var(--neutral-400);
    margin-bottom: 0;
}

.business-hours {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--neutral-700);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--neutral-400);
}

/* Form Styles */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    color: var(--primary-red);
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--neutral-700);
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(207, 2, 2, 0.1);
}

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

.form-status {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: none;
}

.form-status.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-status.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

.contact-checkbox {
   display: flex; 
   gap: 30px; 
   margin-top: 10px; 
}

.checkbox-wrapper-16 *,
  .checkbox-wrapper-16 *:after,
  .checkbox-wrapper-16 *:before {
  box-sizing: border-box;
}

.checkbox-wrapper-16 .checkbox-input {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile {
  border-color: var(--primary-red);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: var(--primary-red);
}

.checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile:before {
  transform: scale(1);
  opacity: 1;
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  color: #fff;
  content: "\ea5e";
  font-family: "tabler-icons"; 
}

.checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile .checkbox-icon,
  .checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile .checkbox-label {
  color: var(--primary-red);
}

.checkbox-wrapper-16 .checkbox-input:focus + .checkbox-tile {
  border-color: var(--primary-red);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #fcb5b5;
}

.checkbox-wrapper-16 .checkbox-input:focus + .checkbox-tile:before {
  transform: scale(1);
  opacity: 1;
}

.checkbox-wrapper-16 .checkbox-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  width:9rem;
  border-radius: 0.5rem;
  border: 2px solid #d9b5b5;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
}

.checkbox-wrapper-16 .checkbox-tile:before {
  content: "";
  font-size: 8px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #d9b5b5;
  border-radius: 50%;
  top: 0.25rem;
  left: 0.25rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.25s ease;
}

.checkbox-wrapper-16 .checkbox-tile:hover {
  border-color: var(--primary-red);
}

.checkbox-wrapper-16 .checkbox-tile:hover:before {
  transform: scale(1);
  opacity: 1;
}

.checkbox-wrapper-16 .checkbox-icon {
  transition: 0.375s ease;
  color: #494949;
}

.checkbox-wrapper-16 .checkbox-icon svg {
  width: 2rem;
  height: 2rem;
}

.checkbox-wrapper-16 .checkbox-label {
  color: #707070;
  transition: 0.375s ease;
  text-align: center;
  font-size: 12px;
}
/* Testimonials Slider */
.contact-testimonials {
    background: var(--light-gray);
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 500s linear infinite;
    width: max-content;
}

.testimonial-item {
    flex: 0 0 650px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.client-info h4 {
    margin-bottom: 5px;
    color: var(--primary-red);
}

.client-role {
    color: var(--neutral-500);
    font-size: 14px;
}

.stars {
    color: #ffc107;
}

.testimonial-text {
    font-style: italic;
    color: var(--neutral-400);
}

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

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

/* FAQs Section */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-column h3 {
    color: var(--primary-red);
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--neutral-800);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: var(--light-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-gray);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--neutral-900);
}

.faq-question.active {
    background: var(--primary-red);
    color: var(--white);
}

.faq-icon {
    transition: var(--transition);
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer.show {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 0;
    color: var(--neutral-400);
}

/* Responsive */
@media (max-width: 992px) {
    .main-navbar.scrolled {
        margin-top:0px;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 10px;
        
    }
    
    .contact-info-overlay {
        background: rgba(255, 255, 255, 0.95);
        padding: 10px;
    }
    .contact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-navbar.scrolled {
        margin-top:0px;
    }
    .contact-form-section {
        flex-direction: column;
        flex-wrap: wrap;
        flex: 1 1 auto;
        max-width: 100%;
        
    }
    .container {
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 25px;
        }
        .contact-info-side {
        width: 100%;
    }
    .contact-form{
        width: 100%;
    }
    .contact-checkbox{
        gap: 20px;
    }
    .stat-card{
        padding: 40px 10px;
    }
    .checkbox-wrapper-16{
        scale: 1;
    }
    .checkbox-wrapper-16 .checkbox-tile{
        width: 6rem;
        min-height: 4.8rem;
    }
    .checkbox-wrapper-16 .checkbox-label{
        font-size: 10px;
    }
    .checkbox-wrapper-16 .checkbox-icon svg{
        width: 1.5rem;
        height: 1.5rem;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
        scale: 1;
    }

    .contact-hero {
        height: 50vh;
        margin-top: 80px;
    }
    
    .contact-stats {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .testimonial-item {
        flex: 0 0 300px;
    }
}

@media (max-width: 576px) {
    .main-navbar.scrolled {
        margin-top:0px;
    }
    .contact-form-section {
        flex-direction: column;
        flex-wrap: wrap;
        flex: 1 1 auto;
        max-width: 100%;
        margin-right:5px;
    }
    .container {
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .contact-info-side {
        width: 100%;
    }
    .contact-form{
        width: 100%;
    }
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .contact-info-overlay {
        padding: 20px;
    }
    .checkbox-wrapper-16 .checkbox-tile{
        width: 5.7rem;
        min-height: 3.8rem;
    }
    .checkbox-wrapper-16 .checkbox-label{
        font-size: 10px;
    }
    .checkbox-wrapper-16 .checkbox-icon svg{
        width: 1rem;
        height: 1rem;
    }
}


@media (max-width: 390px) {
    .contact-stats {
        grid-template-columns: 1fr;
    }
    .contact-info-side {
        width: 100%;
    }
    .contact-form{
        width: 100%;
    }
    .contact-checkbox{
        gap: 20px;
    }
    .checkbox-wrapper-16 .checkbox-tile{
        width: 5rem;
        min-height: 3.8rem;
    }
}