/* ============================================
   ABOUT PAGE — Self-contained stylesheet
   Requires: base.css (reset + variables)
   ============================================ */

/* ── 1. Typography ── */
body {
    font-family: var(--font-body);
    color: var(--deep-charcoal);
    background-color: var(--cream);
    font-size: 16px;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--dark-brown);
    text-shadow: none;
}

h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: normal;
    transform: none;
    color: var(--dark-brown);
}

h2 {
    font-size: 36px;
    color: var(--dark-brown);
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 20px;
    font-family: var(--font-heading);
}

p {
    margin-bottom: var(--space-md);
    color: var(--deep-charcoal);
}

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

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

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

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: normal;
    font-family: inherit;
}

.text-bold {
    font-weight: 700;
}

/* ── 2. Section Title ── */
.section-title {
    position: relative;
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-lg);
    text-align: center;
    color: var(--dark-brown);
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    border-radius: 0;
    box-shadow: none;
}

/* ── 3. Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-brown) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.45);
    background: linear-gradient(135deg, #ddb68a 0%, var(--dark-brown) 100%);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--dark-brown);
    color: var(--dark-brown);
}

.btn-secondary:hover {
    background-color: var(--dark-brown);
    color: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(92, 64, 51, 0.25);
}

.btn-secondary.dark-mode {
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary.dark-mode:hover {
    background-color: var(--white);
    color: var(--military-green);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ── 4. Cards ── */
.card-feature {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
    height: 100%;
}

.card-feature:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--white);
    font-size: 32px;
}

.feature-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border-top: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--primary-gold);
}

.feature-card .feature-icon {
    font-size: 32px;
    margin-bottom: var(--space-md);
    display: inline-block;
}

.feature-card h4 {
    margin-bottom: var(--space-sm);
    color: var(--deep-charcoal);
}

/* ── 5. Layout ── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

section {
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.section-alt {
    background-color: #F9F9F9;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    margin: 0;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    align-items: stretch;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.hidden {
    display: none;
}

/* ── 6. Split Section ── */
.split-section {
    display: flex;
    align-items: center;
    gap: 0;
    background-color: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    margin: 0;
    border: none;
    padding: 0;
}

.split-image,
.split-content {
    flex: 1;
}

.split-image {
    height: 100%;
    min-height: auto;
    position: relative;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-content {
    padding: var(--space-lg);
}

/* ── 7. Navigation — Tactical Island ── */
header {
    background: rgba(44, 44, 44, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--primary-gold);
    height: 70px;
    position: sticky;
    top: 20px;
    z-index: 1000;
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 30px;
    padding: 0 10px;
}

header.scrolled {
    width: 95%;
    top: 10px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 20px;
}

/* Logo — inline (non-skewed) version */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

.logo img {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    object-fit: contain;
    background-color: var(--white);
}

.logo span {
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: 30px;
}

.nav-link {
    font-family: var(--font-stats);
    font-weight: 700;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--dark-brown);
    background: var(--primary-gold);
    box-shadow: 0 0 10px var(--primary-gold);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--primary-gold);
}

.phone-btn {
    background: linear-gradient(135deg, var(--military-green), #3a4a1c);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: var(--space-md);
    transition: var(--transition-normal);
    border: 1px solid var(--primary-gold);
    box-shadow: 0 0 5px rgba(212, 165, 116, 0.3);
    font-family: var(--font-stats);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phone-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-brown);
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--primary-gold);
}

