:root {
    /* Dark Mode (Default) */
    --primary: #ffffff;
    --accent: #e50914;
    --dark-bg: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --overlay: rgba(0, 0, 0, 0.75);
    --card-bg: #111;
    --card-border: #222;
    --card-border-hover: #444;
    --text-secondary: #888;
}

/* Light Mode */
[data-theme="light"] {
    --primary: #1a1a1a;
    --accent: #e50914;
    --dark-bg: #ffffff;
    --glass: rgba(0, 0, 0, 0.05);
    --glass-border: rgba(0, 0, 0, 0.1);
    --overlay: rgba(0, 0, 0, 0.5);
    --card-bg: #f5f5f5;
    --card-border: #e0e0e0;
    --card-border-hover: #cccccc;
    --text-secondary: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Common Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    background: var(--dark-bg);
}

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

.service-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    transition: 0.3s;
}

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

.service-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-feature-preview {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.preview-item i {
    color: #22c55e;
    font-size: 0.8rem;
}

/* Featured Plans Section */
.featured-plans-section {
    background: var(--dark-bg);
    border-top: 1px solid var(--card-border);
}

.plans-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.plan-card {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--card-border);
    overflow: hidden;
    transition: 0.3s;
}

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

.plan-header {
    padding: 25px;
    background: var(--card-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--card-border);
}

.plan-title {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
}

.exercise-count {
    background: var(--glass);
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.plan-exercises-preview {
    padding: 25px;
}

.plan-exercise-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.ex-thumb {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--card-bg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--card-border);
}

.ex-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ex-thumb i {
    font-size: 1.2rem;
    color: #333;
}

.ex-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.ex-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.more-exercises {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    padding-top: 10px;
}

.plan-footer {
    padding: 20px 25px;
    background: var(--card-bg);
}

.view-full-plan-btn {
    width: 100%;
    background: transparent;
    border: 1px solid #333;
    color: white;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
}

.view-full-plan-btn:hover {
    background: white;
    color: black;
    border-color: white;
}

/* Packages Section */
.packages-section {
    background: #0f0f0f;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: #555;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.package-card.popular {
    border-color: white;
    transform: scale(1.05);
    background: #222;
}

