/* ============================================
   SACS LIVE SOUND - PROFESSIONAL STYLING
   ============================================ */

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

:root {
    /* Color Palette */
    --navy: #1a3a52;
    --dark-navy: #0f2235;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --orange: #ff6b35;
    --blue-accent: #2563eb;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --border-light: #e0e0e0;
    --blue-bg: #dde9f8;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

/* ============================================
   CONTAINER & UTILITIES
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--blue-accent);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: var(--blue-bg);
    padding: var(--spacing-md) 0;
    border-bottom: 2px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
}

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--orange);
}

.cta-button {
    background: var(--navy);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--dark-navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 58, 82, 0.3);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy);
}

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

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero-main.JPG') center/cover;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    background: rgba(15, 34, 53, 0.85);
    padding: var(--spacing-2xl);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    max-width: 700px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

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

.hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

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

.about {
    background: var(--white);
    padding: var(--spacing-2xl) 0;
    border-bottom: 1px solid var(--border-light);
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h2 {
    color: var(--navy);
}

.about-content h3 {
    color: var(--blue-accent);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    line-height: 1.8;
}

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

.services {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('hero-main.JPG') center/cover;
    background-attachment: fixed;
    padding: var(--spacing-2xl) 0;
    color: white;
}

.services .section-title {
    color: white;
}

.services .section-title::after {
    background: var(--orange);
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

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

.service-card-content {
    padding: var(--spacing-lg);
}

.service-card-title {
    font-size: 1.4rem;
    color: var(--blue-accent);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--blue-accent);
    display: inline-block;
}

.service-card-description {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.service-images-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.service-images-preview img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-images-preview img:hover {
    transform: scale(1.05);
}

/* ============================================
   FAQs SECTION
   ============================================ */

.faqs {
    background: var(--light-gray);
    padding: var(--spacing-2xl) 0;
    border-bottom: 1px solid var(--border-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    background: var(--navy);
    color: white;
    padding: var(--spacing-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--dark-navy);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: var(--spacing-lg);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.contact {
    background: var(--white);
    padding: var(--spacing-2xl) 0;
}

.contact .section-title {
    color: var(--navy);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.contact-item {
    background: var(--light-gray);
    padding: var(--spacing-lg);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.contact-item h3 {
    color: var(--navy);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-muted);
    margin: var(--spacing-xs) 0;
}

.contact-item a {
    color: var(--blue-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--navy);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--orange);
    transform: scale(1.1);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--blue-bg);
    color: var(--navy);
    text-align: center;
    padding: var(--spacing-lg);
    border-top: 2px solid var(--border-light);
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--blue-bg);
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: var(--spacing-lg);
        display: none;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: var(--spacing-lg) !important;
    }

    .about {
        padding: var(--spacing-lg) 0;
    }

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

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

    .hero-content {
        padding: var(--spacing-lg);
        margin: var(--spacing-lg);
    }

    .hero p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 2.5rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-content {
        padding: var(--spacing-md);
    }

    .nav-menu {
        gap: var(--spacing-xs);
        padding: var(--spacing-md);
    }

    .service-card-image {
        height: 180px;
    }
}

/* Larger Social Media Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    font-size: 2.4rem !important;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.social-link:hover {
    transform: scale(1.08);
}


/* Center Get In Touch Section */
.contact-content,
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/* Contact section: exactly 3 clean columns */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 2rem;
    align-items: stretch;
    justify-content: center;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* Contact section: 3 columns only */
.contact-details,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.contact-item,
.contact-card {
    text-align: center;
}

@media (max-width: 768px) {
    .contact-details,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* SEO location highlight */
.seo-location {
    font-weight: 700;
    color: #d4a017;
}
