/* =============================================
   ALIVE SENIOR HOME CARE — Enhanced Styles
   ============================================= */

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

:root {
    --primary: #1e3a5f;
    --primary-mid: #2c5282;
    --primary-light: #3a6da8;
    --gold: #c9955c;
    --gold-light: #e8b98a;
    --cream: #faf7f4;
    --accent: #f0f4f8;
    --text-dark: #12202e;
    --text-mid: #374151;
    --text-light: #6b7280;
    --border: #e5e7eb;
    --success: #16a34a;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 48px rgba(0,0,0,0.13);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.25;
}

em { font-style: italic; color: var(--gold); }

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

img { max-width: 100%; }

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 9999;
    transition: width 0.1s linear;
}

/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
    background: rgb(87, 125, 47);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition), background var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

#navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.3px;
}

.logo-icon {
    color: var(--gold);
    font-size: 1rem;
}

.logo span { color: #43C9CD; font-weight: 400; }

.logo em { color: #AECC55; font-style: italic; }

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

.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    font-weight: 500;
    position: relative;
    transition: color var(--transition);
    letter-spacing: 0.2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width var(--transition);
    border-radius: 2px;
}

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

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

.cta-button {
    background: var(--gold);
    color: var(--text-dark);
    padding: 0.6rem 1.3rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(201,149,92,0.4);
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--primary);
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: slideDownMenu 0.3s ease;
}

.mobile-menu a {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color var(--transition);
}

.mobile-menu a:hover { color: white; }

.mobile-cta {
    color: var(--gold) !important;
    font-weight: 600 !important;
    border-bottom: none !important;
    margin-top: 0.5rem;
}

.mobile-menu.open { display: flex; }

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

/* =============================================
   CONTAINER
   ============================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =============================================
   ANIMATIONS
   ============================================= */

/* Reveal animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-card {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    transition: opacity 0.6s ease var(--delay, 0s), transform 0.6s ease var(--delay, 0s);
}

.revealed {
    opacity: 1 !important;
    transform: translate(0,0) scale(1) !important;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(201,149,92,0.4); }
    70% { transform: scale(1); box-shadow: 0 0 0 12px rgba(201,149,92,0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(201,149,92,0); }
}

@keyframes shimmer {
    from { background-position: -200% center; }
    to { background-position: 200% center; }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    background: linear-gradient(160deg, var(--primary) 0%, #43C9CD 100%);
    color: white;
    padding: 7rem 2rem 5rem;
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(201,149,92,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(58,109,168,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,149,92,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-sep { opacity: 0.4; }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    background: rgba(201,149,92,0.15);
    border: 1px solid rgba(201,149,92,0.35);
    color: var(--gold-light);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    animation: pulse-ring 2.5s infinite;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero h1 em { color: var(--gold-light); }

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

/* Stats Bar */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
}

.stat-plus {
    font-size: 1.3rem;
    color: var(--gold-light);
    font-weight: 700;
    vertical-align: super;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.35rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}


.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255,255,255,0.35);
    border-bottom: 2px solid rgba(255,255,255,0.35);
    transform: rotate(45deg);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
    background: var(--gold);
    color: var(--text-dark);
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(201,149,92,0.4);
}

.btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.9);
    padding: 0.9rem 2rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: white;
    padding: 0.9rem 2rem;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-block;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    background: rgba(201,149,92,0.1);
    border: 1px solid rgba(201,149,92,0.3);
    color: var(--gold);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
    padding: 6rem 2rem;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem 2rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201,149,92,0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover { 
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-card:hover .card-glow { opacity: 1; }

/* .featured-card {
    background: linear-gradient(160deg, var(--primary) 0%, #43C9CD 100%);
    color: white;
    border-color: transparent;
} */

.featured-card h3 { color: white; }
.featured-card p { color: rgba(255,255,255,0.75); }
.featured-card .card-link { color: var(--gold-light); }
.featured-card .card-glow {
    background: radial-gradient(circle at 50% 0%, rgba(201,149,92,0.1) 0%, transparent 70%);
}
.featured-card:hover .card-glow { opacity: 1; }

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}

