:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --secondary: #1a1a1a;
    --accent: #f59e0b;
    --bg: #fafafa;
    --white: #ffffff;
    --text: #171717;
    --text-light: #525252;
    --border: #e5e5e5;
    --success: #16a34a;
    --danger: #dc2626;
    --radius: 10px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--border);
}

header.scrolled {
    box-shadow: var(--shadow);
}

.header-top {
    background: var(--secondary);
    color: white;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 8px;
}

.header-top .highlight {
    background: var(--primary);
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.logo .logo-img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 6px;
}

.logo .logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.logo .logo-text .highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.2s;
    cursor: pointer;
    position: relative;
    padding: 4px 0;
}

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

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

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

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

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-dark {
    background: var(--secondary);
    color: white;
}

.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    color: var(--secondary);
}

/* ===== PAGE CONTENT ===== */
.page-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.page-content.active {
    display: block;
}

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

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 20px;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.2;
}

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

.hero-text .subtitle {
    font-size: 1.1rem;
    color: #a3a3a3;
    margin-bottom: 24px;
    max-width: 480px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d4d4d4;
    font-size: 0.85rem;
    background: rgba(255,255,255,0.05);
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-feature i {
    color: var(--success);
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.equipment-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.eq-card {
    width: 110px;
    height: 110px;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s;
    cursor: pointer;
}

.eq-card:hover {
    background: rgba(249,115,22,0.25);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249,115,22,0.2);
}

.eq-card span {
    font-size: 0.6rem;
    color: #a3a3a3;
    margin-top: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECTION HEADERS ===== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-header .subtitle {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== EQUIPMENT CARDS ===== */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.equipment-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.equipment-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.equipment-card:hover::before {
    transform: scaleX(1);
}

.equipment-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.equipment-card .eq-icon {
    font-size: 3.5rem;
    margin-bottom: 14px;
}

.equipment-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.equipment-card .capacity {
    display: inline-block;
    background: #fff7ed;
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.equipment-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.equipment-card .specs {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.75rem;
    color: var(--text-light);
}

.equipment-card .specs strong {
    display: block;
    color: var(--text);
    font-size: 0.95rem;
}

/* ===== SERVICE CARDS ===== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid var(--border);
}

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

.service-card .s-icon {
    width: 55px;
    height: 55px;
    background: #fff7ed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin: 60px 0;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.stat-card .stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-card .stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    background: var(--secondary);
    color: white;
    padding: 70px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

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

.about-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--primary);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.8rem;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.info-card {
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid var(--border);
}

.info-card .info-icon {
    width: 48px;
    height: 48px;
    background: #fff7ed;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
footer {
    background: var(--secondary);
    color: white;
    padding: 50px 20px 25px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-col h4 {
    margin-bottom: 14px;
    font-size: 1rem;
    color: white;
}

.footer-col p,
.footer-col a {
    color: #a3a3a3;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 6px;
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid #333;
    color: #a3a3a3;
    font-size: 0.8rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
    z-index: 1000;
    font-weight: 600;
    font-size: 0.85rem;
    animation: slideIn 0.3s ease;
    box-shadow: var(--shadow-lg);
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text .subtitle { margin-left: auto; margin-right: auto; }
    .hero-features { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-visual { margin-top: 20px; }
    .eq-card { width: 90px; height: 90px; font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        z-index: 99;
        border-top: 2px solid var(--border);
    }
    .hamburger { display: block; }
    .nav-actions .btn-outline { display: none; }
    .nav-actions .btn-primary { padding: 6px 12px; font-size: 0.75rem; }
    .hero-text h1 { font-size: 2rem; }
    .hero-features { gap: 8px; }
    .hero-feature { font-size: 0.75rem; padding: 6px 12px; }
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .equipment-grid,
    .service-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .header-top { font-size: 0.7rem; }
    .section-header h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .nav-actions .btn-primary { display: none; }
    .logo .logo-text { font-size: 1.15rem; }
    .logo .logo-img { height: 32px; }
    .hero { min-height: 450px; }
    .top-slider-section { height: 280px; }
    .top-slide-content { padding: 15px; width: 92%; }
    .top-slide-title { font-size: 1.25rem; }
    .top-slide-desc { font-size: 0.8rem; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* ===== TOP IMAGE SLIDER (9 IMAGES) ===== */
.top-slider-section {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: #0b0f19;
    border-bottom: 5px solid var(--primary);
    box-shadow: inset 0 -20px 40px rgba(0,0,0,0.5);
}

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

.top-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.top-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.top-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) contrast(1.05) saturate(1.1);
    transition: transform 7s ease-in-out;
    display: block;
}

.top-slide.active img {
    transform: scale(1.08) translate(5px, 2px);
}

.top-slide-content {
    position: absolute;
    bottom: 50px;
    left: 8%;
    width: 84%;
    max-width: 600px;
    text-align: left;
    color: white;
    z-index: 3;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.top-slide.active .top-slide-content {
    transform: translateY(0);
    opacity: 1;
}

.top-slide-tag {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8a3d 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s, opacity 0.5s ease 0.2s;
}

.top-slide.active .top-slide-tag {
    transform: scale(1);
    opacity: 1;
}

.top-slide-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: #fff;
}

.top-slide-desc {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
    color: #cbd5e1;
}

/* Slider Controls */
.top-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    font-size: 1.1rem;
}

.top-slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.45);
    transform: translateY(-50%) scale(1.06);
}

.top-arrow-left { left: 30px; }
.top-arrow-right { right: 30px; }

/* Indicators */
.top-slider-indicators {
    position: absolute;
    bottom: 30px;
    right: 8%;
    display: flex;
    gap: 8px;
    z-index: 5;
    background: rgba(15, 23, 42, 0.6);
    padding: 8px 15px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.top-indicator {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-indicator.active {
    background: var(--primary);
    width: 24px;
}

@media (max-width: 768px) {
    .top-slider-section {
        height: 380px;
    }
    .top-slide-content {
        left: 5%;
        width: 90%;
        bottom: 20px;
        padding: 20px;
    }
    .top-slide-title {
        font-size: 1.4rem;
        margin-bottom: 6px;
    }
    .top-slide-desc {
        font-size: 0.85rem;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .top-slide-tag {
        padding: 4px 10px;
        font-size: 0.6rem;
        margin-bottom: 8px;
    }
    .top-slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    .top-arrow-left { left: 10px; }
    .top-arrow-right { right: 10px; }
    .top-slider-indicators {
        bottom: 20px;
        right: 5%;
        padding: 6px 12px;
    }
}

/* ===== EQUIPMENT GALLERY GRID (7 IMAGES) ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    cursor: pointer;
    background: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08) rotate(0.5deg);
    filter: brightness(0.5);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: white;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.9) 100%);
}

.gallery-overlay h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: white;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
    color: var(--primary);
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.05s;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .gallery-item {
        height: 250px;
    }
    .gallery-overlay h3 {
        font-size: 1.2rem;
    }
}
