/* Base Styles & Variables */
:root {
    --primary-red: #DC2626;
    --primary-yellow: #FFB300;  /* Updated to golden orange */
    --accent-red: #EF4444;
    --accent-yellow: #FFA500;  /* Updated to orange */
    --pale-yellow: #FFF3B0;   /* New pale yellow */
    --dark-gray: #1F2937;
    --medium-gray: #6B7280;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
    --black: #111827;
    --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-script: 'Dancing Script', cursive;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem; /* Account for fixed header */
}

/* Section Animation */
.section-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

body {
    font-family: var(--font-sans);
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

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

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.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;
}

.text-red {
    color: var(--primary-red);
}

.text-yellow {
    color: var(--primary-yellow);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* ===== NAVBAR STYLES ===== */
/* Navbar Container */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Container for content */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation container */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

/* Logo */
.logo {
    margin: -0.25rem 0 0 -0.5rem;
    display: flex;
    align-items: center;
    transform: translateY(-4px);
}

.logo img {
    height: 2.5rem;
    width: auto;
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin-left: auto;
    padding-right: 1.5rem;
}

/* Navigation Links */
.nav-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1F2937;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #DC2626;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: #DC2626;
}

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

/* Navbar on scroll */
.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }
    
    .desktop-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 1rem 0;
        gap: 0.5rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .desktop-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        width: 30%;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent scroll when mobile menu is open */
body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-gray);
    padding: 0.5rem 0.75rem;
    margin: 0 0.25rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

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

.nav-link.active {
    font-weight: 600;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--dark-gray);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.menu-toggle:hover, .menu-toggle:focus {
    color: var(--primary-red);
    outline: none;
}

.mobile-menu {
    display: none;
    background-color: var(--white);
    border-top: 1px solid var(--light-gray);
    padding: 1rem 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-menu.show {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--primary-red);
    background-color: rgba(220, 38, 38, 0.05);
}

/* Hero Section - Matching NDIS Page */
.hero {
    background: linear-gradient(135deg, #FFF3B0 0%, #FFB300 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.hero .container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #111827;
    line-height: 1.1;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 2.5rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.contact-badge {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.contact-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.contact-badge i {
    font-size: 1rem;
    color: #DC2626;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.contact-badge > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.badge-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6B7280;
    margin: 0 0 0.25rem 0;
}

.badge-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    transition: color 0.3s ease;
}

.badge-link:hover {
    color: #DC2626;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
    min-width: 0; /* Allows text to wrap properly */
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.1rem;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-link {
    font-size: 0.75rem;
    color: var(--primary-red);
    font-weight: 500;
    transition: var(--transition);
    display: block;
    word-break: normal; /* Changed from break-word */
    line-height: 1.3;
    margin: 0;
    padding: 0;
    white-space: normal; /* Changed from nowrap */
    overflow: visible; /* Changed from hidden */
    text-overflow: clip; /* Changed from ellipsis */
}

.contact-link:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.contact-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.form-box,
.info-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.form-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-box h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.form-box > p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #4b5563;
}

.form-box form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-box input,
.form-box select,
.form-box textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.0625rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-box input:required:invalid,
.form-box select:required:invalid,
.form-box textarea:required:invalid {
    border-color: #fca5a5;
}

.form-box input:required:valid,
.form-box select:required:valid,
.form-box textarea:required:valid {
    border-color: #86efac;
}

.form-box textarea {
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
}

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

.form-box label.check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    cursor: pointer;
    margin-bottom: 1.25rem;
}

.form-box label.check span {
    flex: 1;
}

.form-box label.check input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
    cursor: pointer;
}

.form-box .notice {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.25rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.form-box .notice strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #92400e;
}

.form-box .notice {
    font-size: 1rem;
    line-height: 1.7;
    color: #78350f;
}

.form-box .btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-box .btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

@media (max-width: 768px) {
    .form-box .row {
        grid-template-columns: 1fr;
    }
}