.service-card h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
}

.card-link {
    color: var(--gold);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all var(--transition);
    display: inline-block;
}

.card-link:hover {
    gap: 0.5rem;
    letter-spacing: 0.3px;
}

.services-cta {
    text-align: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.services-cta p {
    color: var(--text-mid);
    font-size: 1.05rem;
    font-weight: 500;
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
    background: linear-gradient(160deg, var(--primary) 0%, #43C9CD 100%);
    padding: 1.25rem 2rem;
    overflow: hidden;
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.trust-icon {
    color: var(--gold);
    font-weight: 700;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    padding: 6rem 2rem;
    background: white;
    overflow: hidden;
}

.testimonials-track-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-card {
    min-width: calc(33.333% - 1rem);
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    flex-shrink: 0;
    transition: all var(--transition);
    border-left: 4px solid var(--gold);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-mid);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

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

.author-role {
    color: var(--text-light);
    font-size: 0.82rem;
    margin-top: 2px;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.t-dot.active {
    background: var(--gold);
    width: 20px;
    border-radius: 4px;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    background: linear-gradient(160deg, var(--primary) 0%, #43C9CD 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-banner-glow {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,149,92,0.1) 0%, transparent 65%);
    pointer-events: none;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    color: white;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 0.5rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

.cta-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: #61bcbc;
    color: white;
    padding: 4rem 2rem 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { margin-bottom: 1rem; font-size: 1.2rem; }

.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 280px;
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-badges span {
    background: rgba(201,149,92,0.12);
    border: 1px solid rgba(201,149,92,0.25);
    color: var(--gold-light);
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    transition: color var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.footer-contact p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
}

/* =============================================
   PAGE HERO (About / Contact)
   ============================================= */
.page-hero {
    background: linear-gradient(160deg, var(--primary) 0%, #43C9CD 100%);
    color: white;
    padding: 5rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

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

.breadcrumb {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--gold-light); }

.page-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: white;
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
}

/* =============================================
   ABOUT PAGE
   ============================================= */

/* images */
.img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  display: block;
}

.about-mission {
    padding: 6rem 2rem;
    background: white;
}

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

.about-text .section-tag {
    text-align: left;
    display: inline-block;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 0.97rem;
}

.about-visual {
    position: relative;
}

.about-image-block {
    position: relative;
}

.about-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.main-img {
    background: linear-gradient(135deg, var(--primary) 0%, #0f2744 100%);
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.img-placeholder span { font-size: 3rem; display: block; margin-bottom: 1rem; }
.img-placeholder p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; }

.about-badge-float {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gold);
    color: var(--text-dark);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

.badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 3px;
}

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201,149,92,0.3);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 6rem 2rem;
    background: white;
}

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

.team-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.team-feature:hover {
    border-color: rgba(201,149,92,0.3);
    box-shadow: var(--shadow-sm);
}

.tf-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    line-height: 1;
    padding-top: 2px;
}

.team-feature h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.4rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.team-feature p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Timeline */
.timeline-section {
    padding: 6rem 2rem;
    background: var(--cream);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0; bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-year { order: 3; text-align: left; }
.timeline-item:nth-child(even) .timeline-card { order: 1; text-align: right; }
.timeline-item:nth-child(even) .timeline-dot { order: 2; }

.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--border);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--border);
    flex-shrink: 0;
    transition: all var(--transition);
    z-index: 1;
}

.timeline-dot.active {
    background: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,149,92,0.3);
    animation: pulse-ring 2.5s infinite;
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    text-align: right;
}

.timeline-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.timeline-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(201,149,92,0.3);
}

