/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --lime-green: #8BC34A;
    --lime-hover: #7CB342;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --card-bg: #111111;
    --border-color: #333;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--primary-black);
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
}

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

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(139, 195, 74, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(139, 195, 74, 0.3) 25%,
        rgba(139, 195, 74, 0.5) 50%,
        rgba(139, 195, 74, 0.3) 75%,
        transparent 100%
    );
    opacity: 0.6;
    pointer-events: none;
    z-index: -1;
}

.navbar.scroll-down {
    transform: translateY(-100%);
}

.navbar.scroll-up {
    transform: translateY(0);
}

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

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

.logo img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--lime-green);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: var(--lime-green);
}

.get-quote-btn {
    background: var(--lime-green);
    color: var(--primary-black);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.get-quote-btn:hover {
    background: var(--lime-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 195, 74, 0.3);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card-bg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border-radius: 5px;
    list-style: none;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.dropdown-menu li {
    padding: 0.5rem 1.5rem;
}

.dropdown-menu a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 5px;
    -webkit-tap-highlight-color: transparent;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--lime-green);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--primary-black);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 40px;
    position: relative;
    overflow: visible;
}

.hero .container {
    max-width: 100%;
    padding-right: 0;
    margin-right: 0;
}

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

.hero-gif-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scaleX(-1);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    opacity: 0.15;
    filter: blur(1px) brightness(1.2);
    object-fit: cover;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

.hero-svg-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(auto, 800px) 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    padding-left: 40px;
    padding-right: 0;
}

.hero-text {
    animation: fadeInLeft 1s ease;
}

.hero-tagline {
    color: var(--lime-green);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-style: italic;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-primary:hover {
    background: var(--lime-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 195, 74, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-black);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: -140px 0 -80px 0;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: right center;
    max-height: 100vh;
}

.floating-vinyl {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.social-links-hero {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
}

.social-links-hero a {
    width: 40px;
    height: 40px;
    border: 2px solid var(--lime-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime-green);
    text-decoration: none;
    transition: all 0.3s;
}

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

/* Trust Bar */
.trust-bar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    padding: 3rem 0;
    border-bottom: 2px solid var(--lime-green);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 1rem;
    transition: transform 0.3s;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--lime-green);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.trust-number svg {
    animation: float 3s ease-in-out infinite;
}

.trust-label {
    color: #333;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Expertise Section */
.expertise {
    padding: 80px 0;
    background: #ffffff;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: center;
}

.expertise-item {
    padding: 2rem;
}

.expertise-icon {
    font-size: 3rem;
    color: var(--lime-green);
    margin-bottom: 1rem;
    background: rgba(139, 195, 74, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
    transition: all 0.3s;
    position: relative;
}

.expertise-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(65%) sepia(48%) saturate(457%) hue-rotate(39deg) brightness(95%) contrast(87%);
}

.expertise-item:hover .expertise-icon {
    transform: scale(1.1);
    background: rgba(139, 195, 74, 0.2);
    box-shadow: 0 0 30px rgba(139, 195, 74, 0.4);
}

.expertise-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid var(--lime-green);
    border-radius: 50%;
    opacity: 0;
    animation: pulse 2s infinite;
}

.expertise-item:hover .expertise-icon::before {
    opacity: 1;
}

.expertise-item h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.expertise-item p {
    color: #666;
    line-height: 1.8;
}

/* Why Choose Me Section */
.why-choose {
    padding: 80px 0;
    background: var(--primary-black);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.why-text p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    background: var(--lime-green);
    color: var(--primary-black);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.value-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(139, 195, 74, 0.3);
}

.why-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
}

.why-images img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
    border: 2px solid var(--lime-green);
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-images img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 195, 74, 0.4);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f8f8;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--lime-green);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--lime-green);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
    scroll-margin-top: 100px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: block;
    text-decoration: none;
    color: inherit;
}

a.service-card {
    text-decoration: none;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--lime-green);
    box-shadow: 0 15px 40px rgba(139, 195, 74, 0.4),
                0 0 30px rgba(139, 195, 74, 0.3);
}

.service-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-black);
    font-weight: 600;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 10px 30px rgba(139, 195, 74, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s, filter 0.3s;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #f8f8f8;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.review-card:hover {
    border-color: var(--lime-green);
    transform: translateY(-5px);
}

