/* ST Mathews Events - Main Stylesheet */
/* Black & Gold Theme */

/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary-black: #000000;
    --primary-gold: #FFD700;
    --dark-gold: #B8860B;
    --light-gold: #FFF4CC;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #666666;
    --dark-gray: #333333;
    
    --font-primary: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Cormorant Garamond', 'Playfair Display', 'Times New Roman', serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

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

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    padding-top: 5px;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: var(--shadow);
}

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

.logo h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo-image {
    height: 100px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
}

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

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

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

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

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

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

/* Hide close menu button on desktop */
.nav-menu .close-menu-item {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* ==================== HERO SLIDER ==================== */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.page-header {
    height: 50vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url('../images/slider2.jpg');
    background-size: cover;
    background-position: center;
}

.contact-header {
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url('../images/slider3.jpg');
    background-size: cover;
    background-position: center;
}

.gallery-header {
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url('../images/slider4.jpg');
    background-size: cover;
    background-position: center;
}

.services-header {
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url('../images/slider1.jpg');
    background-size: cover;
    background-position: center;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../images/slider1.jpg'); /* Fallback image */
}

/* Dynamic background images are set via JavaScript */

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    animation: slideUp 1s ease-out;
}

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

.slide-content h2 {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-gold);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.8);
    letter-spacing: 2px;
    line-height: 1.1;
}

.slide-content p {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.9), 0 0 10px rgba(0,0,0,0.8);
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--white);
    padding: 0;
    margin: 0;
}

.slider-dot.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    width: 40px;
    border-radius: 10px;
}

.slider-dot:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 14px;
}

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

.btn-primary:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

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

/* ==================== SECTIONS ==================== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--primary-black);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

.section-title p {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ==================== WELCOME SECTION ==================== */
.welcome-section {
    background: var(--light-gray);
    padding: 80px 0;
}

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

.welcome-text {
    padding-right: 20px;
}

.welcome-content {
    text-align: left;
}

.welcome-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-black);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.welcome-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.quote {
    font-style: italic;
    font-size: 16px;
    color: var(--dark-gray);
    margin: 20px 0;
    padding: 20px;
    border-left: 4px solid var(--primary-gold);
    background: var(--light-gray);
    border-radius: 5px;
}

.welcome-images {
    width: 100%;
}

.welcome-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.welcome-image-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
}

