/* ==========================================================================
   CSS VARIABLES & RESET
   ========================================================================== */
   :root {
    /* Colors */
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --bg-light-dark: #1a1a1a;
    
    --accent-yellow: #c8a553; /* Custom gold/yellow */
    --accent-yellow-hover: #b39247;
    
    --text-main: #d1d1d1;
    --text-white: #ffffff;
    --text-dark: #111111;

    /* Typography */
    --font-heading: 'Oswald', sans-serif; /* Aggressive/Blocky */
    --font-body: 'Outfit', sans-serif; /* Modern clean */

    /* Layout */
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

ul {
    list-style: none;
}

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

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
}

.text-yellow {
    color: var(--accent-yellow) !important;
}

.text-white {
    color: var(--text-white) !important;
}

.section-tag {
    font-family: var(--font-heading);
    color: var(--accent-yellow);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.section-tag .line {
    display: inline-block;
    width: 40px;
    height: 3px;
    background-color: var(--accent-yellow);
}

.section-tag.center-tag {
    justify-content: center;
}

.section-title {
    font-size: 3.5rem;
    font-style: italic;
    margin-bottom: 20px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 10px;
}

.btn-yellow-solid {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
}

.btn-yellow-solid:hover {
    background-color: var(--text-white);
    color: var(--text-dark);
}

.btn-circle-play {
    background: transparent;
    color: var(--text-white);
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-circle-play i {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.btn-circle-play:hover i {
    border-color: var(--accent-yellow);
    background-color: var(--accent-yellow);
    color: var(--text-dark);
}

.btn-circle-play .btn-text-side {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-decoration: underline;
    text-decoration-color: var(--accent-yellow);
    text-underline-offset: 5px;
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.top-bar {
    background-color: var(--bg-darker);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    font-size: 0.9rem;
}

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

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-left a {
    color: var(--text-main);
}

.top-bar-left a:hover {
    color: var(--accent-yellow);
}

.main-header {
    position: absolute;
    top: 40px; /* Below top bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.main-header.sticky {
    position: fixed;
    top: 0;
    background-color: rgba(10, 10, 10, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

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

.logo-shield {
    font-size: 2.5rem;
    color: var(--accent-yellow);
}

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

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-main);
    text-transform: uppercase;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-yellow);
    transition: var(--transition);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions .btn-yellow {
    background-color: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 10px 20px;
}

.header-actions .btn-yellow:hover {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.8rem;
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.bg-outline-text {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 15vw;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.05);
    z-index: 3;
    pointer-events: none;
    white-space: nowrap;
}

.bg-outline-text.right-aligned {
    left: auto;
    right: 5%;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
    margin: 0; /* Align left */
    padding-top: 100px;
}

.hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-subtitle::before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: var(--accent-yellow);
}

.hero-title {
    font-size: 5.5rem;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    color: transparent;
    -webkit-text-stroke: 2px var(--text-white);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
    background-color: var(--accent-yellow);
    padding: 40px 0;
    position: relative;
    z-index: 10;
    margin-top: -50px; /* Overlap hero */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    font-size: 3rem;
    color: var(--text-dark);
}

.stat-info h2 {
    color: var(--text-dark);
    font-size: 3rem;
    margin-bottom: -5px;
}

.stat-info p {
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: 120px 0;
}

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

.about-image-wrapper {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.yellow-frame {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-yellow);
    z-index: 1;
}

.about-img {
    position: relative;
    z-index: 2;
    transform: translate(-20px, -20px);
    border: 5px solid var(--bg-dark);
    transition: var(--transition);
}

.about-img:hover {
    transform: translate(-10px, -10px);
}

.lead-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-white);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item i {
    font-size: 1.2rem;
    margin-top: 5px;
}

/* ==========================================================================
   SCHEDULE / CLASSES SECTION
   ========================================================================== */
.schedule-section {
    padding: 100px 0;
    background-color: var(--bg-light-dark);
    position: relative;
    overflow: hidden;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.schedule-class-card {
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.schedule-class-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-yellow);
}

.class-img {
    height: 250px;
    background-image: url('assets/academy.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.class-img.img-2 {
    background-image: url('assets/hero_bjj.jpg');
}

.class-img.img-3 {
    background-image: url('assets/mestremichel.png');
    background-position: top center;
}

.class-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.schedule-class-card:hover .class-overlay {
    opacity: 1;
}

.class-info {
    padding: 30px;
}

.class-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.class-time {
    color: var(--accent-yellow);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* ==========================================================================
   INSTRUCTOR SECTION
   ========================================================================== */
.instructor-section {
    padding: 120px 0;
}

.instructor-card-zymmy {
    max-width: 400px;
    margin: 50px auto 0;
    text-align: center;
}

.inst-img-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.inst-img-wrapper img {
    transition: var(--transition);
}

.instructor-card-zymmy:hover .inst-img-wrapper img {
    transform: scale(1.1);
}

.social-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: var(--accent-yellow);
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 0;
    transition: var(--transition);
}

.instructor-card-zymmy:hover .social-overlay {
    bottom: 0;
}

.social-overlay a {
    color: var(--text-dark);
    font-size: 1.2rem;
}

.social-overlay a:hover {
    color: #fff;
}

.inst-info-box h3 {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 5px;
}

.inst-info-box .role {
    color: var(--accent-yellow);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
    background: url('assets/hero_bjj.jpg') center/cover fixed;
    padding: 100px 0;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 4rem;
    font-style: italic;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--bg-darker);
    padding-top: 80px;
    border-top: 5px solid var(--accent-yellow);
}

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

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-line {
    width: 40px;
    height: 3px;
    background-color: var(--accent-yellow);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a:hover {
    color: var(--accent-yellow);
    padding-left: 5px;
}

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

.social-links-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.social-links-footer a:hover {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
}

.footer-bottom {
    background-color: #050505;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* ==========================================================================
   FLOATING BTN & MODAL
   ========================================================================== */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
    transition: transform 0.3s;
}

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

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background-color: var(--bg-light-dark);
    padding: 40px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border-top: 5px solid var(--accent-yellow);
    transform: translateY(-50px);
    transition: var(--transition);
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
}

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

.form-group input, .form-group select {
    width: 100%;
    padding: 15px;
    background-color: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-white);
    font-family: var(--font-body);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--accent-yellow);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none; /* Hide top bar on mobile */
    }
    .main-header {
        top: 0;
        background-color: rgba(10, 10, 10, 0.95);
        padding: 15px 0;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-darker);
        flex-direction: column;
        transition: var(--transition);
        padding: 40px 20px;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .header-actions .btn-yellow {
        display: none; /* Hide CTA button in header on mobile */
    }
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .bg-outline-text {
        font-size: 20vw;
    }
    
    .about-grid, .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-section {
        margin-top: 0;
    }
    .stats-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .cta-title {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.section {
    padding: 100px 0;
}

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

.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 20px; }
.mt-4 { margin-top: 30px; }
.mb-3 { margin-bottom: 20px; }

