/* ================================
   CSS Variables & Reset
   ================================ */

:root {
    /* Colors */
    --primary-green: #2D5F4C;
    --primary-green-light: #3A7259;
    --primary-green-dark: #1F4235;
    --accent-green: #5A8A75;
    
    --charcoal: #2C2C2C;
    --grey-dark: #4A4A4A;
    --grey-medium: #707070;
    --grey-light: #B8B8B8;
    --grey-lighter: #E8E8E8;
    
    --bg-cream: #FAF8F5;
    --bg-white: #FFFFFF;
    --bg-light-green: #F4F7F5;
    
    /* Typography */
    --font-serif: 'Crimson Pro', Georgia, serif;
    --font-sans: 'Karla', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(45, 95, 76, 0.08);
    --shadow-md: 0 4px 16px rgba(45, 95, 76, 0.12);
    --shadow-lg: 0 8px 32px rgba(45, 95, 76, 0.16);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--bg-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ================================
   Typography
   ================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(2.0rem, 3vw, 2.0rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: 1.25rem;
}

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

a:hover {
    color: var(--primary-green-light);
}

/* ================================
   Utility Classes
   ================================ */

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

.section-ornament {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-green) 100%);
    margin: 0 auto 2rem;
    border-radius: 2px;
    animation: fadeInDown 0.8s ease;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease;
}

/* ================================
   Navigation
   ================================ */

.navbar {
    background-color: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-green);
}

/* Mobile nav logo sizing */
@media (max-width: 768px) {
    .nav-logo {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 1.5rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--grey-dark);
    position: relative;
    font-size: 1.25rem;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

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

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

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

.nav-cta {
    background-color: var(--primary-green);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background-color: var(--primary-green-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--primary-green);
    transition: all var(--transition-fast);
}

/* ================================
   Hero Section
   ================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 2rem 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(90, 138, 117, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at bottom left, rgba(45, 95, 76, 0.06) 0%, transparent 50%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 1s ease;
    height: 100%;
    position: relative;
    display: flex;
}

.hero-quote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-green);
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 3px solid var(--primary-green);
    line-height: 1.6;
}

.hero-quote cite {
    display: block;
    font-size: 1rem;
    font-style: normal;
    color: var(--grey-medium);
    margin-top: 0.75rem;
}

.hero-title {
    font-size: clamp(4rem, 4vw, 5rem);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--grey-dark);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background-color: var(--primary-green);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.125rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.hero-cta:hover {
    background-color: var(--primary-green-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.hero-image {
    animation: fadeInRight 1s ease;
    position: relative;
}

.image-placeholder {
    width:100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--bg-light-green) 0%, var(--bg-white) 100%);
}

.placeholder-content svg {
    width: 250px;
    height: 250px;
}

.image-placeholder img {
    width: 110%;
    height: 110%;
    object-fit: cover;
}

/* ================================
   Scroll Indicator
   ================================ */

.scroll-indicator {
    position: absolute;          
    bottom: 0vh;
    width: 100%             
    transform: none;;          
    z-index: 1000;            
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 1;
    transition: opacity 1s ease;
    animation: fadeInUp 10s ease 1s both;
    cursor: pointer;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid var(--primary-green);
    border-radius: 15px;
    position: relative;
    background-color: rgba(250, 248, 245, 0.3);
    backdrop-filter: blur(5px);
}

.mouse-wheel {
    width: 4px;
    height: 10px;
    background-color: var(--primary-green);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnimation 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.85rem;
    color: var(--primary-green);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes scrollAnimation {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0.5;
    }
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* ================================
   About Section
   ================================ */

.about {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    margin-top: 3rem;
}

.about-image {
    position: relative;
    animation: fadeIn 1s ease;
}

.about-image .image-placeholder {
    aspect-ratio: 3/4;
}

.about-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.about-text {
    animation: fadeIn 1s ease 0.2s both;
}

.about-intro {
    font-size: 1.25rem;
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 1.5rem;
    /*comment_*/
}

.credentials {
    background-color: var(--bg-light-green);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    font-size: 1.2rem;
}

.credentials h3 {
    font-size: 2.0rem;
    margin-bottom: 1rem;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.credentials li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.specializations {
    margin-top: 2rem;
    font-size: 1.2rem;
}

.specializations h3 {
    font-size: 2.0rem;
    margin-bottom: 1rem;
}

.specialization-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem
}

.specialization-tags span {
    background-color: var(--primary-green);
    color: white;
    padding: 0.5rem 1.0rem;
    border-radius: 25px;
    font-size: 1.25rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.specialization-tags span:hover {
    /*no hover for now*/
}

/* ================================
   FAQs Section
   ================================ */

.faqs {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-cream);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    animation: fadeInUp 0.6s ease both;
}

.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.3s; }
.faq-item:nth-child(5) { animation-delay: 0.4s; }
.faq-item:nth-child(6) { animation-delay: 0.5s; }

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-green-light);
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform var(--transition-normal);
    color: var(--primary-green);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-normal);
    padding: 0 2rem;
    font-size: 1.2rem;
}

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

