/* KCA Advisors - Calm Ocean Style + Full-Screen Sections Architecture */

/* ========== Reset & Base ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Calm Ocean Color Palette */
    --primary: #4A90A4;
    --secondary: #7BC4C4;
    --accent: #F0F7F4;
    --text: #2C3E50;
    --bg-white: #FFFFFF;
    --bg-light: #F8FBFC;
    --shadow: rgba(74, 144, 164, 0.1);
}

body {
    font-family: 'Lato', 'Open Sans', sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--bg-white);
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

/* ========== Header ========== */
.header-transparent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px var(--shadow);
}

.header-solid {
    position: relative;
    background: var(--bg-white);
    box-shadow: 0 2px 10px var(--shadow);
}

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

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--text);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.phone-cta {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.phone-cta:hover {
    background: var(--secondary);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

/* ========== Full-Screen Sections ========== */
.fullscreen-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    scroll-snap-align: start;
    padding: 4rem 2rem;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 164, 0.85), rgba(123, 196, 196, 0.75));
    z-index: 1;
}

.section-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-section {
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
}

.trust-bar {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.icon {
    font-size: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: white;
    margin: 10px auto;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* ========== Section Navigation ========== */
.section-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-nav .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.section-nav .dot:hover,
.section-nav .dot.active {
    opacity: 1;
    transform: scale(1.3);
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-light);
    z-index: 1001;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.3s ease;
}

/* ========== Content Sections ========== */
.about-section {
    background: var(--bg-light);
}

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

.section-label {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.content-right h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
    font-weight: 600;
    color: var(--primary);
}

.section-image {
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
}

/* ========== Programs Section ========== */
.programs-section {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin: 1rem 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.program-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-content {
    padding: 2rem;
}

.program-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.program-features {
    list-style: none;
    margin: 1.5rem 0;
}

.program-features li:before {
    content: "✓ ";
    color: var(--secondary);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ========== Amenities Section ========== */
.amenities-section {
    background-size: cover;
    background-position: center;
    color: white;
}

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

.intro-text {
    font-size: 1.2rem;
    margin: 1rem 0 3rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.amenity-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    color: var(--text);
}

.amenity-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.amenity-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* ========== Testimonials ========== */
.testimonials-section {
    background: var(--bg-light);
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    text-align: center;
}

.testimonial.active {
    display: block;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.author-name {
    font-weight: 600;
    color: var(--primary);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.3;
    cursor: pointer;
}

.carousel-dots .dot.active {
    opacity: 1;
}

/* ========== CTA Section ========== */
.cta-section {
    background-size: cover;
    background-position: center;
    color: white;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.cta-option {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    color: var(--text);
    text-align: center;
}

.cta-option h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.emergency-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 3rem;
}

/* ========== Footer ========== */
.site-footer {
    background: var(--primary);
    color: white;
    padding: 3rem 2rem 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: white;
}

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

/* ========== Blog Section ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-card h2 {
    font-size: 1.3rem;
    margin: 1rem 0;
    line-height: 1.4;
}

.blog-card h2 a {
    color: var(--text);
    transition: color 0.3s ease;
}

.blog-card h2 a:hover {
    color: var(--primary);
}

.blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.cta-box {
    background: var(--accent);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 4rem 0;
}

.cta-box h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* ========== Inner Pages ========== */
.page-content {
    padding-top: 0;
}

.page-hero {
    background-size: cover;
    background-position: center;
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: white;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 164, 0.85), rgba(123, 196, 196, 0.75));
    z-index: 1;
}

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

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.content-section {
    padding: 4rem 2rem;
}

.bg-light {
    background: var(--bg-light);
}

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

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin: 1rem 0;
}

/* ========== Breadcrumb ========== */
.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.breadcrumb li::after {
    content: " / ";
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb li:last-child::after {
    content: "";
}

/* ========== Process Timeline ========== */
.process-timeline {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.process-step {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

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

.step-icon {
    width: 50px;
    height: 50px;
    color: var(--secondary);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.process-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* ========== Two Column Layout ========== */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.column-content h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.column-image img {
    border-radius: 12px;
    box-shadow: 0 8px 30px var(--shadow);
}

.image-caption {
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
    color: #666;
}

.expect-list {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.expect-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
}

.expect-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.expect-icon svg {
    width: 100%;
    height: 100%;
}

.expect-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* ========== What to Bring ========== */
.bring-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.bring-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

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

.category-icon {
    width: 40px;
    height: 40px;
}

.bring-category-yes .category-icon {
    color: #28a745;
}

.bring-category-no .category-icon {
    color: #dc3545;
}

.category-icon svg {
    width: 100%;
    height: 100%;
}

.bring-list {
    list-style: none;
}

.bring-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

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

.bring-note {
    background: var(--accent);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

/* ========== Families Section ========== */
.families-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.families-info h3 {
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.families-info ul {
    margin: 1rem 0;
}

.families-cta {
    background: var(--accent);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
}

.sidebar-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px var(--shadow);
}

.sidebar-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.sidebar-card .note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

.resource-list {
    list-style: none;
}

.resource-list li {
    margin: 0.5rem 0;
}

.sidebar-image {
    border-radius: 12px;
    overflow: hidden;
}

/* ========== Insurance Section ========== */
.insurance-content {
    max-width: 1000px;
    margin: 0 auto;
}

.insurance-intro,
.accepted-insurance,
.payment-options {
    margin: 3rem 0;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.insurance-logo {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    font-weight: 600;
    color: var(--primary);
    text-align: center;
}

.insurance-note {
    text-align: center;
    margin-top: 2rem;
}

.verification-cta-box {
    background: var(--accent);
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.verification-cta-box h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.verification-cta-box ul {
    text-align: left;
    max-width: 600px;
    margin: 1.5rem auto;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.payment-option {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
}

.payment-option h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.financial-note {
    background: var(--accent);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

/* ========== FAQ Section ========== */
.faq-container {
    max-width: 900px;
    margin: 3rem auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-footer {
    text-align: center;
    margin-top: 3rem;
}

/* ========== Final CTA Section ========== */
.final-cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.final-cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content,
.final-cta-content {
    text-align: center;
    color: white;
}

.cta-content h2,
.final-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: block;
}

.stat-item .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-top: 0.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.cta-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: var(--primary);
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature {
    text-align: center;
}

.cta-feature svg {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
    color: white;
}

.cta-feature span {
    display: block;
    color: white;
    font-weight: 500;
}

.cta-note {
    font-size: 1rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) and (min-width: 769px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .content-split,
    .programs-grid,
    .amenities-grid,
    .cta-options,
    .footer-content,
    .bring-grid,
    .two-column-layout,
    .families-container,
    .insurance-grid,
    .payment-grid,
    .cta-stats,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card img {
        height: 250px;
    }

    .section-nav {
        display: none;
    }

    .process-step {
        grid-template-columns: 1fr;
    }

    .step-number,
    .step-icon {
        justify-self: center;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .department-grid,
    .directions-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ========== Contact Page Styles ========== */
.contact-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-contact-section,
.department-contacts-section,
.map-section,
.directions-section,
.service-area-section {
    padding: 4rem 2rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(74, 144, 164, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-detail {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 1rem 0;
}

.contact-detail a {
    color: var(--primary);
}

.contact-description {
    color: var(--text);
    line-height: 1.6;
    margin: 1rem 0 1.5rem;
}

.contact-action-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.contact-action-btn:hover {
    background: var(--secondary);
}

/* Department Cards */
.department-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.department-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.department-card:hover {
    transform: translateY(-5px);
}

.department-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.department-content {
    padding: 2rem;
}

.department-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.department-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.department-info p {
    margin: 0.5rem 0;
}

.department-info strong {
    color: var(--text-dark);
}

.department-info a {
    color: var(--primary);
    font-weight: 600;
}

.department-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.department-link:hover {
    transform: translateX(5px);
}

/* Map Section */
.map-wrapper {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}

.map-wrapper iframe {
    display: block;
}

.location-details {
    margin-top: 2rem;
}

.location-info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.location-info-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.location-info-card .address,
.location-info-card .coordinates {
    margin: 1rem 0;
    line-height: 1.8;
}

/* Directions Section */
.directions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.direction-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.direction-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.direction-card ol {
    list-style-position: inside;
    line-height: 2;
    color: var(--text);
}

.direction-card li {
    margin: 0.75rem 0;
    padding-left: 0.5rem;
}

.parking-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.parking-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Service Area Section */
.service-area-content {
    margin-top: 2rem;
}

.service-area-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-area-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.area-column h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center;
}

.area-column ul {
    list-style: none;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.area-column li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bg-light);
    color: var(--text);
}

.area-column li:last-child {
    border-bottom: none;
}
