/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: #1a1a1a;
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.95) 100%),
        url('images/bg-texture-placeholder.png');
    background-attachment: fixed;
    background-size: auto, 200px 200px;
    background-position: 0 0, 0 0;
    background-repeat: repeat, repeat;
    color: #e0e0e0;
    line-height: 1.6;
}

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

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

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    background-color: #0f0f0f;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ff6600;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #e0e0e0;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6600;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ff6600;
    display: block;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    height: 700px;
    /* Increased height for content */
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0a0a0a;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    /* Darken image for better text contrast */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 35px;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btns {
    display: flex;
    gap: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
    background-color: #1a1a1a;
    background-image:
        linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%),
        url('images/bg-texture-placeholder.png');
    background-attachment: fixed;
    background-size: auto, 200px 200px;
    padding: 60px 0;
}

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

.service-card {
    background-color: #262626;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
}

.service-image {
    width: 100%;
    height: 310px;
    overflow: hidden;
    background-color: #2a2a2a;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffffff;
    padding: 25px 20px 15px;
    line-height: 1.4;
}

.service-card p {
    font-size: 13px;
    color: #b0b0b0;
    padding: 0 20px 20px;
    line-height: 1.6;
}

.service-card .btn {
    margin: 0 20px 20px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    padding: 12px 25px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #ff6600;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #e55a00;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.btn-secondary {
    background-color: #333333;
    color: #ffffff;
    border: 1px solid #ff6600;
}

.btn-secondary:hover {
    background-color: #ff6600;
    color: #ffffff;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    background-color: #0f0f0f;
    background-image:
        linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.9) 100%),
        url('images/bg-texture-placeholder.png');
    background-attachment: fixed;
    background-size: auto, 200px 200px;
    padding: 60px 0;
}

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

.about-text h2 {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 13px;
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 20px;
}

.about-image {
    width: 100%;
    height: 750px;
    overflow: hidden;
    background-color: #2a2a2a;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================================
   EVENTS SECTION
   ======================================== */

.events {
    background-color: #1a1a1a;
    background-image:
        linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%),
        url('images/bg-texture-placeholder.png');
    background-attachment: fixed;
    background-size: auto, 200px 200px;
    padding: 60px 0;
}

.events h2,
.news h2,
.faq h2,
.contact h2 {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
}

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

.event-card {
    background-color: #262626;
    padding: 30px;
    border-left: 3px solid #ff6600;
    transition: all 0.3s ease;
}

.event-card:hover {
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
}

.event-card h3 {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.event-card p {
    font-size: 13px;
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-link {
    color: #ff6600;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
}

.event-link:hover {
    color: #ffffff;
}

/* ========================================
   NEWS SECTION
   ======================================== */

.news {
    background-color: #0f0f0f;
    background-image:
        linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.9) 100%),
        url('images/bg-texture-placeholder.png');
    background-attachment: fixed;
    background-size: auto, 200px 200px;
    padding: 60px 0;
}

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

.news-item {
    display: flex;
    background-color: #262626;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-item:hover {
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
    transform: translateY(-5px);
}