.section-header {
    margin-bottom: 50px;
}

/* =========================================================
   ANIMATIONS & MICRO-INTERACTIONS
   ========================================================= */
@keyframes pulse-ring {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}

/* Float animation for WhatsApp button pulse */
.float-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse-ring 2s ease-out infinite;
    z-index: -1;
}

/* Header nav active underline slide */
.nav-menu a {
    display: inline-block;
    position: relative;
    padding-bottom: 4px;
}

/* Stats section stat-box divider on desktop */
@media (min-width: 769px) {
    .stat-box:not(:last-child) {
        border-right: 1px solid rgba(0, 0, 0, 0.15);
        padding-right: 30px;
    }
}

/* About section - animated yellow frame on hover */
.about-image-wrapper:hover .yellow-frame {
    transition: all 0.4s ease;
    bottom: -10px;
    right: -10px;
}

.yellow-frame {
    transition: all 0.4s ease;
}

/* Schedule class cards — equal height images */
.schedule-class-card {
    display: flex;
    flex-direction: column;
}

.class-info {
    flex: 1;
}

/* Instructor section — center layout responsiveness */
@media (min-width: 769px) {
    .instructor-card-zymmy {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* =========================================================
   SCROLL-TO-TOP BUTTON (appears after scrolling)
   ========================================================= */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: var(--text-white);
}

/* =========================================================
   MODAL HEADER
   ========================================================= */
.modal-header h3 {
    font-size: 2.5rem;
    font-style: italic;
    margin-bottom: 8px;
}

.modal-header {
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-yellow);
    padding-bottom: 20px;
}

