/* ==========================================
   REAL GYMTX SERVICES - Stylesheet
   Theme: Luxury Dark Navy & Metallic Gold
   ========================================== */

/* Design Tokens & Variables */
:root {
    --color-bg-deep: #020712;
    --color-bg-navy: #060e20;
    --color-bg-card: rgba(13, 27, 62, 0.7);
    --color-gold: #d4af37;
    --color-gold-light: #e5c158;
    --color-gold-dark: #aa7c11;
    --color-text-light: #f3f4f6;
    --color-text-muted: #9ca3af;
    --color-border: rgba(212, 175, 55, 0.2);
    --color-glow: rgba(212, 175, 55, 0.4);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-blur: blur(12px);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text-light);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 8px;
}

.btn-solid-gold {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: #000;
    border: none;
}

.btn-solid-gold:hover {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    box-shadow: 0 0 15px var(--color-glow);
    transform: translateY(-2px);
}

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

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: var(--glass-blur);
}

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

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.mobile-only-whatsapp {
    display: none;
}

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

/* Header Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 7, 18, 0.7);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    padding: 16px 0;
}

.main-header.scrolled {
    padding: 12px 0;
    background: rgba(2, 7, 18, 0.9);
    border-bottom: 1px solid var(--color-border);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-logo-img {
    height: 55px;
    width: auto;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-logo-img {
    height: 46px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.accent-text {
    color: var(--color-gold);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-gold);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url('gymtx_hero_bg_clean.png') center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 7, 18, 0.9) 30%, rgba(2, 7, 18, 0.4) 70%, rgba(2, 7, 18, 0.85) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.pre-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.text-glow {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 40px rgba(212, 175, 55, 0.3);
    background: linear-gradient(to right, var(--color-text-light), var(--color-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Hero Logo Video Container */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-card-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--color-border), rgba(255, 255, 255, 0.05), var(--color-border));
    box-shadow: var(--shadow-premium);
}

.video-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: radial-gradient(circle, var(--color-glow) 0%, transparent 70%);
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 4s infinite alternate;
}

.video-card-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #020712;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-animated-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes pulseGlow {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

