/*
Theme Name: Solana Senior Living
Theme URI: https://solanasenior.com
Author: Solana Senior Living
Author URI: https://solanasenior.com
Description: A warm, professional WordPress theme for Solana Senior Living — compassionate and premium senior care in Surprise, AZ. Modeled after Golden Age Residential Care with matching color palette, typography, and layout.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: solana-senior-living
Tags: senior-care, assisted-living, responsive, custom-colors
*/

/* =========================================================
   IMPORTS & FONTS
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Noto+Sans:wght@300;400;500;600;700&display=swap');

/* =========================================================
   CSS CUSTOM PROPERTIES
   ========================================================= */
:root {
    --color-navy:       #0B3A5F;
    --color-navy-dark:  #072840;
    --color-gold:       #1BA2EE;
    --color-gold-light: #1BA2EE;
    --color-gold-pale:  #1BA2EE;
    --color-cream:      #F9F6F0;
    --color-white:      #FFFFFF;
    --color-text:       #333333;
    --color-text-light: #666666;
    --color-border:     #E8DCC8;

    --font-heading:     'Cormorant Garamond', Georgia, serif;
    --font-body:        'Noto Sans', Arial, Helvetica, sans-serif;

    --transition:       all 0.3s ease;
    --shadow:           0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover:     0 8px 30px rgba(0,0,0,0.15);
    --radius:           4px;
    --radius-pill:      50px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

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

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

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

ul, ol { list-style: none; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    line-height: 1.2;
    font-weight: 500;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.75rem;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: var(--color-gold);
    margin: 1rem auto 1.5rem;
    display: block;
}

.section-divider.left {
    margin-left: 0;
}

/* =========================================================
   LAYOUT UTILITIES
   ========================================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad {
    padding: 80px 0;
}

.section-pad-sm {
    padding: 50px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

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

.bg-cream { background-color: var(--color-cream); }
.bg-navy  { background-color: var(--color-navy); }
.bg-white { background-color: var(--color-white); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

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

.btn-primary:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

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

.btn-navy:hover {
    background: var(--color-navy-dark);
    border-color: var(--color-navy-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
    background: var(--color-navy);
    color: rgba(255,255,255,0.9);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.top-bar a {
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

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

.top-bar .top-bar-social {
    display: flex;
    gap: 12px;
    margin-right: auto;
}

.top-bar .top-bar-social a {
    font-size: 0.9rem;
    opacity: 0.8;
}

.top-bar .top-bar-social a:hover { opacity: 1; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.site-header {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.site-logo img {
    height: 120px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav > li {
    position: relative;
}

.main-nav > li > a {
    display: block;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-navy);
    border-radius: var(--radius);
    transition: var(--transition);
}

.main-nav > li > a:hover,
.main-nav > li.current-menu-item > a {
    color: var(--color-gold);
}

/* Contact button in nav */
.main-nav > li.nav-contact > a {
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: var(--radius-pill);
    padding: 10px 22px;
}

.main-nav > li.nav-contact > a:hover {
    background: var(--color-gold-light);
    color: var(--color-white);
}

/* Dropdown */
.main-nav .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 220px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--color-gold);
    border-radius: 0 0 var(--radius) var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}

.main-nav li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.875rem;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.main-nav .dropdown li:last-child a { border-bottom: none; }

.main-nav .dropdown li a:hover {
    background: var(--color-cream);
    color: var(--color-gold);
    padding-left: 26px;
}

/* Dropdown arrow indicator */
.main-nav .has-dropdown > a::after {
    content: ' ▾';
    font-size: 0.7em;
    opacity: 0.7;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-navy);
    transition: var(--transition);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(7, 40, 64, 0.72) 0%,
        rgba(11, 58, 95, 0.55) 60%,
        rgba(11, 58, 95, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 700px;
    padding: 80px 0;
}
.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 1rem;
    display: block;
}
.hero-content h1 {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-white);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-content p {
        display: none;
    }
}

.hero-bg-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-section {
    background: var(--color-white);
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 75%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 50%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    border: 4px solid var(--color-white);
}

.about-content {
    padding-left: 20px;
}

.about-content h2 {
    font-style: italic;
    margin-bottom: 1.5rem;
}

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

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services-section {
    background: var(--color-cream);
}

.services-section .section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.services-section .section-intro h2 {
    font-style: italic;
    margin-bottom: 1rem;
}

.services-section .section-intro p {
    color: var(--color-text-light);
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.services-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 700px;
    margin: 28px auto 0;
}