.info-box {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 968px) {
    .contact-section .container {
        grid-template-columns: 1fr;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-form-container, .contact-info {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

.section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.section-subtitle {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    color: var(--medium-gray);
}

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

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.required {
    color: var(--primary-red);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--dark-gray);
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid #D1D5DB;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

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

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

.form-checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.checkbox {
    margin-top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.25rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.checkbox:checked {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.checkbox:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 0.75rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-content {
    flex: 1;
}

.checkbox-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
    display: block;
}

.checkbox-description {
    font-size: 0.75rem;
    color: var(--medium-gray);
    line-height: 1.4;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-red);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    width: 100%;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

.btn-primary:hover {
    background-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary i {
    margin-left: 0.5rem;
}

.response-time {
    margin-top: 2rem;
    background-color: rgba(253, 224, 71, 0.1);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    border-left: 4px solid var(--primary-yellow);
}

.response-time-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.response-time i {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-top: 0.25rem;
}

.response-time-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.response-time-text {
    font-size: 0.875rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* Urgent Support Section */
.urgent-support-section {
  background: #D62828;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

.urgent-support-section h2 {
  font-size: 2.875rem;
  font-weight: 700;
  margin-bottom: 1.125rem;
  color: #FFFFFF;
}

.urgent-support-section h2 span {
  color: #FFD60A;
}

.urgent-support-section .sub-text {
  font-size: 1.25rem;
  max-width: 900px;
  margin: 0 auto 3.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 1.25rem;
}

.support-boxes {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.25rem;
}

.support-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.8rem 2.5rem;
  border-radius: 0.9rem;
  width: 100%;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.icon-circle {
  width: 85px;
  height: 85px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.4rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.support-card:hover .icon-circle {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.icon-circle i {
  font-size: 2rem;
  color: #FFFFFF;
}

.support-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0.6rem 0;
  color: #FFFFFF;
}

.support-card p {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  min-height: 50px;
}

.highlight {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  text-decoration: none;
  padding: 0.75rem 1.9rem;
  border-radius: 50px;
  background: #ffffff;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
  text-shadow: none;
}

.highlight:hover {
  background: #fac62f;
  color: #1f2937;
  transform: translateY(-2px);
  border-color: #fac62f;
  box-shadow: 0 4px 12px rgba(250, 198, 47, 0.4);
}

.bottom-box {
  background: rgba(255, 255, 255, 0.12);
  padding: 1.6rem 1.6rem;
  border-radius: 0.9rem;
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: white;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.bottom-box .fa-info-circle {
  margin-right: 0.5rem;
  color: #FFD60A;
}

.bottom-box .email-link {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}

.bottom-box .email-link:hover {
  color: #FFD60A;
  border-bottom-color: #FFD60A;
}

/* Responsive */
@media (max-width: 992px) {
  .support-boxes {
    gap: 1.5rem;
  }
  
  .support-card {
    padding: 2.2rem 1.8rem;
  }
}

@media (max-width: 768px) {
  .urgent-support-section {
    padding: 4rem 0;
  }
  
  .urgent-support-section h2 {
    font-size: 2.2rem;
  }
  
  .urgent-support-section .sub-text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  .support-card {
    max-width: 100%;
    margin: 0 1.5rem;
  }
  
  .bottom-box {
    margin: 0 1.5rem;
    font-size: 1rem;
  }
}

/* Contact Info */
.contact-methods-list {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-method-card {
    background-color: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: var(--transition);
}

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

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(220, 38, 38, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-red);
    font-size: 1.25rem;
}

.contact-method-content {
    flex: 1;
}

.contact-method-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.contact-method-subtitle {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
}

.contact-address {
    font-style: normal;
    color: var(--primary-red);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.75rem;
    color: var(--medium-gray);
    font-style: italic;
}

.business-hours {
    margin-top: 0.5rem;
}

.business-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.hours {
    font-weight: 600;
    color: var(--primary-red);
}

.hours.closed {
    color: var(--medium-gray);
    font-weight: normal;
}

/* Address Container */
.address-container {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: var(--radius-lg);
}

.address-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.address-text {
    color: var(--medium-gray);
    line-height: 1.6;
}

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

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

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.reason-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.reason-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-red);
    font-size: 1.75rem;
}

.reason-icon.yellow {
    background: #f8b823;
    color: #000000;
    box-shadow: 0 4px 12px rgba(248, 184, 35, 0.3);
}

.reason-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.reason-text {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Emergency Contact */
.emergency-contact {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--primary-yellow) 100%);
    color: var(--dark-gray);
    padding: 5rem 0;
    text-align: center;
}

.emergency-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.emergency-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.emergency-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.emergency-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.emergency-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.emergency-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.emergency-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.emergency-card-text {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.emergency-link {
    display: inline-block;
    color: #FF9900;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    display: inline-block;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.emergency-link:hover {
    background-color: #FF9900;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.emergency-note {
    max-width: 700px;
    margin: 0 auto;
    padding: 1.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 1rem;
    background-color: var(--light-gray);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.faq-section .section-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    width: 100%;
}

.faq-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
    text-align: center;
}

.faq-section .section-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin: 0 auto 3rem;
    max-width: 700px;
    text-align: center;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    width: 100%;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:not(:last-child) {
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background-color: #F9FAFB;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #F3F4F6;
}

.faq-question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
    padding-right: 1rem;
    text-align: left;
}

.faq-question i {
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

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

.faq-answer.active {
    max-height: 500px; /* Adjust based on content */
}

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

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: var(--medium-gray);
    line-height: 1.7;
    border-top: 1px solid #F3F4F6;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 4rem 0 0;
}

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

.footer-company {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
}

.footer-logo-img {
    height: 2.5rem;
    width: auto;
    margin-right: 0.75rem;
    border-radius: 50%;
}

.footer-about {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-gray);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3rem;
    height: 2px;
    background-color: var(--primary-yellow);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #9CA3AF;
    transition: var(--transition);
    padding: 0.25rem 0;
}

.footer-link:hover, .footer-link.active {
    color: var(--primary-yellow);
    padding-left: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #9CA3AF;
    line-height: 1.6;
}

.contact-item i {
    color: var(--primary-yellow);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1.125rem;
    min-width: 1.25rem;
}

.contact-link {
    color: #9CA3AF;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-yellow);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: center;
}

.copyright, .ndis {
    font-size: 0.875rem;
    color: #9CA3AF;
}

.ndis {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background-color: rgba(253, 224, 71, 0.1);
    border-radius: var(--radius-full);
    color: var(--primary-yellow);
    font-weight: 500;
}

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

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

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

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

@keyframes scaleIn {
    from { 
        opacity: 0;
        transform: scale(0.9);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

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

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

.animate-delay-600 {
    animation-delay: 0.6s;
}

/* Form Error States */
.error {
    border-color: var(--primary-red) !important;
    background-color: #FEF2F2;
}

/* Responsive Styles */
@media (min-width: 640px) {
    .hero {
        padding: 10rem 0 6rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .contact-methods {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contact-method {
        flex: 1 1 calc(50% - 0.5rem);
    }
    
    .emergency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reason-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (min-width: 768px) {
    .nav-container {
        height: 5rem;
    }
    
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .hero {
        padding: 12rem 0 8rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .contact-grid {
        grid-template-columns: 1.2fr 1fr;
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reason-card:last-child {
        grid-column: auto;
        max-width: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-company {
        grid-column: 1 / -1;
        max-width: none;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero {
        padding: 14rem 0 10rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .footer-company {
        grid-column: auto;
        max-width: 300px;
    }
}

/* Print Styles */
@media print {
    .navbar, .footer, .mobile-menu-btn, .emergency-contact {
        display: none !important;
    }
    
    body {
        padding: 0;
        font-size: 12pt;
        color: #000;
        background: none;
    }
    
    .container {
        width: 100%;
        padding: 0;
    }
    
    .hero {
        padding: 2rem 0 !important;
        margin-top: 0 !important;
        background: none !important;
    }
    
    .hero-title, .section-title {
        color: #000 !important;
    }
    
    .contact-method {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .btn-primary, .faq-question {
        display: none !important;
    }
    
    .faq-answer {
        max-height: none !important;
        display: block !important;
    }
    
    a {
        text-decoration: none !important;
    }
    
    a[href^="mailto:"]:after {
        content: " (" attr(href) ")";
        font-size: 0.9em;
    }
    
    a[href^="tel:"]:after {
        content: " (" attr(href) ")";
        font-size: 0.9em;
    }
}
