/* =========================================================
   CRAZYFEET ZENITH — MAIN STYLESHEET
   (style.css)
========================================================= */

/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #111016;
    background: #ffffff;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

/* =========================
   VARIABLES
========================= */
:root {
    --pink: #f24d87;
    --pink-light: #ff6c9f;
    --black: #111016;
    --dark: #17151b;
    --white: #ffffff;
    --light-bg: #f8f7f8;
    --gray: #6e6b73;
    --border: #e8e5e8;
    --transition: all 0.3s ease;
}

/* =========================
   CONTAINER
========================= */
.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}

/* =========================
   TOP BAR
========================= */
.topbar {
    background: var(--black);
    color: #ffffff;
    min-height: 38px;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
}

.topbar i {
    color: var(--pink);
    margin-right: 7px;
}

.top-phone:hover {
    color: var(--pink);
}

/* =========================
   HEADER
========================= */
.header {
    height: 82px;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.nav-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================
   LOGO
========================= */
.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--pink);
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
    transform: rotate(-10deg);
}

.logo-text strong {
    display: block;
    font-size: 20px;
    line-height: 18px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.logo-text span {
    display: block;
    font-size: 9px;
    color: var(--pink);
    letter-spacing: 5px;
    font-weight: 800;
    margin-top: 5px;
}

/* =========================
   NAVIGATION
========================= */
.navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;
    padding: 31px 0;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 23px;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-button {
    padding: 13px 19px;
    background: var(--pink);
    color: #ffffff;
    border-radius: 3px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
    transition: var(--transition);
}

.nav-button:hover {
    background: var(--black);
}

/* =========================
   MOBILE MENU
========================= */
.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 24px;
    color: var(--black);
}

/* =========================
   HERO SLIDER
========================= */
.hero {
    height: 680px;
    position: relative;
    overflow: hidden;
    background: #111;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1.2s ease, transform 1.2s ease;
    will-change: opacity, transform;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 3;
}

.hero-slide.exit {
    opacity: 0;
    transform: scale(0.98);
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 10, 16, 0.88), rgba(12, 10, 16, 0.48) 55%, rgba(12, 10, 16, 0.18));
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    width: min(1180px, calc(100% - 40px));
    z-index: 4;
    pointer-events: none;
}

