/* ================================================================
   FITNESS PRIME 2026 — Mobile-First Stylesheet
   Ultra-lightweight, app-like feel
   ================================================================ */

/* === VARIABLES === */
:root {
    --primary: #E85D26;
    /* Logo Orange */
    --secondary: #3B3185;
    /* Logo Navy Blue */
    --primary-dark: #c44a1c;
    --primary-glow: rgba(232, 93, 38, 0.15);
    --secondary-glow: rgba(59, 49, 133, 0.2);
    --wa-green: #25D366;
    --wa-dark: #128C7E;
    --bg: #000000;
    --bg-card: #0f0f0f;
    --bg-alt: #161616;
    --border: rgba(255, 255, 255, 0.1);
    --text: #ffffff;
    --text-dim: #cccccc;
    --text-muted: #888888;
    --radius: 4px;
    /* Sharper edges for industrial look */
    --radius-sm: 2px;
    --radius-xl: 0px;
    /* Square buttons are more Fitness Park */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-bottom: 60px;
}

h1,
h2,
h3,
h4,
.btn,
.hero-logo-name,
.gallery-label,
.plan-badge,
.stat-label {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
}

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

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

ul {
    list-style: none;
}

/* === CONTAINER === */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: var(--radius-xl);
    font-weight: 900;
    font-size: 0.95rem;
    font-family: var(--font);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

.btn-wa {
    background: #ffffff;
    color: var(--secondary);
}

.btn-wa:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.btn-outline-sm {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(232, 93, 38, 0.3);
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.btn-outline-sm:hover {
    background: var(--primary-glow);
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #000000;
    /* Solid background for visibility */
    border-bottom: 2px solid var(--primary);
    /* Stronger brand line */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-info {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-tag {
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-img,
.logo img {
    height: 42px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

/* Desktop Nav */
.main-nav {
    display: none;
}

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

.nav-list li a {
    color: var(--text-dim);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.4rem 0;
}

.nav-list li a:hover {
    color: var(--primary);
}

/* Header action buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-wa-header {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--wa-green);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-xl);
    font-size: 0.78rem;
    font-weight: 600;
}

.btn-wa-header i {
    font-size: 1rem;
}

.btn-wa-header span {
    display: none;
}

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

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 12, 20, 0.97);
    backdrop-filter: blur(16px);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-drawer.open {
    transform: translateX(0);
}

.drawer-body {
    padding: 2rem 1.5rem;
}

.drawer-nav {
    list-style: none;
}

.drawer-nav li {
    border-bottom: 1px solid var(--border);
}

.drawer-nav li a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}

.drawer-contact {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.drawer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
}

.drawer-btn-wa {
    background: var(--wa-green);
    color: #fff;
    border-color: var(--wa-green);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
    position: relative;
    padding: 10rem 0 8rem;
    background-color: #000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), var(--secondary)), url('../images/musculation-weights.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    margin-bottom: -4%;
}

/* Hero Logo */
.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.2rem;
}

.hero-logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    /* White bg makes the navy blue logo parts visible on black */
    padding: 10px;
    border: 4px solid var(--primary);
    box-shadow: 0 0 25px var(--primary-glow);
    margin-bottom: 0.8rem;
}

.hero-logo-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--secondary-glow);
}

.hero-logo-sub {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary);
    border: none;
    border-radius: 0;
    padding: 0.4rem 1.2rem;
    font-size: 0.75rem;
    color: #000;
    font-weight: 900;
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-style: italic;
    -webkit-text-stroke: 1px var(--primary);
    color: #fff;
}