.welcome-image-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.welcome-image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.welcome-image-item:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .welcome-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .welcome-text {
        padding-right: 0;
    }
    
    .section-title {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .welcome-image-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .welcome-image-item img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .welcome-image-grid {
        grid-template-columns: 1fr;
    }
    
    .welcome-image-item img {
        height: 200px;
    }
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('../images/gb5.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

/* ==================== PAGE-SPECIFIC HEADERS ==================== */
.about-header {
    background: url('../images/3.jpg') center center / contain no-repeat;
    background-color: #000; /* letterbox to keep original image uncropped */
}
.about-header .slide-overlay { background: transparent; }

.services-section .section-title h2 {
    color: var(--white);
}

.services-section .section-title p {
    color: var(--light-gray);
}

/* ==================== SERVICES GRID ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vision-mission-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-top: 3px solid var(--primary-gold);
}

.services-section .service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 50px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--primary-black);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* ==================== DESTINATION WEDDING ==================== */
.destination-wedding {
    background: var(--white);
    padding: 80px 0;
}

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

.destination-images {
    width: 100%;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.image-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
    padding: 15px;
}

.image-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.image-slider {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.image-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.image-slider img.active {
    opacity: 1;
}

.image-item h4 {
    font-size: 16px;
    color: var(--dark-gray);
    text-align: center;
    font-weight: 600;
    margin: 0;
}

.destination-text {
    padding: 40px;
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(26,26,26,0.95) 50%, rgba(0,0,0,0.95) 100%);
    border-radius: 15px;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.destination-text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.destination-text p {
    font-size: 16px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 30px;
}

.highlight-text {
    color: var(--primary-gold);
    font-weight: 600;
}

.destination-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-purple {
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-purple:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1ea952;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .destination-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .image-item img {
        height: 200px;
    }
    
    .destination-text {
        padding: 30px 20px;
    }
    
    .destination-text h2 {
        font-size: 24px;
    }
    
    .destination-buttons {
        flex-direction: column;
    }
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    color: var(--white);
}

.why-choose .section-title h2 {
    color: var(--white);
}

.why-choose .section-title p {
    color: var(--light-gray);
}

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

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

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-item i {
    font-size: 40px;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--white);
}

.feature-item p {
    font-size: 15px;
    color: var(--light-gray);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    border-left: 4px solid var(--primary-gold);
}

.testimonial-rating {
    color: var(--primary-gold);
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-black);
    font-size: 16px;
}

.testimonial-author span {
    display: block;
    color: var(--medium-gray);
    font-size: 14px;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 50%, var(--primary-black) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/slider1.jpg') center/cover;
    opacity: 0.3;
    z-index: -1;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* ==================== GALLERY ==================== */
.gallery-filter {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--white);
    color: var(--primary-black);
    padding: 10px 25px;
    margin: 5px;
    border: 2px solid var(--primary-gold);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1/1;
    background: var(--light-gray);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    display: none;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 20px;
    text-align: center;
    padding: 20px;
}

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

.contact-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-black);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
    transition: var(--transition);
}

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

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 30px;
    color: var(--primary-gold);
    min-width: 40px;
}

.contact-item-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-black);
}

.contact-item-content p,
.contact-item-content a {
    color: var(--medium-gray);
    line-height: 1.6;
}

.contact-item-content a:hover {
    color: var(--primary-gold);
}

.map-container {
    margin-top: 50px;
    border-radius: 10px;
    overflow: visible;
    background: var(--light-gray);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 10px;
    display: block;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo a {
    display: inline-block;
    text-decoration: none;
}

.footer-logo-image {
    max-height: 150px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    transition: var(--transition);
}

.footer-logo-image:hover {
    transform: scale(1.05);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-text {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--light-gray);
}

.footer-contact i {
    color: var(--primary-gold);
    min-width: 20px;
}

.footer-contact a {
    color: var(--light-gray);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 20px;
    text-align: center;
    color: var(--light-gray);
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--primary-black);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-gold);
    transform: translateY(-5px);
}

/* ==================== SERVICES OVERVIEW ==================== */
.services-overview {
    background: var(--light-gray);
    padding: 80px 0;
}

.services-grid-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-image-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
}

.service-image-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.service-image-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .services-grid-overview {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-image-item img {
        height: 150px;
    }
}

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

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 50px 0;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .close-menu-item {
        display: list-item; /* Show on mobile */
        position: absolute;
        top: 20px;
        right: 20px;
        margin: 0;
        padding: 0;
        list-style: none;
        z-index: 10;
    }
    
    .nav-menu .close-menu-btn {
        background: none;
        border: none;
        color: var(--white);
        font-size: 28px;
        cursor: pointer;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: var(--transition);
        padding: 0;
    }
    
    .nav-menu .close-menu-btn:hover {
        background: rgba(255, 215, 0, 0.2);
        color: var(--primary-gold);
    }
    
    .nav-menu .close-menu-btn:focus {
        outline: 2px solid var(--primary-gold);
        outline-offset: 2px;
    }
    
    .slide-content h2 {
        font-size: 36px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .services-grid,
    .features-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 24px;
        letter-spacing: 0.5px;
    }
    
    .logo-image {
        max-height: 80px;
    }
    
    .slide-content h2 {
        font-size: 36px;
        letter-spacing: 1px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 13px;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
    text-align: center;
}

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

.bg-light {
    background: var(--light-gray);
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}


