:root {
    --primary-green: #3CB371;
    --primary-green-dark: #2e8b57;
    --gold: #FFD700;
    --near-black: #222222;
    --off-white: #F8F8F8;
    --dark-grey: #666666;
    --white: #ffffff;
    
    --header-height: 90px;
    --header-height-scrolled: 70px;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.6s ease-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--near-black);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

section {
    padding: 80px 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--white);
    z-index: 1000;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    height: var(--header-height-scrolled);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: block;
    width: 200px;
    transition: var(--transition-fast);
}

.header.scrolled .logo {
    width: 160px;
}

.logo img {
    width: 100%;
    height: auto;
}

.nav-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 40px;
    }
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    position: relative;
    font-weight: 500;
    font-size: 15px;
    color: var(--near-black);
    padding: 5px 0;
    transition: var(--transition-fast);
}

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

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

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link.active {
    color: var(--primary-green);
    font-weight: 600;
}

.nav-link.active::after {
    background: var(--gold);
}

.header-ctas {
    display: none;
    align-items: center;
    gap: 15px;
}

@media (min-width: 1024px) {
    .header-ctas {
        display: flex;
    }
}

.call-now {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--near-black);
    font-size: 14px;
}

.call-now svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

.call-now:hover {
    color: var(--primary-green);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--primary-green);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(60, 179, 113, 0.4);
}

.btn-primary.full-width {
    width: 100%;
}

.header-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .header-mobile {
        display: none;
    }
}

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

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--near-black);
    transition: var(--transition-fast);
}

.mobile-call {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary-green);
    border-radius: 50%;
}

.mobile-call svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    transition: right var(--transition-medium);
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--near-black);
}

.mobile-nav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.mobile-nav-link {
    font-size: 24px;
    font-weight: 600;
    color: var(--near-black);
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--primary-green);
}

.mobile-menu-cta {
    margin-bottom: 30px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: var(--header-height);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero .btn-primary {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.4rem;
    }
}

/* Page Heroes */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: var(--header-height);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 60px 20px;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .page-hero {
        min-height: 60vh;
    }
    
    .page-hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .page-hero h1 {
        font-size: 3.5rem;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--near-black);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: var(--off-white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card-content {
    padding: 30px;
}

.service-card-content h3 {
    font-size: 1.5rem;
    color: var(--near-black);
    margin-bottom: 1rem;
}

.service-card-content p {
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-green);
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--primary-green-dark);
    gap: 12px;
}

.service-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    border-radius: 50%;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--near-black);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--dark-grey);
    font-size: 0.95rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(60, 179, 113, 0.03) 0%, rgba(255, 215, 0, 0.03) 100%);
    pointer-events: none;
}

.testimonials-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--off-white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--near-black);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-green);
    line-height: 0;
    vertical-align: -15px;
    margin-right: 5px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--near-black);
    margin-bottom: 0;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--dark-grey);
    margin-bottom: 0;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.testimonial-nav button:hover {
    background: var(--primary-green);
}

.testimonial-nav button:hover svg {
    fill: var(--white);
}

.testimonial-nav button svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-green);
    transition: var(--transition-fast);
}

/* ============================================
   CONTACT CTA SECTION
   ============================================ */
.contact-cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2e9e5a 100%);
    padding: 80px 0;
}

.contact-cta-content {
    text-align: center;
    color: var(--white);
}

.contact-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta-content .btn-primary {
    background: var(--white);
    color: var(--primary-green);
}

.contact-cta-content .btn-primary:hover {
    background: var(--off-white);
    transform: scale(1.02);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--near-black);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(60, 179, 113, 0.1);
}

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

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

.form-success {
    display: none;
    padding: 20px;
    background: #d4edda;
    color: #155724;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.form-success.show {
    display: block;
}

/* ============================================
   SERVICE DETAIL SECTIONS
   ============================================ */
.service-detail {
    background: var(--white);
}

.service-detail:nth-child(even) {
    background: var(--off-white);
}

.service-detail-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .service-detail-inner {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-detail:nth-child(even) .service-detail-image {
        order: 2;
    }
}

.service-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-detail-content h2 {
    font-size: 2rem;
    color: var(--near-black);
    margin-bottom: 1rem;
}

.service-detail-content > p {
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-list {
    margin-bottom: 1.5rem;
}

.service-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--near-black);
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--primary-green);
    border-radius: 50%;
}

/* Service Process */
.service-process {
    background: var(--off-white);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.process-step:not(:last-child)::after {
    display: none;
}

@media (min-width: 1024px) {
    .process-step:not(:last-child)::after {
        display: block;
        content: '';
        position: absolute;
        top: 50%;
        right: -15px;
        width: 30px;
        height: 2px;
        background: var(--gold);
        transform: translateY(-50%);
    }
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.1rem;
    color: var(--near-black);
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--dark-grey);
    margin-bottom: 0;
}

/* ============================================
   PROJECTS GRID
   ============================================ */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.project-card:hover img {
    transform: scale(1.03);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.project-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
    background: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--dark-grey);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.about-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.values-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.values-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list strong {
    color: var(--primary-green);
}

/* Team Grid */
.team-section {
    background: var(--off-white);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-fast);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.team-card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-card-content {
    padding: 20px;
}

.team-card-content h3 {
    font-size: 1.25rem;
    color: var(--near-black);
    margin-bottom: 0.25rem;
}

.team-card-content p {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Certifications */
.certifications-section {
    background: var(--white);
}

.certifications-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.certification-item {
    background: var(--off-white);
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    flex: 1 1 250px;
    max-width: 300px;
}

.certification-item h4 {
    color: var(--primary-green);
    font-size: 1rem;
    margin-bottom: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

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

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.contact-item-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-item-content p {
    color: var(--dark-grey);
    margin-bottom: 0;
}

.contact-item-content a {
    color: var(--primary-green);
    font-weight: 600;
}

.contact-map {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Emergency Section */
.emergency-section {
    background: var(--near-black);
    color: var(--white);
    text-align: center;
}

.emergency-section h2 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.emergency-section p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    padding: 20px 40px;
    background: var(--primary-green);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.emergency-phone:hover {
    background: var(--primary-green-dark);
    transform: scale(1.02);
}

.emergency-phone svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-cta {
    background: var(--primary-green);
    padding: 40px 0;
    text-align: center;
}

.footer-cta h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-cta .btn-primary {
    background: var(--white);
    color: var(--primary-green);
}

.footer {
    background: var(--near-black);
    color: var(--white);
    padding: 60px 0 30px;
}

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

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-green);
}

.footer-logo {
    width: 180px;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-about p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-green);
    transition: width var(--transition-fast);
}

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

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-green);
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--primary-green);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--gold);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
    transition: var(--transition-fast);
}

.social-link:hover svg {
    fill: var(--near-black);
}

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

.footer-bottom p {
    color: #888;
    font-size: 0.875rem;
    margin-bottom: 0;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll animations */
@media (prefers-reduced-motion: reduce) {
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