.hero-desc {
    font-size: 1rem;
    color: #fff;
    line-height: 1.5;
    max-width: 500px;
    margin: 0 auto 2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-btns {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-btns .btn {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
}

/* Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.stat {
    text-align: center;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    font-style: italic;
}

.stat-plus {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: #fff;
    margin-top: 0.2rem;
    letter-spacing: 1px;
}

/* ================================================================
   SECTIONS
   ================================================================ */
.section {
    padding: 2.5rem 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-title {
    font-size: 1.35rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
}

.section-subtitle i {
    color: var(--primary);
    margin-right: 0.3rem;
}

.section-cta {
    text-align: center;
    margin-top: 1.2rem;
}

/* ================================================================
   SERVICES
   ================================================================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #111;
    border-left: 4px solid var(--primary);
    padding: 1.5rem 1.2rem;
    transition: var(--transition);
}

.service-card:active {
    transform: scale(0.98);
    background: #1a1a1a;
}

.service-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    border: 1px solid var(--border);
}

.service-card h3 {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
    color: #fff;
}

.service-card p {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.4;
}

/* ================================================================
   PLANNING PREVIEW
   ================================================================ */
.planning-cards {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.plan-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #000;
    border: 1px solid var(--border);
    padding: 1.2rem;
    transition: var(--transition);
}

.plan-card.active {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.plan-card.done {
    opacity: 0.4;
    filter: grayscale(1);
}

.plan-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    border: 1px solid var(--border);
}

.plan-info {
    flex: 1;
}

.plan-info strong {
    display: block;
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
}

.plan-coach {
    display: block;
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0.1rem;
}

.plan-time {
    font-size: 0.8rem;
    color: #fff;
    opacity: 0.8;
    font-weight: 700;
}

.plan-badge {
    font-size: 0.65rem;
    font-weight: 900;
    padding: 0.3rem 0.6rem;
    background: #222;
    color: #fff;
    border: 1px solid var(--border);
}

.plan-badge.live {
    background: var(--primary);
    color: #000;
    border: none;
    box-shadow: 0 0 10px var(--primary);
}

.plan-badge.upcoming {
    color: var(--primary);
    border-color: var(--primary);
}

.plan-badge.ended {
    background: transparent;
    color: #555;
}

.rest-day {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.rest-day i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.rest-day h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.rest-day p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ================================================================
   HIGHLIGHTS (Fitness + Pool + Kids)
   ================================================================ */
.highlights-bg {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/pool-panoramic.jpg');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
}

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

.highlight-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border);
    padding: 1.5rem;
    backdrop-filter: blur(5px);
}

.hl-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.8rem;
    font-style: italic;
}

.hl-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #ddd;
    padding: 0.4rem 0;
}

.hl-list li i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* ================================================================
   NEWS (Actualités)
   ================================================================ */
.news-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0;
}

.news-grid::-webkit-scrollbar {
    display: none;
}

.news-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: #111;
    border-bottom: 3px solid var(--primary);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.news-card:hover {
    transform: none;
}

.news-img {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #000;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-img img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.news-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    /* Line clamp for title */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6rem;
}

.news-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 1.2rem;
    /* Line clamp for excerpt */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.8rem;
}

.news-link {
    margin-top: auto;
    font-size: 0.75rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-link i {
    color: var(--primary);
    transition: transform 0.2s;
}

.news-card:hover .news-link i {
    transform: translateX(5px);
}

.news-link {
    margin-top: auto;
    font-size: 0.75rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-link i {
    color: var(--primary);
    transition: transform 0.2s;
}

.news-card:hover .news-link i {
    transform: translateX(5px);
}

/* ================================================================
   PHOTO GALLERY
   ================================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: #000;
}

.gallery-main {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    opacity: 0.8;
}

.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
}

.gallery-label {
    position: absolute;
    bottom: 0.8rem;
    left: 0.8rem;
    z-index: 1;
    font-size: 0.75rem;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.6rem;
    background: rgba(0, 0, 0, 0.6);
    border-left: 3px solid var(--primary);
}

.gallery-label i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    background: #111;
    border-left: 3px solid var(--primary);
    padding: 1.5rem 0.8rem;
    transition: var(--transition);
}

.contact-card:active {
    transform: scale(0.97);
    background: #222;
}

a.contact-card:hover {
    border-color: var(--primary);
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.contact-card strong {
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: 1px;
}

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

.cc-sub {
    font-size: 0.65rem !important;
    opacity: 0.7;
}

.cc-wa {
    border-left-color: var(--wa-green);
}

.cc-wa i {
    color: var(--wa-green);
}

.cc-wa:hover {
    border-color: var(--wa-green);
    background: rgba(37, 211, 102, 0.04);
}

.contact-map {
    border: 1px solid var(--border);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    background: #000;
    border-top: 1px solid var(--border);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    height: 35px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

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

.footer-social a {
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
}

.footer-info h4,
.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
}

.footer-info ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-dim);
    padding: 0.3rem 0;
}

.footer-info ul li i {
    color: var(--primary);
    font-size: 0.75rem;
    margin-top: 3px;
    min-width: 14px;
}

.footer-info ul li a {
    color: var(--text-dim);
}

.footer-info ul li a:hover {
    color: var(--primary);
}

.footer-links ul li {
    padding: 0.25rem 0;
}

.footer-links ul li a {
    font-size: 0.82rem;
    color: var(--text-dim);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.wa-float {
    position: fixed;
    bottom: 5rem;
    left: 1rem;
    z-index: 98;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--wa-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 3px 15px rgba(37, 211, 102, 0.3);
    animation: waPulse 3s infinite;
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 3px 15px rgba(37, 211, 102, 0.3);
    }

    50% {
        box-shadow: 0 3px 25px rgba(37, 211, 102, 0.5);
    }
}

/* ================================================================
   MOBILE BOTTOM BAR
   ================================================================ */
.mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 12, 20, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    z-index: 100;
    padding: 0.5rem 0.3rem;
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
}

.mobile-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    color: var(--text-muted);
    font-size: 0.6rem;
    font-weight: 500;
    padding: 0.3rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-bar a i {
    font-size: 1.05rem;
}

.mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    border-top: 1px solid var(--border);
    z-index: 100;
    padding: 0.5rem 0.3rem;
}

