/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #DC2626;
    --deep-sky-blue: #0EA5E9;
    --black: #1F2937;
    --dark-grey: #374151;
    --medium-grey: #6B7280;
    --light-grey: #E5E7EB;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--primary-red) 0%, var(--deep-sky-blue) 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Styles */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--black);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-grey);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--black);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--medium-grey);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background: #B91C1C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--medium-grey);
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--light-grey);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-red);
}

.service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--medium-grey);
    line-height: 1.6;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(14, 165, 233, 0.03) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--medium-grey);
    font-weight: 500;
}

.about-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Team Preview */
.team-preview {
    padding: 80px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.team-member:hover {
    background: var(--light-grey);
    transform: translateY(-3px);
}

.member-image {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--medium-grey);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.contact-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--medium-grey);
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--light-grey);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--light-grey);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid var(--dark-grey);
    padding-top: 2rem;
    text-align: center;
    color: var(--light-grey);
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--medium-grey);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Detail */
.services-detail {
    padding: 60px 0;
}

.service-detail-item {
    margin-bottom: 4rem;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-item.reverse .service-detail-content {
    direction: rtl;
}

.service-detail-item.reverse .service-detail-text {
    direction: ltr;
}

.service-detail-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.service-detail-text p {
    font-size: 1.125rem;
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-detail-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-text ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-grey);
}

.service-detail-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-grey);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-grey);
}

.service-detail-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Service Process */
.service-process {
    padding: 80px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--medium-grey);
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

/* Team Section */
.team-section {
    padding: 60px 0;
}

.team-category {
    margin-bottom: 4rem;
}

.team-category h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2rem;
    text-align: center;
}

.team-member-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--light-grey);
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-red);
}

.member-image {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.position {
    color: var(--primary-red);
    font-weight: 500;
    margin-bottom: 1rem;
}

.bio {
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill {
    background: var(--light-grey);
    color: var(--dark-grey);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

.member-contact {
    display: flex;
    gap: 1rem;
}

.contact-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--deep-sky-blue);
}

/* Why Join Section */
.why-join {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(14, 165, 233, 0.03) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.benefit p {
    color: var(--medium-grey);
    line-height: 1.5;
}

/* Company Story */
.company-story {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.125rem;
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.mv-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.mv-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.mv-card p {
    color: var(--medium-grey);
    line-height: 1.6;
    font-size: 1.125rem;
}

/* Core Values */
.core-values {
    padding: 80px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: var(--light-grey);
    transform: translateY(-3px);
}

.value-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--medium-grey);
    line-height: 1.5;
}

/* Milestones */
.milestones {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(14, 165, 233, 0.03) 100%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-red);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
    margin: 0 2rem;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    flex: 1;
    max-width: 300px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--medium-grey);
    line-height: 1.5;
}

/* Statistics */
.statistics {
    padding: 80px 0;
    background: var(--black);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-grey);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--dark-grey);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--medium-grey);
    font-size: 0.875rem;
}

/* Contact Hero */
.contact-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-hero-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.contact-hero-text p {
    font-size: 1.25rem;
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.emergency-notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-red);
}

.emergency-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.emergency-text p {
    color: var(--medium-grey);
    margin: 0;
}

.emergency-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: #B91C1C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.emergency-btn strong {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--light-grey);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-red);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-details {
    text-align: left;
}

.contact-details p {
    margin-bottom: 1rem;
}

.contact-details strong {
    color: var(--black);
    display: block;
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--deep-sky-blue);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(14, 165, 233, 0.03) 100%);
}

.contact-form-content {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.125rem;
    color: var(--medium-grey);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--light-grey);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--white);
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.map-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.map-info p {
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.directions-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.direction-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-grey);
}

.map-placeholder {
    background: var(--light-grey);
    border-radius: 12px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.map-placeholder p {
    margin-top: 1rem;
    color: var(--medium-grey);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-grey);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
}

.faq-question svg {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--medium-grey);
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Deep Sky Blue Accents */
.btn-primary:hover {
    background: #0284C7;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-link:hover {
    color: var(--deep-sky-blue);
}

.nav-link::after {
    background: var(--deep-sky-blue);
}

.service-card:hover {
    border-color: var(--deep-sky-blue);
}

.team-member:hover {
    background: rgba(14, 165, 233, 0.1);
}

.contact-link:hover {
    color: var(--deep-sky-blue);
}

.contact-details a:hover {
    color: var(--deep-sky-blue);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--deep-sky-blue);
}