.service-card {
    background: var(--color-white);
    border: 1.5px solid var(--color-gold-pale);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--color-gold);
    transform: translateY(-4px);
}

.service-card .service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card .service-icon svg {
    width: 60px;
    height: 60px;
}

.service-card h3 {
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-navy);
}

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

.service-card .learn-more {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-card .learn-more:hover {
    color: var(--color-navy);
    gap: 10px;
}

/* =========================================================
   OUR APPROACH SECTION
   ========================================================= */
.approach-section {
    background: var(--color-navy);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.approach-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.approach-section .section-label {
    color: var(--color-gold-light);
}

.approach-section h2 {
    color: var(--color-white);
    font-style: italic;
    margin-bottom: 1rem;
}

.approach-section > .container > p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    max-width: 700px;
    margin-bottom: 3rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.approach-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.approach-item-icon {
    width: 52px;
    height: 52px;
    background: rgba(200, 150, 62, 0.2);
    border: 1px solid rgba(200, 150, 62, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-gold-light);
    font-size: 1.3rem;
}
.approach-item-text h4 {
    color: var(--color-white);
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    font-family: 'Lora', serif;
}

.approach-item-text p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================================
   WHY CHOOSE US SECTION
   ========================================================= */
.why-choose-section {
    background: var(--color-cream);
    text-align: center;
}

.why-choose-section h2 {
    font-style: italic;
    margin-bottom: 1.25rem;
}

.why-choose-section p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    max-width: 800px;
    margin: 0 auto 1.25rem;
    line-height: 1.8;
}

.why-choose-section .phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-navy);
    font-style: italic;
    margin-top: 1rem;
}

.why-choose-section .phone-cta:hover { color: var(--color-gold); }

/* =========================================================
   FAQ SECTION
   ========================================================= */
.faq-section {
    background: var(--color-white);
}

.faq-section h2 {
    font-style: italic;
    text-align: center;
    margin-bottom: 0.5rem;
}

.faq-section .section-divider {
    margin: 0 auto 3rem;
}

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

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

.faq-question .faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--color-navy);
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 0 20px;
    color: var(--color-text-light);
    font-size: 0.975rem;
    line-height: 1.8;
}

.faq-item.open .faq-answer { display: block; }

/* =========================================================
   TESTIMONIALS SECTION
   ========================================================= */
.testimonials-section {
    background: var(--color-navy);
    color: var(--color-white);
    overflow: hidden;
}

.testimonials-section h2 {
    color: var(--color-white);
    font-style: italic;
    text-align: center;
    margin-bottom: 0.5rem;
}

.testimonials-section .section-divider {
    background: var(--color-gold);
    margin: 0 auto 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-gold);
    opacity: 0.4;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.975rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.25rem;
    padding-top: 1.5rem;
}

.testimonial-author {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-gold-light);
    letter-spacing: 0.05em;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
    background: #146C94;
    padding: 50px 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--color-white);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: var(--color-navy-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand .footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}
}

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

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-gold);
    color: white;
}

.footer-col h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--color-gold-light);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    align-items: flex-start;
}

.footer-contact-item .icon {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.65);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

.footer-bottom a {
    color: rgba(255,255,255,0.45);
}

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

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
    background: var(--color-navy);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

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

.page-hero h1 {
    color: var(--color-white);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.page-hero .breadcrumb {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

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

.page-hero .breadcrumb a:hover { color: var(--color-white); }

/* =========================================================
   SERVICE PAGE
   ========================================================= */
.service-page-content {
    background: var(--color-white);
}

.service-page-content .container {
    max-width: 900px;
}

.service-page-content h2 {
    font-style: italic;
    margin: 2rem 0 1rem;
}

.service-page-content p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.service-page-content ul {
    list-style: none;
    margin: 1.25rem 0 2rem;
}

.service-page-content ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--color-text-light);
    font-size: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.service-page-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
}

.service-cta-box {
    background: var(--color-cream);
    border: 1.5px solid var(--color-gold-pale);
    border-left: 4px solid var(--color-gold);
    border-radius: var(--radius);
    padding: 32px 36px;
    margin: 3rem 0;
    text-align: center;
}

.service-cta-box h3 {
    font-style: italic;
    margin-bottom: 0.75rem;
}

.service-cta-box p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-page-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
    margin: 2rem 0;
}

/* =========================================================
   GALLERY PAGE
   ========================================================= */
.gallery-page-intro {
    background: var(--color-cream);
    text-align: center;
    padding: 60px 0 50px;
}

.gallery-page-intro h1 {
    font-style: italic;
    margin-bottom: 1rem;
}