.stars {
    color: var(--lime-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.reviewer {
    color: var(--primary-black);
    font-weight: 600;
}

.review-event {
    color: var(--lime-green);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--primary-black);
}

.contact-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro {
    font-size: 1.3rem;
    color: var(--text-light);
}

.contact-content-centered {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--lime-green);
    transform: translateY(-5px);
}

.contact-card h3 {
    color: var(--lime-green);
    margin-bottom: 1rem;
}

.contact-link {
    font-size: 1.3rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--lime-green);
}

.contact-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Footer */
.footer {
    background: var(--secondary-black);
    color: var(--text-gray);
    padding: 3rem 0 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--text-gray);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--lime-green);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Music Visualizer Animation */
.music-visualizer {
    display: flex;
    align-items: flex-end;
    height: 30px;
    gap: 3px;
    margin: 0 10px;
}

.bar {
    width: 4px;
    background: var(--lime-green);
    animation: dance 0.6s ease-in-out infinite;
}

.bar:nth-child(1) { animation-delay: 0s; height: 20px; }
.bar:nth-child(2) { animation-delay: 0.1s; height: 25px; }
.bar:nth-child(3) { animation-delay: 0.2s; height: 15px; }
.bar:nth-child(4) { animation-delay: 0.3s; height: 28px; }
.bar:nth-child(5) { animation-delay: 0.4s; height: 22px; }

@keyframes dance {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.5);
    }
}

/* Responsive Design */

/* Tablet/Medium screens (1024px and below) - keep side-by-side but scale proportionally */
@media (max-width: 1024px) {
    .hero {
        min-height: 75vh;
        padding: 90px 0 40px;
    }

    .hero-content {
        gap: 2rem;
        max-width: 100%;
        padding-left: 20px;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.15;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-image {
        margin: -100px 0 -60px 0;
    }

    .hero-image img {
        max-height: 70vh;
    }

}

/* Small tablet (900px and below) - further scale down while keeping side-by-side */
@media (max-width: 900px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .hero-image img {
        max-height: 60vh;
    }
}

/* Mobile (768px and below) - stacking layout with overlap */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex !important;
    }
    
    .logo img {
        height: 40px;
        max-width: 120px;
    }
    
    .nav-wrapper {
        padding: 0.75rem 0;
        gap: 1rem;
    }

    /* Fix header overlap on mobile */
    .hero {
        padding-top: 75px;
    }


    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.5);
        padding: 2rem 0;
        z-index: 998;
        display: flex !important;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0 !important;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
    }
    
    .dropdown:hover .dropdown-menu {
        margin-top: 0;
    }

    .hero {
        min-height: auto;
        padding: 80px 0 60px;
        overflow: visible;
    }

    .hero .container {
        padding: 0 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-left: 0;
        gap: 0;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .hero-tagline {
        font-size: 1rem;
        order: -2;
        margin-bottom: 1.5rem;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-image {
        margin: 0 0 -80px 0;
        max-width: 100%;
        order: -1;
        z-index: 1;
        position: relative;
    }

    .hero-image img {
        max-height: 55vh;
        width: 100%;
        margin: 0 auto;
    }

    .hero-text {
        position: relative;
        z-index: 2;
        padding: 0 20px;
        margin-bottom: 0;
    }

    .hero-text .hero-tagline {
        display: none;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .trust-bar {
        padding: 1.5rem 0;
    }

    .trust-items {
        gap: 1rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item {
        padding: 0.5rem;
    }

    .trust-number {
        font-size: 1.75rem;
        margin-bottom: 0.25rem;
    }

    .trust-number svg {
        width: 40px;
        height: 40px;
        display: none;
    }

    .trust-label {
        font-size: 0.75rem;
    }
}

/* Extra small devices (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .hero-image img {
        max-height: 40vh;
    }

    .trust-bar {
        padding: 1rem 0;
    }

    .trust-number {
        font-size: 1.5rem;
    }

    .trust-label {
        font-size: 0.7rem;
    }

    .logo img {
        height: 35px;
        max-width: 100px;
    }

    .nav-wrapper {
        padding: 0.6rem 0;
    }
    
    .container {
        padding: 0 15px;
    }
}