.mobile-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.4rem;
}

.mobile-bar a i {
    font-size: 1.2rem;
}

.mobile-bar a:active {
    color: var(--primary);
    background: #111;
}

.mobile-bar .mb-wa {
    color: var(--primary);
}

/* ================================================================
   PAGE TEMPLATE (for planning page, etc.)
   ================================================================ */
.page-content {
    padding: 4.5rem 0 2rem;
    min-height: 60vh;
}

.page-content h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

/* ================================================================
   DESKTOP OVERRIDES (≥768px)
   ================================================================ */
@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }

    .container {
        padding: 0 2rem;
    }

    /* Header */
    .main-nav {
        display: block;
    }

    .menu-toggle {
        display: none;
    }

    .mobile-drawer {
        display: none;
    }

    .btn-wa-header span {
        display: inline;
    }

    .header-row {
        height: 64px;
    }

    .logo-img,
    .logo img {
        height: 42px;
    }

    /* Hide mobile bar */
    .mobile-bar {
        display: none;
    }

    .wa-float {
        bottom: 2rem;
        left: 2rem;
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }

    /* Hero */
    .hero {
        padding: 7rem 0 3rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-desc {
        font-size: 1.05rem;
    }

    .hero-btns .btn {
        flex: none;
        min-width: auto;
    }

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

    .stat-label {
        font-size: 0.8rem;
    }

    /* Gallery Overrides */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .gallery-main {
        grid-column: span 2;
    }

    /* Hero Logo Overrides */
    .hero-logo-img {
        width: 100px;
        height: 100px;
    }

    .hero-logo-name {
        font-size: 1.2rem;
    }

    /* Sections */
    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service-card {
        padding: 1.2rem;
    }

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

    /* Planning */
    .planning-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    /* Highlights */
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Contact */
    .contact-cards {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-card {
        padding: 1.2rem;
    }
}

/* ================================================================
   LARGE DESKTOP (≥1024px)
   ================================================================ */
@media (min-width: 1024px) {
    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-desc {
        font-size: 1.1rem;
        max-width: 600px;
    }

    .hero-stats {
        gap: 2rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .stat-num {
        font-size: 2.4rem;
    }

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

    .news-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        overflow-x: visible;
        padding-bottom: 0;
    }

    .news-card {
        flex: none;
        border: 1px solid var(--border);
    }

    .news-card:hover {
        border-color: var(--primary);
        transform: translateY(-5px);
    }

    .news-img {
        height: 220px;
        /* Specific desktop height */
    }

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

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    /* Hero Logo Desktop */
    .hero-logo-img {
        width: 120px;
        height: 120px;
    }

    .hero-logo-name {
        font-size: 1.4rem;
    }

    .hero-logo-sub {
        font-size: 0.85rem;
    }
}

/* ================================================================
   ANIMATIONS — lightweight
   ================================================================ */
@media (prefers-reduced-motion: no-preference) {

    .service-card,
    .highlight-card,
    .plan-card,
    .contact-card {
        opacity: 0;
        transform: translateY(12px);
        animation: fadeUp 0.4s ease forwards;
    }

    .service-card:nth-child(1) {
        animation-delay: 0.05s;
    }

    .service-card:nth-child(2) {
        animation-delay: 0.1s;
    }

    .service-card:nth-child(3) {
        animation-delay: 0.15s;
    }

    .service-card:nth-child(4) {
        animation-delay: 0.2s;
    }

    .service-card:nth-child(5) {
        animation-delay: 0.25s;
    }

    .service-card:nth-child(6) {
        animation-delay: 0.3s;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}