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

:root {
    --primary: #ff7a00;       /* High-octane premium brand orange */
    --dark-bg: #0d0d0d;       /* Matte black background */
    --card-bg: #141414;       /* Balanced container dark slate */
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Typography Defaults --- */
h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background-color: rgba(13, 13, 13, 0.98);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #1f1f1f;
}

nav .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 1.5px;
}

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

nav .nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

nav .nav-links a:hover, nav .nav-links a.active {
    color: var(--primary);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    background: var(--primary);
    color: #000000;
    padding: 16px 35px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s ease-in-out;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: #ff9533;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: #000000;
}

/* --- Sections & Layout Blocks --- */
.hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(rgba(13, 13, 13, 0.75), rgba(13, 13, 13, 0.98)), url('https://png.pngtree.com/thumb_back/fw800/background/20251102/pngtree-dimly-lit-gym-with-red-lighting-and-exercise-machines-creating-moody-image_20139312.webp') no-repeat center center/cover;
}

.hero h1 {
    font-size: 5rem;
    line-height: 0.95;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 35px;
}

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

.section-title {
    font-size: 3.5rem;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 10px;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

/* --- Component Grids --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid #1f1f1f;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
}

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

.card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.card .price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.card ul li {
    font-size: 0.95rem;
    color: #e0e0e0;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.card ul li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* --- Promo Highlight Wrapper --- */
.promo-bar {
    background: #141414;
    border: 1px dashed var(--primary);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    margin-top: 50px;
}

.promo-bar h4 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.promo-bar p {
    font-weight: 700;
    font-size: 1.2rem;
}

/* --- About Page Segment Layout --- */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
}

.about-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #222;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.about-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.about-content p {
    color: #dddddd;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- Transformation Showcase Grid (Fixed Image Sizing Container) --- */
.transformation-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    max-width: 950px;
    margin: 0 auto;
}

.transform-card {
    background: var(--card-bg);
    border: 2px solid #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.7);
    transition: border-color 0.3s ease;
}

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

.transform-img-crop {
    width: 100%;
    aspect-ratio: 3 / 4; /* Dynamic aspect lock forces uniform sizes across both images */
    overflow: hidden;
    background-color: #111;
}

.transform-img-crop img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops the photos gracefully inside identical dimensions */
    display: block;
}

.transform-label {
    padding: 18px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    text-align: center;
    letter-spacing: 1.5px;
    background: #1a1a1a;
    border-top: 1px solid #252525;
}

.before-label { color: #777777; }
.after-label { color: var(--primary); background: linear-gradient(180deg, #1a1a1a, #151515); }

.transform-copy {
    text-align: center;
    max-width: 750px;
    margin: 50px auto 0 auto;
    font-size: 1.05rem;
    color: #dddddd;
    line-height: 1.7;
}

/* --- Interactive Map Module --- */
.location-section {
    border-top: 1px solid #1a1a1a;
    background: #090909;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #222;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* --- Global Embedded Booking Container --- */
.booking-view {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 60px 20px;
}

.booking-box {
    background: var(--card-bg);
    padding: 45px 25px;
    border-radius: 12px;
    border: 1px solid #222;
    border-top: 4px solid var(--primary);
    width: 100%;
    max-width: 900px;
}

.calendly-wrapper {
    width: 100%;
    background: #141414;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 25px;
    border: 1px solid #222;
}

/* --- Payment Notice Box --- */
.payment-notice {
    margin: 20px auto;
    padding: 15px 20px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    max-width: 500px;
    text-align: center;
    background-color: rgba(255, 122, 0, 0.1);
}

.payment-notice p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-main);
}

.payment-notice i {
    color: var(--primary);
    margin-right: 8px;
}

/* --- Brand Footer System --- */
footer {
    background-color: #050505;
    border-top: 1px solid #1a1a1a;
    padding: 45px 6%;
    text-align: center;
    margin-top: auto;
    font-size: 0.95rem;
    color: var(--text-muted);
}

footer .footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    color: var(--text-main);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

footer .footer-brand span {
    color: var(--primary);
}

footer .footer-links {
    margin-bottom: 20px;
}

footer .footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid var(--primary);
    transition: 0.3s;
}

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

/* --- Social Icon Grid (Amplified & High Contrast Orange) --- */
.social-icons {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 35px;
}

.social-icons a {
    color: var(--primary);   /* High contrast brand orange global signature */
    font-size: 2.5rem;       /* Ultra distinct scaling design */
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #ffffff;          /* Transitions smoothly to clean white */
    transform: scale(1.18) translateY(-4px);
}

footer .designer-credit {
    font-size: 0.8rem;
    color: #444444;
    margin-top: 15px;
}

footer .designer-credit a {
    color: #666666;
    text-decoration: none;
    transition: 0.3s;
}

footer .designer-credit a:hover {
    color: #aaaaaa;
}

/* --- Responsive Compacting Layout System --- */
@media (max-width: 900px) {
    .about-layout { grid-template-columns: 1fr; gap: 45px; }
    .transformation-layout { gap: 20px; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3.4rem; }
    nav { flex-direction: column; gap: 15px; text-align: center; }
    nav .nav-links a { margin: 0 12px; }
    .transformation-layout { grid-template-columns: 1fr; max-width: 480px; }
    .map-container { height: 350px; }
}