.phone-btn i {
    font-size: 14px;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(44, 44, 44, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1001;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-overlay .nav-link {
    color: var(--white);
    font-size: 24px;
    margin: var(--space-sm) 0;
    background: none;
    padding: 10px;
}

.mobile-nav-overlay .nav-link:hover {
    color: var(--primary-gold);
    background: none;
    box-shadow: none;
    text-shadow: 0 0 10px var(--primary-gold);
}

.mobile-nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--primary-gold);
    font-size: 32px;
    background: none;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.mobile-nav-close:hover {
    transform: rotate(90deg);
    background: var(--primary-gold);
    color: var(--dark-brown);
}

/* ── 8. Dropdown Styles ── */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.nav-dropdown:hover::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 25px;
    background: transparent;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: rgba(44, 44, 44, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    min-width: 280px;
    border-radius: 20px;
    border: 1px solid var(--primary-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    overflow: hidden;
    padding: 10px 0;
    transition: all 0.25s ease;
    opacity: 0;
    visibility: hidden;
}

.nav-dropdown-content a {
    display: block;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: var(--font-stats);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    white-space: normal;
    line-height: 1.4;
    text-align: left;
    text-decoration: none !important;
}

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

.nav-dropdown-content a:hover {
    background: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
}

.mobile-submenu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 20px;
    margin-bottom: 15px;
    width: 100%;
    align-items: center;
}

.mobile-submenu .nav-link {
    font-size: 14px !important;
    margin: 0 !important;
    text-transform: none !important;
    color: rgba(255, 255, 255, 0.6) !important;
    letter-spacing: 0.5px !important;
}

/* ── 9. Footer ── */
footer {
    background-color: #1a1a1a;
    color: var(--cream);
    padding: var(--space-xl) 0 var(--space-md);
    font-size: 14px;
    border-top: 2px solid var(--primary-gold);
}

footer>.container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    flex: 1;
    min-width: 0;
}

.footer-map {
    width: 300px;
    flex-shrink: 0;
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map iframe {
    display: block;
}

.footer-bottom {
    flex-basis: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    text-align: center;
    color: #888;
    font-size: 13px;
}

.footer-col h4 {
    color: var(--primary-gold);
    font-size: 18px;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: var(--space-md);
    color: #ccc;
}

ul.footer-links li {
    margin-bottom: 12px;
}

ul.footer-links li a {
    color: #ccc;
    font-size: 15px;
    transition: var(--transition-fast);
    display: inline-block;
}

ul.footer-links li a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.social-icon:hover {
    background: var(--primary-gold);
    color: var(--dark-brown);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

/* ── 10. Page Hero (All Inner Pages) ── */
.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/F7EBB754-116A-470F-96A6-F611A85D6387.jpeg');
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: var(--space-xs);
}

/* ── 11. About Hero ── */
.about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../assets/images/collage-hero.webp');
    background-size: cover;
    background-position: center;
}

.about-hero h1,
.about-hero p {
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ── 12. Section Blocks ── */
.section-block {
    padding: var(--space-xxl) 0;
}

.section-block.bg-light {
    background-color: #f8f9fa;
}

.section-block.bg-dark {
    background-color: var(--deep-charcoal);
    color: var(--white);
}

/* ── 13. Mission Box ── */
.mission-box {
    background-color: rgba(212, 165, 116, 0.1);
    border-left: 4px solid var(--primary-gold);
    padding: var(--space-lg);
    margin-top: var(--space-lg);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.mission-box h4 {
    color: var(--dark-brown);
    margin-bottom: var(--space-sm);
}

/* ── 14. Feature Cards (Why Different) ── */
/* (Included above in section 4) */

/* ── 15. Team Grid ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.team-member {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

.member-role {
    display: block;
    color: var(--military-green);
    font-weight: 600;
    margin-bottom: var(--space-md);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── 16. Facility Section ── */
.facility-section .split-image img {
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.facility-features {
    list-style: none;
    margin-top: var(--space-lg);
}

.facility-features li {
    margin-bottom: var(--space-md);
    padding-left: 20px;
    position: relative;
}

.facility-features li::before {
    content: "\2022";
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ── 17. Client Grid ── */
.client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.client-item {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-item h4 {
    color: var(--primary-gold);
    margin-bottom: var(--space-sm);
}

.client-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.bg-light .client-item {
    background: var(--white);
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
}

.bg-light .client-item h4 {
    color: var(--dark-brown);
}

.bg-light .client-item p {
    color: var(--deep-charcoal);
    font-size: 15px;
}

/* ── About Label ── */
.about-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: var(--space-xs);
}

/* ── 18. About Story ── */
.about-story {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-xl) 20px;
}

.about-story-content {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.about-float-img {
    float: left;
    width: 320px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin: 0 var(--space-xl) var(--space-md) 0;
    shape-outside: margin-box;
}

.about-story-content h2 {
    font-size: 30px;
    line-height: 1.2;
    color: var(--deep-charcoal);
    margin-bottom: var(--space-sm);
}

.about-story-content h3 {
    font-size: 22px;
    line-height: 1.3;
    color: var(--deep-charcoal);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xs);
}

.about-story-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: var(--space-sm);
}

.about-story-content .intro-paragraph-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: var(--space-sm);
    padding-left: var(--space-md);
    list-style: disc;
}

/* ── 18b. About Panel Layout (3-column story) ── */
.about-panel-section {
    padding: 72px 20px 60px;
    background: #fff;
}

.about-panel-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px 1fr;
    gap: 0;
    align-items: center;
}