.featured-timeline {
    background: linear-gradient(135deg, var(--primary) 0%, #0f2744 100%);
    border-color: transparent;
    color: white;
}

.featured-timeline h4 { color: white; }
.featured-timeline p { color: rgba(255,255,255,0.75); }

.timeline-card h4 {
    color: var(--primary);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.timeline-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-main {
    padding: 5rem 2rem;
    background: white;
}

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

.contact-info-block {
    margin-bottom: 2rem;
}

.contact-info-block h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.contact-info-block p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--cream);
    transition: all var(--transition);
}

.contact-card:hover {
    border-color: rgba(201,149,92,0.3);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.contact-card-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.contact-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.contact-card-value {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.97rem;
    display: block;
    margin-bottom: 0.25rem;
    transition: color var(--transition);
}

a.contact-card-value:hover { color: var(--gold); }

.contact-card-note {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Map */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 260px;
    box-shadow: var(--shadow-md);
}

#map { width: 100%; height: 100%; }

/* Contact Form */
.contact-form-wrapper {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    color: var(--primary);
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
}

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

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.2px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    color: var(--text-dark);
    background: white;
    transition: all var(--transition);
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-mid);
    box-shadow: 0 0 0 3px rgba(44,82,130,0.1);
}

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

.form-error {
    color: #dc2626;
    font-size: 0.78rem;
    font-weight: 500;
    min-height: 1em;
}

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

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    accent-color: var(--primary);
}

.form-check label {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

.submit-btn {
    background: var(--primary);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: 'DM Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.submit-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size: 200% 100%;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.submit-btn:hover {
    background: #0f2744;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30,58,95,0.3);
}

.submit-btn:hover::after {
    transform: translateX(100%);
}

.form-success {
    text-align: center;
    padding: 2rem;
    background: rgba(22,163,74,0.06);
    border: 1px solid rgba(22,163,74,0.25);
    border-radius: var(--radius);
    margin-top: 0.5rem;
}

.success-icon { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }
.form-success h3 { color: var(--success); margin-bottom: 0.5rem; font-size: 1.2rem; }
.form-success p { color: var(--text-light); font-size: 0.9rem; }

/* FAQ */
.faq-section {
    padding: 6rem 2rem;
    background: var(--cream);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--primary);
    transition: color var(--transition);
    gap: 1rem;
}

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

.faq-chevron {
    font-size: 1.2rem;
    font-weight: 400;
    transition: transform var(--transition);
    flex-shrink: 0;
    color: var(--gold);
}

.faq-item.open .faq-chevron {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.75;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .testimonial-card {
        min-width: calc(50% - 0.75rem);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .timeline::before { display: none; }
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .timeline-item:nth-child(even) .timeline-year { order: 0; text-align: left; }
    .timeline-item:nth-child(even) .timeline-card { order: 2; text-align: left; }
    .timeline-dot { display: none; }
}

@media (max-width: 768px) {
    .nav-links, .cta-button { display: none; }
    .hamburger { display: flex; }

    .hero { padding: 5rem 1.5rem 8rem; min-height: auto; }
    .hero h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; }

    .floating-badge { display: none; }

    .hero-stats {
        gap: 1.25rem;
        padding: 1.25rem;
    }
    .stat-divider { display: none; }
    .stat-number { font-size: 1.5rem; }

    .services { padding: 4rem 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .services-cta { flex-direction: column; text-align: center; }

    .testimonial-card { min-width: 100%; }

    .cta-banner-inner { flex-direction: column; text-align: center; }
    .cta-banner-buttons { justify-content: center; }

    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { grid-column: auto; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 1.5rem; }

    .values-section, .team-section, .timeline-section, .faq-section { padding: 4rem 1.5rem; }

    .trust-inner { gap: 1.25rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.7rem; }
    .section-title { font-size: 1.6rem; }
    .values-grid { grid-template-columns: 1fr; }
    .team-features { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .stat-divider { display: none; }
}

/* responsive */

@media (max-width: 768px) {
    .team-features {
        grid-template-columns: 1fr;
    }
}