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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #1B2A4A;
    background-color: #FDFCFA;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ===== Utility ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* ===== Section Shared ===== */
.section {
    padding: 6rem 0;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D4A84B;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: #1B2A4A;
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #4D69A8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Navigation ===== */
.nav-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.nav-scrolled.scrolled {
    background-color: rgba(253, 252, 250, 0.97);
    box-shadow: 0 1px 20px rgba(27, 42, 74, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    z-index: 1001;
}

.nav-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #FDFCFA;
    transition: color 0.4s ease;
}

.scrolled .nav-logo-text {
    color: #1B2A4A;
}

.nav-logo-icon {
    transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-icon {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(253, 252, 250, 0.85);
    transition: color 0.3s ease;
    position: relative;
}

.scrolled .nav-links a {
    color: #4D69A8;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4A84B;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a:focus {
    color: #D4A84B;
}

.scrolled .nav-links a:hover,
.scrolled .nav-links a:focus {
    color: #D4A84B;
}

.nav-cta {
    padding: 0.5rem 1.25rem;
    border: 1.5px solid rgba(212, 168, 75, 0.6);
    border-radius: 100px;
    transition: all 0.3s ease !important;
}

.nav-cta:hover,
.nav-cta:focus {
    background: #D4A84B;
    border-color: #D4A84B;
    color: #1B2A4A !important;
}

.scrolled .nav-cta {
    border-color: #D4A84B;
    color: #1B2A4A !important;
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #FDFCFA;
    transition: all 0.3s ease;
    transform-origin: center;
}

.scrolled .nav-toggle-line {
    background: #1B2A4A;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 26, 48, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 26, 48, 0.82) 0%,
        rgba(27, 42, 74, 0.70) 50%,
        rgba(45, 65, 108, 0.60) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #D4A84B;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(212, 168, 75, 0.35);
    border-radius: 100px;
    background: rgba(27, 42, 74, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #FDFCFA;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(253, 252, 250, 0.8);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1.5px solid rgba(253, 252, 250, 0.3);
    border-radius: 50%;
    color: rgba(253, 252, 250, 0.7);
    transition: all 0.3s ease;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll a:hover {
    background: rgba(253, 252, 250, 0.1);
    border-color: rgba(253, 252, 250, 0.6);
    color: #FDFCFA;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #D4A84B;
    border-color: #D4A84B;
    color: #1B2A4A;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #C4922E;
    border-color: #C4922E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 75, 0.35);
}

.btn-outline-light {
    background: transparent;
    border-color: rgba(253, 252, 250, 0.5);
    color: #FDFCFA;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: rgba(253, 252, 250, 0.1);
    border-color: #FDFCFA;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== About ===== */
.about {
    background: #FDFCFA;
}

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

.about-images {
    position: relative;
    height: 600px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 80%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(27, 42, 74, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    top: 30%;
    right: 0;
    width: 55%;
    height: 65%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(27, 42, 74, 0.12);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 40%;
    height: 35%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(27, 42, 74, 0.1);
    border: 4px solid #FDFCFA;
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: 1rem 0;
}

.about-text {
    color: #4D69A8;
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid #E9EBE4;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4A84B;
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: #4D69A8;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ===== Offerings ===== */
.offerings {
    background: linear-gradient(180deg, #FDFCFA 0%, #F6F7F4 100%);
}

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

.offering-card {
    background: #FDFCFA;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(27, 42, 74, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.offering-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(27, 42, 74, 0.12);
}

.offering-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.offering-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.offering-card:hover .offering-card-img img {
    transform: scale(1.08);
}

.offering-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1B2A4A;
    background: #D4A84B;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
}

.offering-card-body {
    padding: 1.5rem;
}

.offering-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #1B2A4A;
    margin-bottom: 0.625rem;
}

.offering-card-desc {
    font-size: 0.9375rem;
    color: #4D69A8;
    line-height: 1.7;
}

/* ===== Gallery ===== */
.gallery {
    background: #1B2A4A;
    padding: 6rem 0;
}

.gallery .section-label {
    color: #D4A84B;
}

.gallery .section-title {
    color: #FDFCFA;
}

.gallery .section-title .text-gold-500 {
    color: #D4A84B;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1.25rem;
    margin-top: 3.5rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 26, 48, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:nth-child(1) {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
}

.gallery-item:nth-child(2) {
    grid-column: 5 / 9;
    grid-row: 1;
}

.gallery-item:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1;
}

.gallery-item:nth-child(4) {
    grid-column: 5 / 9;
    grid-row: 2;
}

.gallery-item:nth-child(5) {
    grid-column: 9 / 13;
    grid-row: 2;
}

.gallery-item:nth-child(6) {
    grid-column: 1 / 5;
    grid-row: 3;
}

/* ===== Testimonials ===== */
.testimonials {
    background: linear-gradient(180deg, #F6F7F4 0%, #FDFCFA 100%);
}

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

.testimonial-card {
    background: #FDFCFA;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(27, 42, 74, 0.06);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(27, 42, 74, 0.1);
}

.testimonial-quote-icon {
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-size: 1.0625rem;
    color: #2D416C;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: #D4A84B;
    letter-spacing: 0.03em;
}

/* ===== Visit ===== */
.visit {
    background: #FDFCFA;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visit-info {
    padding: 1rem 0;
}

.visit-details {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.visit-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.visit-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 75, 0.1);
    border-radius: 12px;
}

.visit-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #D4A84B;
    margin-bottom: 0.25rem;
}

.visit-detail-value {
    font-size: 1rem;
    color: #2D416C;
    line-height: 1.6;
}

.visit-detail-value a {
    color: #4D69A8;
    transition: color 0.3s ease;
}

.visit-detail-value a:hover {
    color: #D4A84B;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(27, 42, 74, 0.12);
    aspect-ratio: 4 / 3;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* ===== Contact ===== */
.contact {
    background: linear-gradient(135deg, #1B2A4A 0%, #2D416C 100%);
    padding: 6rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact .section-title {
    color: #FDFCFA;
}

.contact-text {
    font-size: 1.0625rem;
    color: rgba(253, 252, 250, 0.7);
    line-height: 1.8;
    margin-top: 1rem;
}

.contact-form-wrapper {
    background: rgba(253, 252, 250, 0.06);
    border: 1px solid rgba(253, 252, 250, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(253, 252, 250, 0.6);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9375rem;
    color: #FDFCFA;
    background: rgba(253, 252, 250, 0.08);
    border: 1.5px solid rgba(253, 252, 250, 0.15);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(253, 252, 250, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #D4A84B;
    background: rgba(253, 252, 250, 0.12);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(253,252,250,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: #1B2A4A;
    color: #FDFCFA;
}

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

/* Form Success */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
    gap: 1rem;
}

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

.form-success-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 168, 75, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #FDFCFA;
}

.form-success-text {
    font-size: 1rem;
    color: rgba(253, 252, 250, 0.7);
    max-width: 300px;
    line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
    background: #0F1A30;
    padding: 4rem 0 0;
}

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

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
}

.footer-logo span {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #FDFCFA;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(253, 252, 250, 0.5);
    line-height: 1.7;
}

.footer-nav-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #D4A84B;
    margin-bottom: 1.25rem;
}

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

.footer-nav a {
    font-size: 0.9375rem;
    color: rgba(253, 252, 250, 0.55);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #D4A84B;
}

.hours-day,
.hours-time {
    display: block;
    font-size: 0.9375rem;
    color: rgba(253, 252, 250, 0.55);
}

.hours-day {
    font-weight: 500;
    color: rgba(253, 252, 250, 0.75);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-contact a {
    font-size: 0.9375rem;
    color: rgba(253, 252, 250, 0.55);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #D4A84B;
}

.footer-contact span {
    font-size: 0.9375rem;
    color: rgba(253, 252, 250, 0.55);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(253, 252, 250, 0.08);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(253, 252, 250, 0.35);
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about-grid,
    .visit-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-images {
        height: 450px;
        max-width: 500px;
    }

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

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

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6) {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item:nth-child(1) {
        grid-row: span 2;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #FDFCFA;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.75rem;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(27, 42, 74, 0.15);
        z-index: 1000;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: #1B2A4A !important;
        font-size: 1.125rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

    .about-images {
        height: 380px;
    }

    .about-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item:nth-child(1) {
        grid-row: span 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .section {
        padding: 3rem 0;
    }

    .about-images {
        height: 300px;
    }

    .about-img-main {
        width: 75%;
        height: 75%;
    }

    .about-img-secondary {
        width: 60%;
        height: 55%;
    }

    .about-img-accent {
        width: 45%;
        height: 35%;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-scroll a {
        animation: none;
    }
}