/* Left column — right-aligned text */
.about-panel-left {
    padding: 0 52px 0 0;
    text-align: right;
    border-right: 1px solid rgba(196, 156, 109, 0.22);
}

/* Right column — left-aligned text */
.about-panel-right {
    padding: 0 0 0 52px;
    text-align: left;
    border-left: 1px solid rgba(196, 156, 109, 0.22);
}

.about-panel-block {
    margin-bottom: 44px;
}

.about-panel-block:last-child {
    margin-bottom: 0;
}

/* h2 — left column only */
.about-panel-left h2 {
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 800;
    color: #1e1a17;
    line-height: 1.25;
    margin-bottom: 6px;
}

.about-panel-left h2::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: var(--primary-gold, #c8922a);
    margin: 10px 0 16px auto;
    border-radius: 2px;
}

/* h3 — both columns */
.about-panel-left h3,
.about-panel-right h3 {
    font-size: 17px;
    font-weight: 800;
    color: #1e1a17;
    margin-bottom: 10px;
    line-height: 1.4;
}

.about-panel-left h3::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary-gold, #c8922a);
    margin: 6px 0 14px auto;
    border-radius: 2px;
}

.about-panel-right h3::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary-gold, #c8922a);
    margin: 6px auto 14px 0;
    border-radius: 2px;
}

/* paragraphs */
.about-panel-left p,
.about-panel-right p {
    font-size: 15px;
    color: #2a2520;
    line-height: 1.85;
    margin-bottom: 12px;
    font-weight: 500;
}

/* bullet list — right column */
.about-panel-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-panel-list li {
    font-size: 15px;
    color: #2a2520;
    font-weight: 500;
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
}

.about-panel-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--primary-gold, #c8922a);
    font-weight: 700;
}