/* =========================================================
   SCHEDULE SECTION — mobile stack cards
   ========================================================= */
@media (max-width: 900px) {
    .schedule-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* =========================================================
   HERO — mobile adjustments
   ========================================================= */
@media (max-width: 768px) {
    .hero-content {
        padding-top: 120px;
    }

    .hero-title span {
        -webkit-text-stroke: 1px var(--text-white);
    }

    .hero-description {
        font-size: 1rem;
    }
}

/* =========================================================
   FOOTER — mobile stacked layout
   ========================================================= */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-section, .instructor-section, .schedule-section {
        padding: 70px 0;
    }
}

/* =========================================================
   ABOUT SECTION responsive
   ========================================================= */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        padding-right: 20px;
        padding-bottom: 20px;
    }

    .about-img {
        transform: translate(-10px, -10px);
    }
}
/* =========================================================
   LOCATION & REVIEWS SECTION
   ========================================================= */
.location-section {
    background-color: var(--bg-darker);
    overflow: hidden;
    position: relative;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: start;
}

/* --- Map --- */
.map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-frame {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255,193,7,0.25);
    box-shadow: 0 0 40px rgba(255,193,7,0.08);
    transition: var(--transition);
}

.map-frame:hover {
    border-color: rgba(255,193,7,0.5);
    box-shadow: 0 0 60px rgba(255,193,7,0.15);
}

.map-frame iframe {
    display: block;
    filter: grayscale(40%) invert(92%) hue-rotate(180deg);
    transition: var(--transition);
}

.map-frame:hover iframe {
    filter: grayscale(0%) invert(0%);
}

.location-info-card {
    background: var(--bg-light-dark);
    border: 1px solid rgba(255,193,7,0.15);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.loc-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
}

.loc-info-item i {
    font-size: 1.3rem;
    margin-top: 2px;
    min-width: 20px;
}

.loc-info-item strong {
    display: block;
    color: var(--text-white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.loc-info-item p {
    color: var(--text-main);
    margin: 0;
}

/* --- Reviews --- */
.reviews-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reviews-header {
    background: var(--bg-light-dark);
    border: 1px solid rgba(255,193,7,0.15);
    border-radius: 12px;
    padding: 20px 25px;
}

.google-rating-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.google-logo {
    height: 28px;
    width: auto;
    filter: brightness(1.1);
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 1.1rem;
    color: #fbbc04;
}

.rating-number {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-left: 6px;
}

.rating-count {
    color: var(--text-main);
    font-size: 0.85rem;
    margin: 4px 0 0;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-card {
    background: var(--bg-light-dark);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition);
}

.review-card:hover {
    border-color: rgba(255,193,7,0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-yellow);
    color: var(--bg-darker);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-info strong {
    display: block;
    color: var(--text-white);
    font-size: 0.95rem;
}

.review-stars {
    font-size: 0.75rem;
    color: #fbbc04;
    margin-top: 3px;
    display: flex;
    gap: 2px;
}

.review-text {
    color: var(--text-main);
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
}

/* Outline Button */
.btn-outline-yellow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-outline-yellow:hover {
    background: var(--accent-yellow);
    color: var(--bg-darker);
}

/* Responsive */
@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* Reviewer avatar color variants (moved from inline styles) */
.reviewer-avatar--green  { background: #4caf50; }
.reviewer-avatar--purple { background: #9c27b0; }

/* Map iframe — remove default border (moved from inline style) */
.map-frame iframe { border: 0; }