/* Enhanced Service Cards */
.service-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(14, 165, 233, 0.02) 100%);
    border: 1px solid var(--light-grey);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
    border-color: var(--deep-sky-blue);
}

/* Enhanced Team Member Cards */
.team-member-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(14, 165, 233, 0.03) 100%);
    border: 1px solid var(--light-grey);
    transition: all 0.4s ease;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
    border-color: var(--deep-sky-blue);
}

/* Enhanced Contact Cards */
.contact-info-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(14, 165, 233, 0.03) 100%);
    border: 1px solid var(--light-grey);
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
    border-color: var(--deep-sky-blue);
}

/* Enhanced Emergency Button */
.emergency-btn {
    background: linear-gradient(135deg, var(--primary-red) 0%, #B91C1C 100%);
    transition: all 0.4s ease;
}

.emergency-btn:hover {
    background: linear-gradient(135deg, var(--deep-sky-blue) 0%, var(--primary-red) 100%);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.3);
}

/* Enhanced Feature Badges */
.feature {
    background: linear-gradient(135deg, var(--light-grey) 0%, rgba(14, 165, 233, 0.1) 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.2) 100%);
    transform: translateY(-2px);
}

/* Enhanced Skill Tags */
.skill {
    background: linear-gradient(135deg, var(--light-grey) 0%, rgba(14, 165, 233, 0.1) 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
    transition: all 0.3s ease;
}

.skill:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(14, 165, 233, 0.3) 100%);
    transform: translateY(-1px);
}

/* Enhanced Form Elements */
.contact-form {
    background: linear-gradient(135deg, var(--white) 0%, rgba(14, 165, 233, 0.02) 100%);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: linear-gradient(135deg, var(--white) 0%, rgba(14, 165, 233, 0.02) 100%);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--deep-sky-blue);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/* Enhanced FAQ Items */
.faq-item {
    background: linear-gradient(135deg, var(--white) 0%, rgba(14, 165, 233, 0.02) 100%);
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--deep-sky-blue);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.15);
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(14, 165, 233, 0.1) 100%);
}

/* Enhanced Testimonials */
.testimonial {
    background: linear-gradient(135deg, var(--white) 0%, rgba(14, 165, 233, 0.02) 100%);
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.4s ease;
}

.testimonial:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.15);
    border-color: var(--deep-sky-blue);
}

/* Enhanced Benefits */
.benefit {
    background: linear-gradient(135deg, var(--white) 0%, rgba(14, 165, 233, 0.03) 100%);
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.4s ease;
}

.benefit:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.15);
    border-color: var(--deep-sky-blue);
}

/* Enhanced Value Items */
.value-item {
    transition: all 0.3s ease;
}

.value-item:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(14, 165, 233, 0.1) 100%);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.15);
}

/* Enhanced Mission/Vision Cards */
.mv-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(14, 165, 233, 0.03) 100%);
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
    border-color: var(--deep-sky-blue);
}

/* Enhanced Timeline */
.timeline-content {
    background: linear-gradient(135deg, var(--white) 0%, rgba(14, 165, 233, 0.03) 100%);
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.15);
    border-color: var(--deep-sky-blue);
}

/* Enhanced Step Cards */
.step {
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
}

.step:hover .step-number {
    background: linear-gradient(135deg, var(--deep-sky-blue) 0%, var(--primary-red) 100%);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

/* Enhanced Direction Features */
.direction-feature {
    transition: all 0.3s ease;
}

.direction-feature:hover {
    color: var(--deep-sky-blue);
    transform: translateX(4px);
}

/* Enhanced Service Detail Images */
.service-detail-image img {
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
}

.service-detail-image img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--black) 0%, rgba(14, 165, 233, 0.1) 100%);
}

.cta-section .btn-secondary:hover {
    background: var(--deep-sky-blue);
    color: var(--white);
    border-color: var(--deep-sky-blue);
}

/* Enhanced Map Placeholder */
.map-placeholder {
    background: linear-gradient(135deg, var(--light-grey) 0%, rgba(14, 165, 233, 0.1) 100%);
    border: 2px dashed rgba(14, 165, 233, 0.3);
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    border-color: var(--deep-sky-blue);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail-item.reverse .service-detail-content {
        direction: ltr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .team-member-card {
        margin-bottom: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: -60px;
        margin: 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .map-content {
        grid-template-columns: 1fr;
    }
    
    .directions-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
}