.faq-answer p {
    color: var(--grey-dark);
    line-height: 1.8;
}

/* ================================
   Location Section
   ================================ */

.location {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.location-info h3 {
    font-size: 2.0rem;
    margin-bottom: 1.5rem;
}

address {
    font-style: normal;
    color: var(--grey-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

address p {
    margin-bottom: 0.5rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light-green);
    border-radius: var(--radius-lg);
}

.detail-item svg {
    flex-shrink: 0;
    color: var(--primary-green);
}

.detail-item strong {
    display: block;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

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

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 450px;
}

/* ================================
   Contact Section
   ================================ */

.contact {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-intro {
    font-size: 1.25rem;
    color: var(--grey-dark);
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.contact-method:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-method svg {
    flex-shrink: 0;
    color: var(--primary-green);
}

.contact-method strong {
    display: block;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.contact-method span {
    color: var(--grey-dark);
    font-weight: 500;
}

.contact-note {
    color: var(--grey-medium);
    font-size: 0.95rem;
}

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

.cta-card {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.cta-card h3 {
    color: white;
    font-size: 2.0rem;
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background-color: white;
    color: var(--primary-green);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.125rem;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--bg-cream);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: var(--primary-green);
}

/* ================================
   Contact Form Page
   ================================ */

.contact-form-section {
    padding: 120px 2rem 4rem;
    min-height: 100vh;
    background-color: var(--bg-cream);
}

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

.form-subtitle {
    font-size: 1.125rem;
    color: var(--grey-dark);
    line-height: 1.7;
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--grey-lighter);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--charcoal);
    transition: all var(--transition-fast);
    background-color: 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(45, 95, 76, 0.1);
}

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

.form-helper {
    display: block;
    font-size: 0.85rem;
    color: var(--grey-medium);
    margin-top: 0.5rem;
    font-style: italic;
}

.checkbox-group {
    margin-top: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-text {
    color: var(--grey-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-actions {
    margin-top: 2rem;
    text-align: center;
}

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

.form-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--grey-medium);
}

/* Sidebar */
.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.sidebar-card h3 {
    font-size: 2.0rem;
    margin-bottom: 1.5rem;
}

.process-steps {
    list-style: none;
    counter-reset: step-counter;
}

.process-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.process-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-steps li strong {
    display: block;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.process-steps li p {
    color: var(--grey-dark);
    margin: 0;
    font-size: 0.95rem;
}

.sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.sidebar-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--grey-dark);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.sidebar-contact a:hover {
    background-color: var(--bg-light-green);
    color: var(--primary-green);
}

.sidebar-contact svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

/* ================================
   Footer
   ================================ */

.footer {
    background-color: var(--charcoal);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

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

/* ================================
   Animations
   ================================ */

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        .scroll-indicator {
            bottom: 2rem;
        }
    }
    
    .hero-quote {
        border-left: none;
        border-top: 3px solid var(--primary-green);
        padding-left: 0;
        padding-top: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        grid-template-columns: 1fr;
    }

    .form-sidebar {
        max-width: 600px;
        margin: 0 auto; /* Center the sidebar cards */
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem;
        gap: 1.5rem;
        .scroll-indicator {
            bottom: 1.5rem;
        }
        .scroll-text {
            font-size: 0.75rem;
        }
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .scroll-indicator {
        display: none; /* Hide scroll indicator on mobile to prevent overlap */
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .specialization-tags span {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 100px 1rem 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }

    .specialization-tags span {
        font-size: 0.75rem;
        padding: 0.4rem 0.85rem;
    }
}

/* ================================
   JotForm Iframe Styling
   ================================ */

.jotform-container {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.jotform-container iframe {
    width: 100%;
    min-height: 800px;
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

/* Adjust form container for JotForm */
.form-container:has(.jotform-container) {
    grid-template-columns: 1.5fr 1fr;
}

@media (max-width: 1024px) {
    .jotform-container iframe {
        min-height: 1000px;
    }
}

@media (max-width: 768px) {
    .jotform-container iframe {
        min-height: 1200px;
    }
}

@media (max-width: 768px) {
    .form-container:has(.jotform-container) {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
    
    .jotform-container iframe {
        min-height: 1400px !important; /* Ensure iframe has enough height */
        height: 1400px !important;
    }
}

@media (max-width: 480px) {
    .jotform-container iframe {
        min-height: 1600px !important;
        height: 1600px !important;
    }
}