/* =============================================
   SOUTHLAND DRONE SERVICES LTD — styles.css
   =============================================
   To customise colours, edit the :root variables below.
   --blue     : brand blue (dots, accents, CTA buttons)
   --black    : main background
   --dark     : section backgrounds (slightly lighter than black)
   ============================================= */

:root {
    --black:       #000000;
    --dark:        #0d0d0d;
    --dark-card:   #141414;
    --dark-border: rgba(255, 255, 255, 0.08);
    --blue:        #29abe2;
    --blue-light:  #58cbf5;
    --blue-dark:   #1a90c8;
    --white:       #ffffff;
    --off-white:   #c8c8c8;
    --grey:        #555555;
    --font:        'Montserrat', sans-serif;
    --transition:  0.3s ease;
    --max-width:   1200px;
    --nav-height:  80px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =============================================
   UTILITY
   ============================================= */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 110px 0;
}

.section-tag {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--blue);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1.15;
    margin-bottom: 28px;
    text-transform: uppercase;
}

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

.section-header .section-title {
    margin-bottom: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 17px 44px;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    outline: none;
}

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

.btn-primary:hover {
    background: var(--blue-light);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* =============================================
   SCROLL ANIMATIONS
   Elements with .fade-in animate in when they
   enter the viewport (handled in script.js)
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children inside a grid */
.services-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.services-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.services-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }
.benefits-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.benefits-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }


/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.35s ease, padding 0.35s ease, border-bottom 0.35s ease;
    border-bottom: 1px solid transparent;
}

#navbar.scrolled {
    background: rgba(0, 0, 0, 0.96);
    padding: 14px 0;
    border-bottom-color: var(--dark-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 48px;
    width: auto;
}

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

.nav-link {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--off-white);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--blue);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-link:not(.nav-cta):hover {
    color: var(--white);
}

.nav-link:not(.nav-cta):hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--blue);
    color: var(--white) !important;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--blue-light) !important;
}

/* Hamburger (mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}


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

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    animation: heroZoom 22s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes heroZoom {
    from { transform: scale(1.0); }
    to   { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 42%, rgba(0,0,0,0.55) 0%, transparent 100%),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.20) 0%,
            rgba(0, 0, 0, 0.25) 50%,
            rgba(0, 0, 0, 0.60) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 860px;
    margin-top: -80px;
    animation: heroFadeUp 1.2s ease forwards;
}

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

/* Full logo in hero */
.hero-logo {
    margin-bottom: 28px;
}

.hero-logo svg {
    width: min(1020px, 96vw);
    height: auto;
    display: block;
    margin: 0 auto;
    filter:
        drop-shadow(0 0 40px rgba(0,0,0,0.9))
        drop-shadow(0 0 80px rgba(0,0,0,0.7))
        drop-shadow(0 2px 6px rgba(0,0,0,1));
}

.hero-tagline {
    font-size: clamp(11px, 1.6vw, 14px);
    font-weight: 500;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.88);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-name {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 36px;
}

.hero-tag {
    font-size: 11px;
    font-weight: 600;
    display: none;
    letter-spacing: 7px;
    color: var(--blue-light);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(38px, 7vw, 80px);
    font-weight: 300;
    letter-spacing: 4px;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: var(--white);
}

.hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    max-width: 580px;
    margin: 0 auto 44px;
    letter-spacing: 0.5px;
    line-height: 1.7;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 4px;
}

.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50%       { opacity: 1;   transform: scaleY(1); }
}


/* =============================================
   ABOUT
   ============================================= */
.about {
    background: var(--dark);
}

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

/* Decorative blue border frame around image */
.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    right: 14px;
    bottom: 14px;
    border: 1px solid var(--blue);
    z-index: 0;
    opacity: 0.5;
}

.about-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.about-content p {
    color: var(--off-white);
    margin-bottom: 18px;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.75;
}

/* Stats bar */
.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--dark-border);
}

.stat h3 {
    font-size: 28px;
    font-weight: 300;
    color: var(--blue);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 6px;
}

.stat p {
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--off-white);
    margin: 0;
}


/* =============================================
   SERVICES
   ============================================= */
.services {
    background: var(--black);
}

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

.service-card {
    background: var(--dark-card);
    padding: 48px 28px;
    transition: background var(--transition);
    position: relative;
    overflow: hidden;
}

/* Animated blue underline on hover */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--blue-dark), var(--blue-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    background: #191919;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: var(--white);
}

.service-card p {
    font-size: 14px;
    font-weight: 300;
    color: var(--off-white);
    line-height: 1.75;
}


/* =============================================
   BENEFITS
   ============================================= */
.benefits {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

/* Subtle background photo texture */
.benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('media/images/IMG_0788.jpeg') center/cover no-repeat;
    opacity: 0.06;
}

.benefits .container {
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.benefit-card {
    background: rgba(20, 20, 20, 0.8);
    text-align: center;
    padding: 56px 36px;
    border: 1px solid var(--dark-border);
    transition: border-color 0.4s ease, transform 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(41, 171, 226, 0.4);
    transform: translateY(-4px);
}

.benefit-number {
    font-size: 72px;
    font-weight: 300;
    color: var(--blue);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.35;
}

.benefit-card h3 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 18px;
    color: var(--white);
}