/* Center image panel */
.about-center-panel {
    background: #160e06;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 -1px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

.about-center-panel img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.about-center-label {
    padding: 22px 20px 26px;
    text-align: center;
    background: linear-gradient(to bottom, #1a0f06, #2c1810);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-center-label span {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 3.5px;
    color: var(--primary-gold, #c8922a);
    text-transform: uppercase;
}

.about-center-label strong {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    font-family: var(--font-heading);
}

.about-center-label em {
    font-style: normal;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 900px) {
    .about-panel-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-center-panel {
        margin: 0;
        border-radius: 14px;
    }

    .about-center-panel img {
        height: 320px;
        object-position: center 20%;
    }

    .about-panel-left {
        padding: 0 0 40px 0;
        text-align: left;
        border-right: none;
        border-bottom: 1px solid rgba(196, 156, 109, 0.22);
        margin-bottom: 40px;
    }

    .about-panel-left h2::after {
        margin: 10px auto 16px 0;
    }

    .about-panel-left h3::after {
        margin: 6px auto 14px 0;
    }

    .about-panel-right {
        padding: 40px 0 0 0;
        border-left: none;
        border-top: 1px solid rgba(196, 156, 109, 0.22);
    }
}

/* ── 19. About Stats ── */
.about-stats {
    background: var(--deep-charcoal);
    padding: var(--space-xl) 20px;
}

.about-stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.about-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── 20. About Mission ── */
.about-mission {
    padding: var(--space-xxl) 20px;
    background: var(--ivory);
}

.about-mission-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-mission-inner h2 {
    font-size: 28px;
    line-height: 1.3;
    color: var(--deep-charcoal);
    margin-bottom: var(--space-md);
}

.about-mission-inner>p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: var(--space-xl);
}

.about-mission-values {
    display: flex;
    gap: 16px;
    text-align: left;
    align-items: flex-start;
    border-top: 1px solid rgba(196, 156, 109, 0.28);
    padding-top: 40px;
    margin-top: 40px;
}

.about-value {
    flex: 1;
    padding: 28px 40px;
    border-right: 1px solid rgba(196, 156, 109, 0.28);
    background: linear-gradient(160deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.4) 100%);
    border-radius: 12px;
    box-shadow: none;
    transition: none;
}

.about-value:last-child {
    border-right: none;
}

/* Staggered vertical offsets + different heights */
.about-value:nth-child(1) { margin-top: 40px; min-height: 190px; }
.about-value:nth-child(2) { margin-top: 0;    min-height: 260px; }
.about-value:nth-child(3) { margin-top: 20px; min-height: 160px; }

.about-value:hover {
    box-shadow: none;
    transform: none;
}

.about-value-icon {
    width: 28px;
    height: 28px;
    color: var(--primary-gold, #c8922a);
    margin-bottom: 14px;
    display: block;
    stroke-width: 1.8;
}

.about-value h4 {
    font-size: 17px;
    font-weight: 800;
    color: #1e1a17;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.about-value p {
    font-size: 14.5px;
    line-height: 1.75;
    color: #555;
}

/* ── 21. CTA Block ── */
.cta-block {
    background-color: var(--deep-charcoal);
    color: var(--cream);
    text-align: center;
    border-radius: var(--radius-lg);
    margin: var(--space-lg);
    padding: var(--space-xxl) var(--space-md);
}

.cta-block h2 {
    color: var(--primary-sand, var(--primary-gold));
    margin-bottom: var(--space-sm);
}

.cta-block p {
    color: var(--cream);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

/* ── 22. Utilities ── */
.text-gold {
    color: var(--primary-gold) !important;
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.mt-lg {
    margin-top: var(--space-lg);
}

.section-intro {
    max-width: 800px;
    margin: 0 auto var(--space-lg);
}

.section-intro p {
    font-size: 18px;
    line-height: 1.8;
}

/* ── 23. Testimonials ── */
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.testimonial-card .testimonial-text {
    font-style: italic;
    font-size: 16px;
}

.testimonial-author {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author h5 {
    margin: 0;
    font-size: 16px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--sage-green);
}

/* ── 24. Floating Action Buttons ── */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 24px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-whatsapp {
    background-color: #25D366;
}

.float-call {
    background-color: var(--alert-orange);
}

/* ============================================
   25. RESPONSIVE — Tablet (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --max-width: 960px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

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

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

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

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

    /* Fix background-attachment for tablets */
    #why-choose-us,
    #service-coverage {
        background-attachment: scroll;
    }
}

/* ============================================
   26. RESPONSIVE — Mobile (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    /* Typography */
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    .section-title {
        margin-bottom: var(--space-md);
        font-size: 24px;
    }

    /* Navigation */
    header {
        width: 95%;
        top: 10px;
        height: 60px;
        padding: 0 5px;
        border-radius: 30px;
    }

    .nav-links,
    .phone-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Grid Layouts */
    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    /* Split Sections */
    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column-reverse;
    }

    .split-image {
        height: 250px;
        width: 100%;
    }

    /* Footer */
    footer>.container {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .footer-content>div:first-child {
        grid-column: 1 / -1;
    }

    .footer-map {
        width: 150px;
        height: 150px;
        margin: var(--space-md) 0 0;
        flex-shrink: 0;
    }

    .footer-map iframe {
        height: 100%;
    }

    .footer-bottom {
        font-size: 12px;
    }

    /* Cards */
    .card-feature {
        padding: 24px 16px;
    }

    /* Buttons (Touch-friendly) */
    .btn {
        padding: 14px 28px;
        font-size: 14px;
        min-height: 48px;
    }

    .flex-center {
        flex-direction: column;
        gap: var(--space-sm) !important;
        width: 100%;
    }

    .flex-center .btn {
        width: 100%;
        max-width: 320px;
    }

    /* CTA Block */
    .cta-block {
        margin: var(--space-md);
        padding: var(--space-xl) var(--space-sm);
        border-radius: var(--radius-md);
    }

    .cta-block h2 {
        font-size: 24px;
    }

    .cta-block p {
        font-size: 15px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: var(--space-md);
    }

    .testimonial-text {
        font-size: 15px;
    }

    .section-intro p {
        font-size: 16px;
    }

    /* Page Hero */
    .page-hero {
        min-height: 35vh;
        height: auto;
        padding: 80px 20px 40px;
    }

    .page-hero-content {
        padding: 0 10px;
    }

    .page-hero-content h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .page-hero-content p {
        font-size: 15px;
    }

    /* About Story */
    .about-story {
        padding: var(--space-lg) 15px;
    }

    .about-float-img {
        float: none;
        width: 100%;
        height: auto;
        margin: 0 0 var(--space-md) 0;
        border-radius: var(--radius-md);
        display: block;
    }

    .about-story-content {
        overflow: visible;
    }

    .about-story-content h2 {
        font-size: 24px;
    }

    .about-story-content h3 {
        font-size: 18px;
        margin-top: var(--space-md);
    }

    .about-story-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-label {
        font-size: 11px;
    }


    .about-block,
    .about-block.about-block--reverse {
        flex-direction: column;
        margin-bottom: var(--space-lg);
    }

    .about-block-img {
        flex: none;
        width: 100%;
        height: 260px;
    }

    .about-block-img img {
        height: 260px;
    }

    .about-block-text {
        padding: var(--space-md);
    }

    .about-block-text h2 {
        font-size: 24px;
    }

    /* Stats bar — 2-column grid on mobile */
    .about-stats {
        padding: var(--space-lg) 15px;
    }

    .about-stats-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
        justify-items: center;
        text-align: center;
    }

    .about-stat {
        flex: none;
        width: 100%;
    }

    .about-stat strong {
        font-size: 32px;
    }

    .about-stat span {
        font-size: 11px;
    }

    /* Mission — stack values, reduce spacing */
    .about-mission {
        padding: var(--space-xl) 15px;
    }

    .about-mission-inner h2 {
        font-size: 22px;
    }

    .about-mission-inner>p {
        font-size: 14px;
    }

    .about-mission-values {
        flex-direction: column;
        gap: 32px;
        padding-top: 32px;
        margin-top: 32px;
    }

    .about-value {
        padding: 28px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(196, 156, 109, 0.28);
    }

    .about-value:last-child {
        border-bottom: none;
    }

    .about-value:nth-child(1),
    .about-value:nth-child(2),
    .about-value:nth-child(3) {
        margin-top: 0;
        min-height: unset;
    }

    /* Section block */
    .section-block {
        padding: var(--space-xl) 0;
    }

    .mission-box {
        padding: var(--space-md);
    }

    .feature-card {
        padding: var(--space-md);
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .team-member {
        padding: var(--space-md);
    }

    .facility-features li {
        font-size: 15px;
    }

    /* Client Grid */
    .client-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .client-item {
        padding: var(--space-md);
    }

    /* Content blocks */
    .content-block {
        font-size: 16px;
        padding: 0 var(--space-sm);
    }

    .content-block h2 {
        font-size: 24px;
    }

    .content-block h3 {
        font-size: 20px;
    }
}

/* ============================================
   27. RESPONSIVE — Small Mobile (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    .container {
        padding: 0 16px;
    }

    /* Page hero */
    .page-hero {
        min-height: 30vh;
        padding: 70px 16px 30px;
    }

    .page-hero-content h1 {
        font-size: 22px;
    }

    /* Content */
    .content-block {
        font-size: 15px;
    }

    .content-block h2 {
        font-size: 22px;
    }

    .content-block h3 {
        font-size: 18px;
    }

    /* About page — small phones */
    .about-float-img {
        height: auto;
    }

    .about-stats-inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }

    .about-stat strong {
        font-size: 26px;
    }

    .about-mission-inner h2 {
        font-size: 20px;
    }

    /* CTA */
    .cta-block {
        margin: var(--space-sm);
        padding: var(--space-lg) var(--space-sm);
    }

    .cta-block h2 {
        font-size: 22px;
    }

    /* Section block */
    .section-block {
        padding: var(--space-lg) 0;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-map {
        width: 120px;
        height: 120px;
    }

    footer {
        padding: var(--space-lg) 0 var(--space-md);
    }

    /* Floating actions */
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .floating-actions {
        bottom: 15px;
        right: 15px;
    }
}