.news-image {
    width: 35%;
    min-height: 333px;
    overflow: hidden;
    background-color: #2a2a2a;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-content {
    width: 65%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-item h3 {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-item p {
    font-size: 12px;
    color: #b0b0b0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-link {
    color: #ff6600;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    align-self: flex-start;
}

.news-link:hover {
    color: #ffffff;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    background-color: #1a1a1a;
    background-image:
        linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%),
        url('images/bg-texture-placeholder.png');
    background-attachment: fixed;
    background-size: auto, 200px 200px;
    padding: 60px 0;
}

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

.faq-item {
    background-color: #262626;
    padding: 30px;
    border-left: 3px solid #ff6600;
}

.faq-item h3 {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-item p {
    font-size: 12px;
    color: #b0b0b0;
    line-height: 1.6;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    background-color: #0f0f0f;
    padding: 60px 0;
}

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

.contact-info h3,
.contact-form h3 {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 13px;
    color: #b0b0b0;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-list {
    list-style: none;
    margin-bottom: 25px;
}

.contact-list li {
    font-size: 12px;
    color: #b0b0b0;
    margin-bottom: 12px;
}

.contact-list strong {
    color: #ffffff;
}

/* Contact Form */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background-color: #262626;
    color: #e0e0e0;
    border: 1px solid #333333;
    border-radius: 0;
    font-family: inherit;
    font-size: 12px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #808080;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background-color: #2a2a2a;
    border-color: #ff6600;
}

.form-group select option {
    background-color: #262626;
    color: #e0e0e0;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* ========================================
   FEATURE INFORMATIONAL SECTIONS
   ======================================== */

.feature-section {
    padding: 100px 0;
    overflow: hidden;
}

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

.feature-grid.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.feature-grid.reverse .feature-header-wrapper {
    order: 2;
}

.feature-header-wrapper h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.feature-header-wrapper .accent-bar {
    width: 80px;
    height: 4px;
    background-color: #ff6600;
    margin-bottom: 30px;
}

.feature-text-content p {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-image-container {
    position: relative;
    border: 1px solid rgba(255, 102, 0, 0.3);
    padding: 15px;
}

.feature-image-container img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
    /* box-shadow: 20px 20px 0px rgba(255, 102, 0, 0.1); */
}

.feature-highlight {
    background-color: #262626;
    padding: 25px;
    border-left: 4px solid #ff6600;
    margin-top: 30px;
}

.feature-highlight h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Banner Section */
.info-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/bg-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.info-banner h3 {
    font-size: 24px;
    color: #ff6600;
    margin-bottom: 15px;
}

.info-banner p {
    font-size: 18px;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

@media (max-width: 968px) {

    .feature-grid,
    .feature-grid.reverse {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .feature-grid.reverse .feature-header-wrapper {
        order: 0;
    }

    .feature-image-container img {
        height: 350px;
    }
}

/* ========================================
   LOCATIONS / SERVICE AREAS
   ======================================== */

.locations {
    background-color: #0f0f0f;
    padding: 80px 0;
    border-top: 1px solid #333;
}

.locations h2 {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-chip {
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    border: 1px solid #333;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: bold;
    color: #e0e0e0;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.location-chip::before {
    content: "📍";
    margin-right: 10px;
    font-size: 16px;
    filter: sepia(1) saturate(5) hue-rotate(-15deg);
    /* Make it look more orange-ish */
}

.location-chip:hover {
    background-color: #ff6600;
    border-color: #ff6600;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

@media (max-width: 768px) {
    .location-chip {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* ========================================
   REVIEWS SECTION
   ======================================== */

.reviews {
    background-color: #1a1a1a;
    padding: 60px 0;
    position: relative;
}

.reviews h2 {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
}

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

.review-card {
    background-color: #262626;
    padding: 30px;
    border-top: 3px solid #ff6600;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: #ff6600;
    font-size: 18px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

.author-name {
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.author-meta {
    color: #808080;
    font-size: 11px;
}

/* ========================================
   FOOTER — REDESIGNED
   ======================================== */

.footer {
    background-color: #080808;
    border-top: 2px solid #ff6600;
}

/* ---- Top section (brand + columns) ---- */

.footer-top-bar {
    padding: 60px 0 40px;
}

.footer-top-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-brand p {
    font-size: 12px;
    color: #888;
    line-height: 1.7;
}

/* Instagram button */
.footer-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: fit-content;
}

.footer-instagram:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.insta-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ---- 4-column links grid ---- */

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

.footer-col h5 {
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1.5px;
    color: #ff6600;
    margin-bottom: 16px;
    text-transform: uppercase;
    padding-bottom: 8px;
    border-bottom: 1px solid #1e1e1e;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    font-size: 12px;
    color: #888;
    transition: color 0.25s ease;
    line-height: 1.5;
}

.footer-col ul li a:hover {
    color: #ff6600;
}

/* Cities column — tighter line spacing */
.footer-cities li a {
    font-size: 11.5px;
}

/* Contact list with inline SVG icons */
.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #888;
    font-size: 12px;
}

.footer-contact-list li svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: #ff6600;
}

.footer-contact-list li span {
    color: #aaa;
}

/* ---- Bottom bar ---- */

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding: 18px 0;
}

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

.footer-bottom-inner p {
    font-size: 11px;
    color: #555;
}

.footer-legal {
    font-style: italic;
    color: #444 !important;
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
    .footer-top-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-brand {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-logo-img {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-links-group {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet Screens (768px - 1024px) */
@media (max-width: 1024px) {
    .nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 11px;
    }

    .hero {
        height: 600px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

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

    .about-grid {
        gap: 30px;
    }

    .about-image {
        height: 300px;
    }

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

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-item {
        flex-direction: column;
    }

    .news-image {
        width: 100%;
        height: 200px;
    }

    .news-content {
        width: 100%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

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

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

/* Mobile Screens (480px - 768px) */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }

    /* Show Hamburger Menu */
    .hamburger {
        display: flex;
    }

    /* Hide Desktop Navigation */
    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: #0f0f0f;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: 2px solid #ff6600;
    }

    .nav.active {
        max-height: 800px;
        /* Increased to fit more links */
    }

    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid #262626;
        display: block;
    }

    .hero {
        height: 550px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .about-image {
        height: 250px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .services,
    .about,
    .events,
    .news,
    .faq,
    .contact {
        padding: 40px 0;
    }

    .events h2,
    .news h2,
    .faq h2,
    .contact h2,
    .about-text h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
}

/* Small Mobile Screens (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 18px;
    }

    .hero {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .service-card h3 {
        font-size: 13px;
        padding: 20px 15px 12px;
    }

    .service-card p {
        font-size: 12px;
        padding: 0 15px 15px;
    }

    .about-text h2 {
        font-size: 20px;
    }

    .about-text p {
        font-size: 12px;
    }

    .event-card {
        padding: 20px;
    }

    .event-card h3 {
        font-size: 13px;
    }

    .event-card p {
        font-size: 12px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 11px;
    }
}