/* Stats Bar */
.stats-bar {
    background: var(--color-bg-navy);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 32px 0;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* General Sections */
.section-header {
    margin-bottom: 60px;
}

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

.section-tag {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.gold-divider {
    height: 3px;
    width: 60px;
    background: var(--color-gold);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.why-us-content .gold-divider {
    margin: 0 0 20px 0;
}

.contact-info-panel .gold-divider {
    margin: 0 0 20px 0;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    background-color: var(--color-bg-deep);
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px 32px;
    transition: var(--transition-smooth);
    backdrop-filter: var(--glass-blur);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    border-color: var(--color-gold-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
}

.card-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-light);
    font-size: 1.6rem;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-card:hover .card-icon-box {
    background: var(--color-gold);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.card-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-gold-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link:hover {
    color: #fff;
}

/* Why Choose Us Section */
.why-us-section {
    background-color: var(--color-bg-navy);
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.why-us-image-area {
    display: flex;
    justify-content: center;
}

.logo-showcase-box {
    position: relative;
    background: linear-gradient(135deg, rgba(2, 7, 18, 0.5), rgba(6, 14, 32, 0.5));
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    box-shadow: var(--shadow-premium);
}

.showcase-logo {
    width: 85%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.25));
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: #000;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.why-us-content .section-title {
    margin-bottom: 20px;
}

.section-description {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.features-list li {
    display: flex;
    gap: 16px;
}

.feature-icon {
    color: var(--color-gold-light);
    font-size: 1.25rem;
    flex-shrink: 0;
    padding-top: 2px;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.feature-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: #fff;
}

/* Contact / Booking Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-bg-deep);
}

.contact-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.contact-info-panel .section-title {
    margin-bottom: 20px;
}

.contact-subtext {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.method-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-details h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.method-details p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Booking Form */
.booking-form-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--color-border), rgba(255, 255, 255, 0.05), var(--color-border));
    box-shadow: var(--shadow-premium);
}

.form-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.booking-form {
    position: relative;
    z-index: 2;
    background: #060e20;
    border-radius: 18px;
    padding: 40px;
}

.form-title {
    font-size: 1.6rem;
    margin-bottom: 28px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: #020712;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.form-group select option {
    background: #060e20;
    color: #fff;
}

.form-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* Footer */
.main-footer {
    background-color: #01040b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 64px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo-img {
    height: 48px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-certifications h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer-links ul a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-certifications .cert-icons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.cert-badge i {
    color: var(--color-gold);
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 30px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Responsive Breakpoints */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .why-us-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .why-us-image-area {
        order: 2;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 20px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #020712;
        border-bottom: 1px solid var(--color-border);
        padding: 24px 0;
        display: none;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .mobile-only-whatsapp {
        display: block;
        width: 100%;
        text-align: center;
        margin: 10px 0 5px 0;
    }
    
    .nav-link-whatsapp {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: #25D366;
        color: #000 !important;
        font-family: var(--font-heading);
        font-weight: 700;
        padding: 10px 24px;
        border-radius: 30px;
        width: 85%;
        transition: var(--transition-smooth);
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
    }
    
    .nav-link-whatsapp:hover {
        background: #128C7E;
        color: #fff !important;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================
   Completed Jobs Portfolio Page Styles
   ========================================== */

/* Portfolio Banner Hero */
.portfolio-hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 80px;
    background: url('gymtx_hero_bg_clean.png') center center / cover no-repeat;
    border-bottom: 1px solid var(--color-border);
}

.portfolio-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(2, 7, 18, 0.92) 0%, rgba(2, 7, 18, 0.85) 100%);
    z-index: 1;
}

.portfolio-hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.portfolio-hero-title {
    font-size: 3rem;
    margin-bottom: 16px;
    background: linear-gradient(to right, #fff, var(--color-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-hero-description {
    font-size: 1.15rem;
    color: var(--color-text-muted);
}

/* Category Filter Bar */
.portfolio-grid-section {
    padding: 80px 0;
    background-color: var(--color-bg-deep);
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(13, 27, 62, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--color-text-light);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: #000;
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

/* Portfolio Cards Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
}

.portfolio-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-card.fade-out {
    opacity: 0;
    transform: scale(0.9);
    display: none;
}

.portfolio-card.fade-in {
    animation: cardFadeIn 0.4s forwards;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold-light);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}

.portfolio-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

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

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

.portfolio-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(2, 7, 18, 0.85);
    color: var(--color-gold-light);
    border: 1px solid var(--color-border);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
}

.portfolio-details {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    gap: 12px;
}

.portfolio-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.badge-gold {
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.portfolio-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.portfolio-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.portfolio-text strong {
    color: #fff;
}

.portfolio-footer {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

.parts-cert {
    font-size: 0.85rem;
    color: #34d399;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Portfolio CTA bottom banner */
.portfolio-cta {
    background: var(--color-bg-navy);
    padding: 80px 0;
    border-top: 1px solid var(--color-border);
}

.portfolio-cta-text {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.portfolio-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 768px) {
    .portfolio-hero-title {
        font-size: 2.3rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 12px;
    }
    
    .portfolio-cta-buttons .btn {
        width: 100%;
    }
}

/* ==========================================
   Commercial Brands Section Styles
   ========================================== */

.brands-section {
    background-color: var(--color-bg-deep);
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 10;
}

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

.brands-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 32px;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-item {
    background: rgba(13, 27, 62, 0.25);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 14px 28px;
    min-width: 150px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    cursor: default;
    user-select: none;
    backdrop-filter: var(--glass-blur);
}

.brand-item:hover {
    color: var(--color-gold-light);
    border-color: var(--color-gold);
    background: rgba(13, 27, 62, 0.5);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

/* Typographic Logo Details */
.brand-item-pmx span {
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #fff;
    transition: var(--transition-smooth);
}
.brand-item-pmx:hover span {
    color: var(--color-gold-light);
}

.brand-item-lifefitness span {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: -0.03em;
}
.brand-item-lifefitness span i {
    font-weight: 300;
    color: var(--color-gold);
}

.brand-item-precor span {
    letter-spacing: 0.2em;
    font-weight: 400;
    font-size: 0.9rem;
}

.brand-item-matrix span {
    letter-spacing: 0.05em;
    font-weight: 800;
}

.brand-item-spirit span {
    letter-spacing: 0.05em;
    font-weight: 300;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
    padding-bottom: 2px;
}
.brand-item-spirit:hover span {
    border-color: var(--color-gold);
}

.brand-item-inflight span {
    font-family: var(--font-body);
    font-weight: 200;
    letter-spacing: 0.15em;
    font-size: 1rem;
}

.brand-item-startrac span {
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.brand-item-hoist span {
    font-weight: 800;
    letter-spacing: -0.01em;
}

.brand-item-concept span {
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: lowercase;
}
.brand-item-concept .c-accent {
    font-weight: 800;
    color: var(--color-gold-light);
    font-size: 1.2rem;
}

/* ==========================================
   Reviews/Testimonials Section Styles
   ========================================== */

.reviews-section {
    background-color: var(--color-bg-navy);
    padding: 100px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.reviews-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: var(--shadow-premium);
    backdrop-filter: var(--glass-blur);
    z-index: 2;
}

.reviews-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.reviews-slider-inner {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-slide-card {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
    display: none;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.review-slide-card.active {
    position: relative;
    opacity: 1;
    transform: scale(1) translateY(0);
    display: flex;
    pointer-events: auto;
}

.review-stars {
    color: var(--color-gold-light);
    font-size: 1.3rem;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.review-comment {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 28px;
    font-style: italic;
    font-weight: 300;
}

.review-client {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 4px;
}

.review-gym {
    font-size: 0.85rem;
    color: var(--color-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 24px;
    position: relative;
    z-index: 3;
}

.review-control-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.review-control-btn:hover {
    background: var(--color-gold);
    color: #000;
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--color-gold);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================
   FAQ Section Styles
   ========================================== */

.faq-section {
    background-color: var(--color-bg-deep);
    padding: 100px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.faq-info {
    position: sticky;
    top: 120px;
}

.faq-description {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.faq-item.active {
    border-color: var(--color-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    gap: 16px;
}

.faq-question i {
    color: var(--color-gold-light);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   Houston Service Map Styles
   ========================================== */

.houston-map-container {
    margin-top: 40px;
    background: rgba(13, 27, 62, 0.2);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
}

.map-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-gold-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.houston-map-svg {
    width: 100%;
    height: auto;
    display: block;
    background: #01050e;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.map-line {
    fill: none;
    stroke: rgba(212, 175, 55, 0.15);
    stroke-width: 1.5;
    stroke-dasharray: 4 4;
}

.map-glow-ring {
    fill: none;
    stroke: rgba(212, 175, 55, 0.03);
    stroke-width: 2;
}

.map-glow-ring-inner {
    fill: none;
    stroke: rgba(212, 175, 55, 0.05);
    stroke-width: 1.5;
}

.map-pin {
    fill: var(--color-gold);
    cursor: pointer;
}

.map-pin circle {
    transition: var(--transition-smooth);
}

.map-pin:hover circle {
    fill: #fff;
    filter: drop-shadow(0 0 5px var(--color-gold));
}

.map-pin text {
    fill: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.05em;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.map-pin:hover text {
    fill: #fff;
    font-size: 9px;
}

.map-pin.hub {
    fill: var(--color-gold-light);
}

.map-pin.hub text {
    fill: var(--color-gold-light);
    font-size: 10px;
    font-weight: 800;
}

.map-pin.hub:hover text {
    font-size: 11px;
}

.pulse-ring {
    fill: none;
    stroke: var(--color-gold);
    stroke-width: 1;
    transform-origin: center;
    animation: mapPulse 3s infinite ease-out;
    pointer-events: none;
}

.map-pin.hub .pulse-ring {
    stroke: var(--color-gold-light);
    animation-duration: 2s;
}

@keyframes mapPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Adjust contact sections layout for map */
@media (max-width: 1024px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-info {
        position: relative;
        top: 0;
    }
}

/* ==========================================
   WHO WE SERVE / INDUSTRIES SECTION STYLES
   ========================================== */
.industries-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--color-bg-deep) 0%, var(--color-bg-navy) 100%);
    position: relative;
    border-top: 1px solid var(--color-border);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.industry-card {
    background: var(--color-bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.15);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card-featured {
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: linear-gradient(145deg, rgba(13, 27, 62, 0.9), rgba(6, 14, 32, 0.95));
}

.industry-icon-box {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 1px solid var(--color-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-gold-light);
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.industry-card:hover .industry-icon-box {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: #020712;
    transform: scale(1.05);
}

.industry-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 8px;
    line-height: 1.3;
}

.industry-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.45;
    margin-bottom: 14px;
}

.industry-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold-light);
    align-self: flex-start;
}

.industry-badge.gold-badge {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(229, 193, 88, 0.15));
    border-color: var(--color-gold);
    color: #fff;
}

/* Trust Pillars Banner */
.trust-pillars-box {
    margin-top: 60px;
    padding: 40px 36px;
    background: linear-gradient(135deg, rgba(6, 14, 32, 0.9), rgba(13, 27, 62, 0.8));
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
}

.trust-pillars-title {
    font-size: 1.6rem;
    color: var(--color-gold-light);
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.trust-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.trust-pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(212, 175, 55, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-gold-light);
    border: 1px solid var(--color-border);
}

.pillar-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.pillar-info p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ==========================================
   FAQ SECTION STYLES
   ========================================== */
.faq-section {
    padding: 90px 0;
    background: var(--color-bg-deep);
    border-top: 1px solid var(--color-border);
}

.faq-container {
    max-width: 860px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

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

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

.faq-icon {
    font-size: 0.9rem;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
    background: rgba(2, 7, 18, 0.4);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 16px 24px 24px 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Mobile Adjustments for Industries & FAQ */
@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .trust-pillars-box {
        padding: 28px 20px;
    }

    .trust-pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