.benefit-card p {
    font-size: 14px;
    font-weight: 300;
    color: var(--off-white);
    line-height: 1.75;
}


/* =============================================
   GALLERY
   ============================================= */
.gallery {
    background: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-top: 0;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    background: var(--dark-card);
}

/* First image spans 2 columns for variety */
.gallery-feature {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.gallery-feature img {
    height: 460px;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

/* Blue tint on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(41, 171, 226, 0);
    transition: background 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    background: rgba(41, 171, 226, 0.08);
}


/* =============================================
   VIDEOS — YouTube Shorts (9:16 vertical)
   ============================================= */
.videos {
    background: var(--dark);
}

/* 3-column grid of tall vertical cards */
.shorts-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 56px;
}

.short-item {
    border: 1px solid var(--dark-border);
    transition: border-color var(--transition);
    background: #0a0a0a;
}

.short-item:hover {
    border-color: var(--blue-dark);
}

/* 9:16 aspect ratio wrapper */
.short-embed {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%;
    overflow: hidden;
    background: #0a0a0a;
    cursor: pointer;
}

.short-embed img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.short-embed:hover img {
    transform: scale(1.03);
}

.short-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* YouTube-style play button */
.yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 64px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.9;
    z-index: 2;
}

.yt-play svg {
    width: 100%;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}

.short-embed:hover .yt-play {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

@media (max-width: 1100px) {
    .shorts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 700px) {
    .shorts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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


/* Facebook button */
.btn-facebook {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 16px 24px;
    background: #1877f2;
    color: #fff;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background var(--transition), transform var(--transition);
    width: 100%;
    justify-content: center;
}

.btn-facebook:hover {
    background: #1565d8;
    transform: translateY(-1px);
}

.btn-facebook svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    flex-shrink: 0;
}


/* =============================================
   CONTACT / QUOTE
   ============================================= */
.contact {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

.contact-info p {
    font-size: 15px;
    font-weight: 300;
    color: var(--off-white);
    margin-bottom: 40px;
    line-height: 1.75;
}

/* Contact detail rows */
.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--off-white);
}

.contact-detail svg {
    width: 18px;
    height: 18px;
    stroke: var(--blue);
    flex-shrink: 0;
}

.contact-detail a {
    color: var(--blue);
    transition: color var(--transition);
}

.contact-detail a:hover {
    color: var(--blue-light);
}

/* Form */
.contact-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--off-white);
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 14px 16px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: border-color var(--transition);
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--grey);
}

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

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2329abe2' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.form-submit {
    margin-top: 4px;
}

.form-hint {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-left: 8px;
    text-transform: none;
}

.check-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.check-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px 20px;
    border: 1px solid var(--dark-border);
    background: var(--dark);
    transition: border-color var(--transition), background var(--transition);
    flex: 1;
    min-width: 120px;
}

.check-option:hover {
    border-color: var(--blue-dark);
}

.check-option input[type="checkbox"] {
    display: none;
}

.check-option span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--off-white);
    transition: color var(--transition);
}

.check-option:has(input:checked) {
    border-color: var(--blue);
    background: rgba(41, 171, 226, 0.1);
}

.check-option:has(input:checked) span {
    color: var(--blue-light);
}


/* =============================================
   FOOTER
   ============================================= */
footer {
    background: var(--black);
    border-top: 1px solid var(--dark-border);
    padding: 52px 0 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 40px;
}

.footer-logo img {
    height: 38px;
    width: auto;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--off-white);
    transition: color var(--transition);
}

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

.footer-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--blue);
    text-transform: uppercase;
    transition: color var(--transition);
}

.footer-social a:hover {
    color: var(--blue-light);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-copy {
    font-size: 11px;
    color: var(--grey);
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--dark-border);
    letter-spacing: 0.5px;
}


/* =============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image img {
        height: 420px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-feature {
        grid-column: span 2;
    }
}


/* =============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 72px 0;
    }

    /* Mobile nav */
    .nav-menu {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        z-index: 999;
        display: none;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-link {
        font-size: 16px;
        letter-spacing: 3px;
    }

    .nav-cta {
        padding: 16px 40px;
        font-size: 14px;
    }

    /* Hero */
    .hero-title {
        font-size: clamp(32px, 9vw, 52px);
        letter-spacing: 2px;
    }

    .hero-sub {
        font-size: 14px;
    }

    /* About */
    .about-image img {
        height: 320px;
    }

    .about-stats {
        gap: 28px;
        flex-wrap: wrap;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .gallery-feature {
        grid-column: span 1;
    }

    .gallery-feature img,
    .gallery-item img {
        height: 280px;
    }

    /* Contact */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-links {
        gap: 20px;
    }
}


/* =============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================= */
@media (max-width: 480px) {
    .nav-logo img {
        height: 38px;
    }

    .hero-title {
        letter-spacing: 1px;
    }

    .btn {
        padding: 15px 32px;
        font-size: 11px;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .gallery-item img,
    .gallery-feature img {
        height: 240px;
    }
}