.gallery-page-intro p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 60px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery-item .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(7,40,64,0.85));
    color: white;
    padding: 30px 16px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-overlay.active { display: flex; }

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-caption {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-top: 12px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
}

.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--color-gold); }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-page {
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-detail .icon {
    width: 44px;
    height: 44px;
    background: var(--color-cream);
    border: 1px solid var(--color-gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail-text strong {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-navy);
    margin-bottom: 2px;
}

.contact-detail-text a,
.contact-detail-text span {
    color: var(--color-text-light);
    font-size: 0.975rem;
}

.contact-detail-text a:hover { color: var(--color-gold); }

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-cream);
    border-radius: var(--radius);
    padding: 40px;
}

.contact-form-wrapper h3 {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--color-navy);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.15);
}

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

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

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-page-mission {
    background: var(--color-white);
}

.about-page-values {
    background: var(--color-cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 3rem;
}

.value-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
}

.value-card .value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.value-card h4 {
    font-style: italic;
    margin-bottom: 0.75rem;
}

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

/* =========================================================
   THANK YOU PAGE
   ========================================================= */
.thank-you-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color-cream);
    padding: 80px 0;
}

.thank-you-page .icon {
    font-size: 4rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.thank-you-page h1 {
    font-style: italic;
    margin-bottom: 1rem;
}

.thank-you-page p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* =========================================================
   PRIVACY POLICY
   ========================================================= */
.privacy-page {
    background: var(--color-white);
}

.privacy-page .container {
    max-width: 860px;
}

.privacy-page h2 {
    font-style: italic;
    margin: 2.5rem 0 1rem;
    font-size: 1.5rem;
}

.privacy-page p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* =========================================================
   MEDICATION MANAGEMENT HIGHLIGHT
   ========================================================= */
.med-mgmt-section {
    background: var(--color-white);
}

.med-mgmt-section .grid-2 {
    align-items: center;
}

.med-mgmt-section h2 {
    font-style: italic;
    margin-bottom: 1.25rem;
}

.med-mgmt-section p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.med-mgmt-list {
    list-style: none;
    margin: 1.5rem 0;
}

.med-mgmt-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-light);
    font-size: 0.975rem;
}

.med-mgmt-list li::before {
    content: '✓';
    color: var(--color-gold);
    font-weight: 700;
    flex-shrink: 0;
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */
@media (max-width: 1024px) {
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid-bottom { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */
@media (max-width: 768px) {
    .section-pad { padding: 55px 0; }
    .container { padding: 0 16px; }

    /* Nav */
    .nav-toggle { display: flex; }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        gap: 0;
    }

    .main-nav.open { display: flex; }

    .main-nav > li > a {
        padding: 12px 16px;
        border-bottom: 1px solid var(--color-border);
    }

    .main-nav .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--color-cream);
        display: none;
    }

    .main-nav li.open .dropdown { display: block; }

    /* Hero */
    .hero { min-height: 480px; }
    .hero-content { padding: 60px 0; }

    /* About */
    .about-img-secondary { display: none; }
    .about-img-main { width: 100%; }
    .about-content { padding-left: 0; }

    /* Grids */
    .grid-3 { grid-template-columns: 1fr; }
    .grid-5 { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .services-grid-bottom { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .approach-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Top bar */
    .top-bar .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    .top-bar .top-bar-social { margin-right: 0; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2rem; }
    .btn { padding: 12px 24px; font-size: 0.85rem; }
}

/* =========================================================
   SITE HEADER RELATIVE POSITIONING FOR DROPDOWN
   ========================================================= */
.site-header { position: sticky; top: 0; z-index: 1000; }
.nav-wrapper { position: relative; }

.which-home-section {
    padding-top: 100px;
    padding-bottom: 40px;
}

.which-home-grid {
    gap: 40px;
}
.which-home-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.which-home-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.15);
}
.which-home-img-wrap {
    overflow: hidden;
}
.which-home-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.which-home-card:hover .which-home-img-wrap img {
    transform: scale(1.05);
}
.which-home-body {
    padding: 1.75rem 1.5rem 2.25rem;
}
.which-home-body h3 {
    margin-bottom: 1.25rem;
}

.awards-banner-section {
    background: var(--color-navy);
    padding: 60px 0;
}

.awards-split {
    align-items: center;
    gap: 50px;
}

.awards-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.awards-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.award-plaque img {
    max-width: 130px;
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.awards-text h2 {
    margin: 0.5rem 0 1rem;
    color: var(--color-white);
}

.awards-text p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}