.hero-small-title {
    color: var(--pink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 17px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
}

.hero h1 {
    max-width: 850px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.03;
    letter-spacing: -3px;
    font-weight: 900;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}

.hero h1 span {
    color: var(--pink);
}

.hero-description {
    max-width: 600px;
    margin: 25px 0 32px;
    color: #eeeeee;
    font-size: 15px;
    line-height: 1.9;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
}

.hero-buttons {
    display: flex;
    gap: 13px;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.hero-indicators span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-indicators span.active {
    background: var(--pink);
    transform: scale(1.2);
    border-color: var(--pink);
}

.hero-indicators span:hover {
    background: var(--pink-light);
    transform: scale(1.15);
}

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 3px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    transition: var(--transition);
    pointer-events: auto;
}

.btn-primary {
    background: var(--pink);
    color: #ffffff;
    border: 1px solid var(--pink);
}

.btn-primary:hover {
    background: #ffffff;
    color: var(--black);
    border-color: #ffffff;
    transform: scale(1.03);
}

.btn-outline {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
    background: #ffffff;
    color: var(--black);
    transform: scale(1.03);
}

/* =========================
   QUICK CONTACT
========================= */
.quick-contact {
    background: var(--pink);
    color: #ffffff;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.quick-item {
    min-height: 105px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    transition: background 0.25s;
}

.quick-item:hover {
    background: rgba(0, 0, 0, 0.06);
}

.quick-item:last-child {
    border-right: none;
}

.quick-icon {
    font-size: 25px;
}

.quick-item strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.quick-item span,
.quick-item a {
    font-size: 13px;
}

.quick-item a:hover {
    color: var(--black);
}

/* =========================
   SECTIONS
========================= */
.section {
    padding: 105px 0;
}

.section-label {
    color: var(--pink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-heading h2,
.about-content h2,
.contact-content h2 {
    font-size: 48px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.section-heading h2 span,
.about-content h2 span,
.contact-content h2 span {
    color: var(--pink);
}

.section-heading>p:last-child {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.9;
}

.center {
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================
   ABOUT
========================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    height: 520px;
    position: relative;
}

.about-main-image {
    width: 72%;
    height: 440px;
    object-fit: cover;
}

.about-small-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 240px;
    object-fit: cover;
    border: 12px solid #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.experience-box {
    position: absolute;
    left: 50%;
    top: 45px;
    background: var(--pink);
    color: #ffffff;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 13px;
    box-shadow: 0 15px 35px rgba(244, 76, 135, 0.3);
}

.experience-box strong {
    font-size: 34px;
}

.experience-box span {
    font-size: 10px;
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: 1px;
}

.about-content>p:not(.section-label) {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 15px;
}

.features {
    margin: 28px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
}

.feature i {
    color: var(--pink);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--pink);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

/* =========================
   CLASSES
========================= */
.classes-section {
    background: var(--light-bg);
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.class-card {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.class-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.class-image {
    height: 220px;
    overflow: hidden;
}

.class-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.class-card:hover .class-image img {
    transform: scale(1.08);
}

.class-content {
    padding: 25px;
}

.class-number {
    color: var(--pink);
    font-size: 11px;
    font-weight: 900;
}

.class-content h3 {
    font-size: 21px;
    margin: 8px 0 10px;
}

.class-content p {
    color: var(--gray);
    font-size: 12px;
    line-height: 1.8;
    min-height: 65px;
    margin-bottom: 15px;
}

.class-content a {
    color: var(--pink);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

/* =========================
   STATS
========================= */
.stats-section {
    background: var(--black);
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 45px 0;
}

.stat-box {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-box:last-child {
    border-right: none;
}

.stat-box strong {
    display: block;
    color: var(--pink);
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-box span {
    color: #bbbbbb;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* =========================
   INSTRUCTORS
========================= */
.instructor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.instructor-card {
    position: relative;
    overflow: hidden;
    background: #111016;
    color: #ffffff;
}

.instructor-card img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    opacity: 0.85;
    transition: 0.5s ease;
}

.instructor-card:hover img {
    transform: scale(1.05);
    opacity: 0.6;
}

.instructor-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.instructor-info h3 {
    font-size: 18px;
}

.instructor-info p {
    color: #dddddd;
    font-size: 11px;
    margin-top: 5px;
}

/* =========================
   GALLERY
========================= */
.gallery-section {
    background: var(--light-bg);
}

.gallery-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 45px;
}

.gallery-header h2 {
    font-size: 48px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
}

.gallery-header h2 span {
    color: var(--pink);
}

.gallery-filters {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.filter-btn {
    border: none;
    background: #ffffff;
    padding: 10px 16px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--pink);
    color: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    height: 290px;
    overflow: hidden;
    position: relative;
    display: none;
}

.gallery-item.show {
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 77, 135, 0.75);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--pink);
    display: grid;
    place-items: center;
}

/* =========================
   CTA
========================= */
.cta-section {
    background: var(--pink);
    color: #ffffff;
    padding: 60px 0;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-label {
    color: #ffffff;
    opacity: 0.8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.cta-wrapper h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 900;
}

.cta-wrapper h2 span {
    color: var(--black);
}

.btn-white {
    background: #ffffff;
    color: var(--black);
}

.btn-white:hover {
    background: var(--black);
    color: #ffffff;
    transform: scale(1.03);
}

/* =========================
   CONTACT
========================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-content>p:not(.section-label) {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.9;
}

.contact-details {
    margin-top: 35px;
    display: grid;
    gap: 18px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff0f5;
    color: var(--pink);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.contact-detail small {
    display: block;
    color: #999999;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-detail strong {
    font-size: 13px;
}

.contact-detail:hover strong {
    color: var(--pink);
}

/* =========================
   CONTACT FORM
========================= */
.contact-form-wrapper {
    background: var(--light-bg);
    padding: 35px;
}

.contact-form h3 {
    font-size: 25px;
    margin-bottom: 5px;
}

.form-subtitle {
    color: var(--gray);
    font-size: 12px;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.8px;
    margin-bottom: 7px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: #ffffff;
    padding: 14px 15px;
    outline: none;
    font-size: 12px;
    transition: var(--transition);
}

.input-group textarea {
    resize: vertical;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--pink);
}

.form-button {
    width: 100%;
}

.form-message {
    color: var(--pink);
    font-size: 11px;
    margin-top: 12px;
    text-align: center;
}

/* =========================
   FOOTER
========================= */
.footer {
    background: var(--black);
    color: #ffffff;
    padding-top: 65px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 45px;
    padding-bottom: 55px;
}

.footer-logo {
    margin-bottom: 18px;
}

.footer-about p {
    color: #aaaaaa;
    font-size: 12px;
    line-height: 2;
}

.footer-column h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer-column a,
.footer-column span {
    display: block;
    color: #aaaaaa;
    font-size: 12px;
    line-height: 2.4;
}

.footer-column a:hover {
    color: var(--pink);
}

.footer-column i {
    color: var(--pink);
    width: 18px;
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #211f26;
    display: grid;
    place-items: center;
    color: #ffffff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--pink);
    transform: scale(1.1);
}

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: #777777;
    font-size: 10px;
}

/* =========================
   FLOATING CALL
========================= */
.floating-call {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: var(--pink);
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 900;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 77, 135, 0.5);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(242, 77, 135, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(242, 77, 135, 0);
    }
}

/* =========================
   BACK TO TOP
========================= */
.back-top {
    position: fixed;
    right: 20px;
    bottom: 82px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: var(--black);
    color: #ffffff;
    display: grid;
    place-items: center;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-top.show {
    opacity: 1;
    visibility: visible;
}

/* =========================
   LIGHTBOX
========================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 30px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .navigation {
        gap: 17px;
    }
    .classes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }
    .navigation {
        position: absolute;
        left: 0;
        right: 0;
        top: 82px;
        background: #ffffff;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px 25px;
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    }
    .navigation.open {
        display: flex;
    }
    .nav-link {
        padding: 13px 0;
        border-bottom: 1px solid #eeeeee;
    }
    .nav-link::after {
        display: none;
    }
    .nav-button {
        text-align: center;
        margin-top: 10px;
        margin-bottom: 5px;
    }
    .about-grid,
    .contact-grid {
        gap: 45px;
    }
    .section {
        padding: 80px 0;
    }
    .hero {
        height: 600px;
    }
}

@media (max-width: 800px) {
    .quick-grid {
        grid-template-columns: 1fr;
    }
    .quick-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .quick-item:last-child {
        border-bottom: none;
    }
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-images {
        height: 500px;
    }
    .gallery-header,
    .cta-wrapper {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .instructor-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        width: calc(100% - 28px);
    }
    .top-location {
        display: none;
    }
    .topbar-inner {
        justify-content: center;
    }
    .hero {
        height: 620px;
    }
    .hero h1 {
        font-size: 44px;
        letter-spacing: -2px;
    }
    .hero-description {
        font-size: 13px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .section-heading h2,
    .about-content h2,
    .contact-content h2,
    .gallery-header h2 {
        font-size: 38px;
    }
    .about-images {
        height: 400px;
    }
    .about-main-image {
        height: 330px;
    }
    .about-small-image {
        height: 175px;
    }
    .experience-box {
        left: 35%;
        top: 25px;
        padding: 15px 18px;
    }
    .classes-grid,
    .instructor-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        height: 280px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px;
    }
    .stat-box:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    .stat-box:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-about {
        grid-column: 1 / -1;
    }
    .footer-bottom .container {
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .logo-text strong {
        font-size: 17px;
    }
    .logo-text span {
        font-size: 8px;
    }
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    .hero h1 {
        font-size: 39px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-box,
    .stat-box:nth-child(odd) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .stat-box:last-child {
        border-bottom: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}