.package-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: black;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.package-name {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.package-price {
    margin-bottom: 25px;
}

.package-price .currency {
    font-size: 1.2rem;
    font-weight: 700;
}

.package-price .amount {
    font-size: 2.5rem;
    font-weight: 900;
}

.package-price .duration {
    font-size: 0.85rem;
    color: #888;
}

.package-desc {
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.6;
}

.package-features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.package-features li {
    margin-bottom: 12px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li i {
    color: #22c55e;
}

.package-btn {
    width: 100%;
    background: white;
    color: black;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.3s;
}

.package-btn:hover {
    background: #ddd;
}

.package-card.popular .package-btn {
    background: white;
}

/* About Section */
.about-section {
    background: var(--dark-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 25px;
}

.stats-mini {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item h4 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    background: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid #1a1a1a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-circle {
    margin-bottom: 20px;
}

.footer-brand p {
    color: #888;
    max-width: 300px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-links ul li, .footer-contact ul li {
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.footer-links ul li a {
    color: #888;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact ul li {
    color: #888;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #111;
    text-align: center;
}

.footer-bottom p {
    color: #555;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stats-mini {
        gap: 20px;
    }
    .stat-item h4 {
        font-size: 1.5rem;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: 0.4s;
}

.nav-group {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.login-btn-nav {
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: 0.3s;
}

.login-btn-nav:hover {
    background: var(--primary);
    color: var(--dark-bg);
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s;
    margin-left: 15px;
}

.theme-toggle-btn:hover {
    background: var(--primary);
    color: var(--dark-bg);
    transform: rotate(20deg);
}

.logo-circle {
    width: 60px;
    height: 60px;
    border: 2px solid white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.5rem;
    font-weight: 900;
    text-align: center;
    transform: rotate(-15deg);
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--dark-bg);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 1;
}

/* Removed old .hero::before as we use .hero-overlay now */

.hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 1s ease-out forwards 0.5s;
}

.big-text {
    font-size: clamp(2.5rem, 10vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.85;
    letter-spacing: -3px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.script-text {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2rem, 8vw, 5rem);
    color: var(--primary);
    margin: -20px 0;
    transform: rotate(-5deg);
    z-index: 5;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.main-cta {
    margin-top: 50px;
    background: white;
    color: black;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-cta .icon-circle {
    background: black;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
}

.main-cta:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.floating-socials {
    position: fixed;
    right: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 90;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: white;
    color: black;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon:hover {
    transform: translateX(-5px);
    background: var(--accent);
    color: white;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.auth-card {
    background: #111;
    border: 1px solid #333;
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transform: translateY(50px);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .auth-card {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #555;
    font-size: 1.5rem;
    transition: 0.3s;
}

.close-modal:hover {
    color: white;
    transform: rotate(90deg);
}

.auth-header h2 {
    margin-bottom: 5px;
    font-weight: 800;
    text-transform: uppercase;
}

.auth-header p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 25px;
    position: relative;
}

.input-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    padding: 10px 30px 10px 0; /* space on the right for eye icon */
    color: white;
    caret-color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

/* Better text selection visibility */
::selection {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

::-moz-selection {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Remove ugly browser autofill colors and keep dark theme */
.input-group input:-webkit-autofill,
.input-group input:-webkit-autofill:hover,
.input-group input:-webkit-autofill:focus,
.input-group input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #111 inset;
    box-shadow: 0 0 0 1000px #111 inset;
    -webkit-text-fill-color: #fff;
    border-bottom: 1px solid #444;
    transition: background-color 5000s ease-in-out 0s;
}

/* Password eye toggle inside input */
.input-group .toggle-password {
    position: absolute;
    right: 0;
    bottom: 10px;
    cursor: pointer;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-group .toggle-password i {
    font-size: 0.95rem;
}

.input-group .toggle-password:hover {
    color: #fff;
}

.input-group label {
    position: absolute;
    left: 0;
    top: 10px;
    color: #666;
    font-size: 0.9rem;
    pointer-events: none;
    transition: 0.3s;
}

.input-group input:focus ~ label,
.input-group input:valid ~ label {
    top: -15px;
    font-size: 0.75rem;
    color: white;
}

.input-group input:focus {
    border-bottom-color: white;
}

.auth-btn {
    width: 100%;
    background: white;
    color: black;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 10px;
    transition: 0.3s;
}

.auth-btn:hover:not(:disabled) {
    background: #ddd;
    letter-spacing: 1px;
}

.auth-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #999;
}

.auth-btn .fa-spinner {
    margin-right: 8px;
}

.switch-auth {
    margin-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

.switch-auth span {
    color: white;
    cursor: pointer;
    font-weight: 700;
    text-decoration: underline;
}

/* OTP Input Group */
.otp-input-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 30px 0;
}

.otp-input-group input {
    width: 45px;
    height: 55px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 10px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    caret-color: white;
    transition: all 0.3s;
    outline: none;
}

.otp-input-group input:focus {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.resend-otp {
    margin-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.resend-otp span {
    color: white;
    cursor: pointer;
    font-weight: 700;
    text-decoration: underline;
    transition: 0.3s;
}

.resend-otp span:hover {
    color: #ddd;
}

#resendCooldown {
    font-size: 0.8rem;
    color: #666;
    margin-left: 5px;
}

#otpTimer {
    font-size: 0.8rem;
    color: #666;
    margin-top: 10px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .otp-input-group {
        gap: 8px;
    }
    
    .otp-input-group input {
        width: 40px;
        height: 50px;
        font-size: 1.2rem;
    }
}

.form-box {
    display: none;
}

.form-box.active {
    display: block;
    animation: fadeIn 0.4s;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    .nav-links {
        display: none;
    }
    .floating-socials {
        display: none;
    }
    .auth-card {
        width: 90%;
        padding: 30px;
    }
}

/* Gallery Slider Styles */
.about-image {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: grid;
    place-items: center;
    transition: 0.3s;
    opacity: 0;
}

.about-image:hover .slider-btn {
    opacity: 1;
}

.slider-btn:hover {
    background: var(--primary);
}

.slider-btn.prev { left: 20px; }
 .slider-btn.next { right: 20px; }
 
 /* Gallery Management Styles */
 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
     gap: 16px;
     margin-top: 16px;
 }

 .gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    background: #1a1a1a;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item .remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: 0.2s;
}

.gallery-item .remove-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.gallery-add-btn {
    aspect-ratio: 1;
    border: 2px dashed #333;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    cursor: pointer;
    transition: 0.2s;
}

.gallery-add-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(220, 38, 38, 0.05);
}

.gallery-add-btn i {
    font-size: 24px;
}

.gallery-add-btn span {
    font-size: 12px;
    font-weight: 500;
}


/* ── WHY JOIN SECTION ── */
.why-section { background: #0d0d0d; border-top: 1px solid var(--dark-border); }
.why-grid {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 100px; align-items: center;
}
.why-text .section-subtitle { margin-top: 16px; }
.why-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0;
}
.why-item {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 28px 24px;
    border-bottom: 1px solid var(--dark-border);
    border-right: 1px solid var(--dark-border);
    transition: background 0.3s;
}
.why-item:nth-child(even) { border-right: none; }
.why-item:nth-last-child(-n+2) { border-bottom: none; }
.why-item:hover { background: #141414; }
.why-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--glass); border: 1px solid var(--dark-border);
    border-radius: 8px; display: grid; place-items: center;
    font-size: 1rem; color: white;
}
.why-item h4 { font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.why-item p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: #0a0a0a; border-top: 1px solid var(--dark-border); }
.testimonials-section .section-header { text-align: center; }
.testimonials-section .reviews-btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    width: 100%;
    grid-column: 1 / -1;
}
.testimonials-section .reviews-btn-wrap .directions-btn {
    margin-top: 0;
    display: inline-flex !important;
    margin-left: auto;
    margin-right: auto;
}
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; background: var(--dark-border);
    border: 1px solid var(--dark-border);
}
.testimonial-card {
    background: #111; padding: 44px 36px;
    display: flex; flex-direction: column; gap: 20px;
    transition: background 0.3s;
}
.testimonial-card:hover { background: #161616; }
.stars { display: flex; gap: 4px; color: #f5c518; font-size: 0.8rem; }
.testimonial-card p {
    font-size: 0.9rem; color: var(--text-secondary);
    line-height: 1.8; flex-grow: 1;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: #222; border: 1px solid #333;
    overflow: hidden; flex-shrink: 0;
    display: grid; place-items: center;
    font-size: 0.75rem; font-weight: 800; color: var(--text-secondary);
    flex-shrink: 0;
}
.author-avatar img {
    width: 44px; height: 44px; border-radius: 50%;
    object-fit: cover; display: block;
}
.testimonial-author strong { display: block; font-size: 0.85rem; font-weight: 800; }
.testimonial-author span { font-size: 0.75rem; color: var(--text-muted); }

/* ── LOCATION SECTION ── */
.location-section { background: #0d0d0d; border-top: 1px solid var(--dark-border); }
.location-grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 80px; align-items: stretch;
}
.location-info { display: flex; flex-direction: column; }
.location-info .section-title { margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 0; flex-grow: 1; }
.contact-item {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--dark-border);
}
.contact-item:first-child { border-top: 1px solid var(--dark-border); }
.contact-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    display: grid; place-items: center;
    font-size: 0.9rem; color: var(--text-secondary);
}
.contact-item strong { display: block; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 4px; }
.contact-item p { font-size: 0.88rem; color: white; line-height: 1.6; }
.contact-item a { color: white; }
.contact-item a:hover { color: var(--text-secondary); }
.directions-btn {
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: 32px; padding: 14px 32px;
    background: white; color: black; border: none;
    font-size: 0.8rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 2px; border-radius: 2px; transition: 0.3s;
    width: fit-content;
}
.directions-btn:hover { background: #e0e0e0; transform: translateY(-2px); }
.map-embed {
    height: 480px; border-radius: 0;
    overflow: hidden; border: 1px solid var(--dark-border);
}
.map-embed iframe { display: block; }

/* ── RESPONSIVE FOR NEW SECTIONS ── */
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: 1fr; gap: 60px; }
    .location-grid { grid-template-columns: 1fr; gap: 48px; }
    .map-embed { height: 360px; }
}
@media (max-width: 768px) {
    .why-features { grid-template-columns: 1fr; }
    .why-item { border-right: none; }
    .why-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--dark-border); }
    .why-item:last-child { border-bottom: none; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 0; }
    .map-embed { height: 280px; }
}

.review-source {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.72rem; font-weight: 700; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1px;
    margin-top: 4px; transition: color 0.3s;
}
.review-source:hover { color: white; }
