/* * ========================================
DAVE WARD - COMPLETE HYBRID STYLES
======================================== */

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

body {
 font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 line-height: 1.6;
 color: #333;
}

/* Color Variables */
:root {
 --primary-blue: #0E7FC1;
 --light-blue: #1B9FD9;
 --dark-blue: #055A8A;
 --white: #ffffff;
 --light-gray: #f5f7fa;
 --text-dark: #1a1a1a;
 --text-light: #666;
}

.top-bar-text {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
   }

/* Top Bar with Social Links */
.top-bar {
 background: var(--white);
 padding: 0.5rem 0;
 border-bottom: 1px solid #e0e0e0;
}

.top-bar-content {
 max-width: 1400px;
 margin: 0 auto;
 padding: 0 2rem;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.top-bar-link {
 color: var(--primary-blue);
 text-decoration: none;
 font-weight: 600;
 font-size: 0.9rem;
 display: flex;
 align-items: center;
 gap: 0.5rem;
 transition: color 0.3s ease;
}

.top-bar-link:hover {
 color: var(--dark-blue);
}

.top-bar-icon {
 font-size: 1.1rem;
}

.top-bar-social {
 display: flex;
 gap: 1rem;
 align-items: center;
}

.top-bar-social a {
 color: var(--primary-blue);
 transition: all 0.3s ease;
 display: flex;
 align-items: center;
 justify-content: center;
 width: 32px;
 height: 32px;
 border-radius: 50%;
 background: rgba(14, 127, 193, 0.1);
}

.top-bar-social a:hover {
 color: var(--white);
 background: var(--primary-blue);
 transform: translateY(-2px);
}

/* Header & Navigation */
header {
 background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
 padding: 0.8rem 0;
 position: sticky;
 top: 0;
 z-index: 1000;
 box-shadow: 0 4px 15px rgba(14, 127, 193, 0.2);
}

nav {
 display: flex;
 justify-content: space-between;
 align-items: center;
 max-width: 1400px;
 margin: 0 auto;
 padding: 0 2rem;
 position: relative;
}

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

.logo-img {
 height: 60px;
 width: auto;
 object-fit: contain;
}

.logo-icon {
 font-size: 2.2rem;
}

.logo-text {
 display: flex;
 flex-direction: column;
 line-height: 1.2;
}

.logo-text .brand {
 font-size: 1.4rem;
 font-weight: 800;
 letter-spacing: 1px;
}

.logo-text .tagline {
 font-size: 0.7rem;
 font-weight: 300;
 letter-spacing: 2px;
 opacity: 0.9;
}

.nav-links {
 display: flex;
 list-style: none;
 gap: 2.5rem;
}

.nav-links a {
 color: var(--white);
 text-decoration: none;
 font-weight: 500;
 transition: all 0.3s ease;
 font-size: 0.95rem;
 position: relative;
}

.nav-links a::after {
 content: '';
 position: absolute;
 width: 0;
 height: 2px;
 bottom: -5px;
 left: 0;
 background: var(--white);
 transition: width 0.3s ease;
}

.nav-links a:hover::after {
 width: 100%;
}

.nav-cta {
 background: var(--white);
 color: var(--primary-blue);
 padding: 0.8rem 1.8rem;
 border-radius: 50px;
 text-decoration: none;
 font-weight: 700;
 transition: all 0.3s ease;
 border: none;
 cursor: pointer;
 font-size: 0.9rem;
 display: flex;
 align-items: center;
 gap: 0.5rem;
}

.nav-cta:hover {
 transform: translateY(-2px);
 box-shadow: 0 8px 20px rgba(14, 127, 193, 0.3);
}

.hamburger-menu {
 display: none;
 background: none;
 border: none;
 color: var(--white);
 font-size: 1.5rem;
 cursor: pointer;
 padding: 0;
 width: 40px;
 height: 40px;
 align-items: center;
 justify-content: center;
}

.hamburger-menu span {
 display: block;
 width: 25px;
 height: 2px;
 background: var(--white);
 margin: 5px 0;
 transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
 display: none;
 position: absolute;
 top: 100%;
 left: 0;
 right: 0;
 background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
 flex-direction: column;
 gap: 0;
 padding: 1rem;
 box-shadow: 0 8px 20px rgba(14, 127, 193, 0.2);
}

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

.mobile-menu a {
 color: var(--white);
 padding: 1rem;
 text-decoration: none;
 font-weight: 500;
 border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 transition: all 0.3s ease;
}

.mobile-menu a:hover {
 background: rgba(255, 255, 255, 0.1);
}

.mobile-menu a:last-child {
 border-bottom: none;
}

/* ========================================
   HERO SECTION STYLES
   Blue Gradient Background
   ======================================== */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(14, 127, 193, 0.85) 0%, rgba(27, 159, 217, 0.85) 50%, rgba(5, 90, 138, 0.85) 100%),
                url('content/images/Hero_bk.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 120px 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

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

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
 background: var(--white);
 color: var(--primary-blue);
 padding: 1.1rem 3rem;
 border-radius: 50px;
 text-decoration: none;
 font-weight: 700;
 transition: all 0.3s ease;
 border: 2px solid var(--white);
 font-size: 1rem;
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 cursor: pointer;
}

.btn-primary:hover {
 transform: translateY(-3px);
 box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
 background: transparent;
 color: var(--white);
 padding: 1.1rem 3rem;
 border-radius: 50px;
 text-decoration: none;
 font-weight: 700;
 border: 2px solid var(--white);
 transition: all 0.3s ease;
 font-size: 1rem;
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 cursor: pointer;
}

.btn-secondary:hover {
 background: rgba(255, 255, 255, 0.1);
 transform: translateY(-3px);
}

/* Services Section */
.services {
 padding: 100px 2rem;
 background: var(--light-gray);
}

.services-wrapper {
 max-width: 1200px;
 margin: 0 auto;
}

.services .section-title {
 text-align: left;
 margin-bottom: 1rem;
}

.services .section-subtitle {
 text-align: left !important;
 margin-bottom: 3.5rem;
 font-size: 1rem;
 color: var(--text-light);
 margin-left: 0 !important;
 margin-right: auto !important;
 max-width: none !important;
}

.services-footer {
 text-align: left;
 margin-top: 3rem;
}

.section-title {
 text-align: center;
 font-size: 2.8rem;
 margin-bottom: 1rem;
 color: var(--text-dark);
 font-weight: 900;
}

.section-subtitle {
 text-align: center;
 font-size: 1.1rem;
 color: var(--text-light);
 margin-bottom: 3.5rem;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
}

.services-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 2.5rem;
 width: 100%;
}

.service-card {
 background: var(--white);
 padding: 0;
 border-radius: 15px;
 box-shadow: 0 5px 20px rgba(14, 127, 193, 0.08);
 transition: all 0.35s ease;
 border-left: 5px solid var(--primary-blue);
 position: relative;
 overflow: visible;
 display: flex;
 flex-direction: column;
}

.service-card > *:not(.service-image) {
 padding-left: 2.8rem;
 padding-right: 2.8rem;
}

.service-card > .service-icon {
 padding-top: 2.8rem;
 margin-bottom: 1.2rem;
}

.service-card > h3:first-child {
 padding-top: 2.8rem;
 padding-bottom: 0;
}

.service-card > p:last-of-type,
.service-card > ul {
 padding-bottom: 1.5rem;
}

.service-card > a:last-child {
 padding-bottom: 2.8rem;
}

.service-card::before {
 content: '';
 position: absolute;
 top: -11px;
 right: -11px;
 width: 79px;
 height: 79px;
 background-image: url('content/images/ServiceCorner.png');
 background-size: cover;
 background-repeat: no-repeat;
 background-position: top right;
 opacity: 1;
 z-index: 10;
 pointer-events: none;
}

.service-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 15px 40px rgba(14, 127, 193, 0.15);
}

.service-icon {
 font-size: 3rem;
 margin-bottom: 1.2rem;
 display: block;
 position: relative;
 z-index: 2;
 padding-top: 2.8rem;
}

.service-image {
 width: 100%;
 height: 200px;
 object-fit: cover;
 border-radius: 10px 10px 0 0;
 margin-bottom: 1.5rem;
 display: block;
 position: relative;
 z-index: 2;
 transition: transform 0.3s ease;
}

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

.service-card:not(:has(.service-image)) {
 padding: 2.8rem;
}

.service-card:not(:has(.service-image)) > * {
 padding-left: 0 !important;
 padding-right: 0 !important;
}

.service-card:not(:has(.service-image)) > a {
 margin-bottom: -2.8rem;
}

.service-card h3 {
 font-size: 1.6rem;
 margin-bottom: 1rem;
 color: var(--text-dark);
 font-weight: 700;
 position: relative;
 z-index: 2;
 text-align: left;
 padding-left: 2.8rem;
 padding-right: 2.8rem;
}

.service-card p {
 color: var(--text-light);
 line-height: 1.8;
 font-size: 0.95rem;
 position: relative;
 z-index: 2;
 text-align: left;
 padding-left: 2.8rem;
 padding-right: 2.8rem;
}

.service-card ul {
 position: relative;
 z-index: 2;
 text-align: left;
 margin: 1rem 0 1rem 2.8rem;
 padding-left: 1.5rem;
 padding-right: 2.8rem;
 list-style-position: outside;
}

.service-card li {
 position: relative;
 z-index: 2;
 text-align: left;
}

.service-card a {
 position: relative;
 z-index: 2;
 display: inline-block;
 margin-top: 0.5rem;
 transition: color 0.3s ease;
 padding-left: 2.8rem;
 padding-right: 2.8rem;
 padding-bottom: 2.8rem;
 text-align: left;
}

.service-card a:hover {
 color: var(--dark-blue);
}

/* About Section */
.about {
 padding: 100px 2rem;
 background: white;
}

.about-content {
 max-width: 1200px;
 margin: 0 auto;
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 3rem;
 align-items: center;
}

.about-text h2 {
 font-size: 2.2rem;
 margin-bottom: 1.5rem;
 color: var(--text-dark);
 font-weight: 800;
}

.about-text p {
 color: var(--text-light);
 margin-bottom: 1rem;
 line-height: 1.9;
 font-size: 1.05rem;
}

.about-highlight {
 background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 50%, var(--dark-blue) 100%);
 padding: 2rem;
 border-radius: 15px;
 margin-top: 2rem;
 color: var(--white);
}

.about-highlight h3 {
 font-size: 1.5rem;
 margin-bottom: 0.5rem;
 font-weight: 700;
}

.about-highlight p {
 color: var(--white);
 font-weight: 500;
 opacity: 0.95;
}

.about-image {
 background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 50%, var(--dark-blue) 100%);
 border-radius: 15px;
 height: 400px;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 5rem;
}

/* Stats Section */
.stats {
 padding: 80px 2rem;
 background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
 color: var(--white);
}

.stats-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 gap: 3rem;
 max-width: 1200px;
 margin: 0 auto;
 text-align: center;
}

.stat-card h2 {
 font-size: 3.5rem;
 font-weight: 900;
 margin-bottom: 0.5rem;
}

.stat-card p {
 font-size: 1.1rem;
 font-weight: 500;
 opacity: 0.95;
}

/* Our DJs Section */
.our-djs {
 padding: 100px 2rem;
 background: var(--white);
}

.our-djs-wrapper {
 max-width: 1200px;
 margin: 0 auto;
}

.our-djs .section-title {
 text-align: left;
}

.our-djs .section-subtitle {
 text-align: left !important;
 margin-left: 0 !important;
 margin-right: 0 !important;
 max-width: 100% !important;
}

.dj-description {
 text-align: left;
 margin: 0 0 4rem 0;
 color: var(--text-light);
 font-size: 1.05rem;
 line-height: 1.8;
}

.dj-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 2rem;
 width: 100%;
}

.dj-card {
 text-align: center;
 padding: 0;
 background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
 border-radius: 15px;
 color: var(--white);
 transition: all 0.3s ease;
 display: flex;
 flex-direction: column;
 align-items: center;
 width: 100%;
 overflow: hidden;
}

.dj-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 15px 40px rgba(14, 127, 193, 0.2);
}

.dj-icon {
 font-size: 3.5rem;
 margin-bottom: 1rem;
 display: block;
 line-height: 1;
 height: 3.5rem;
}

.dj-image {
 width: 100%;
 aspect-ratio: 1 / 1;
 margin: 0;
 display: block;
 border-radius: 15px 15px 0 0;
 overflow: hidden;
 flex-shrink: 0;
 background: #f0f0f0;
}

.dj-image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center top;
 display: block;
}

.dj-card h3 {
 font-size: 1.05rem;
 font-weight: 700;
 margin: 0;
 padding: 0.8rem 0.5rem;
}

.dj-card p {
 font-size: 0.95rem;
 margin: 0;
 padding: 0.8rem 1rem;
 font-weight: 600;
}

/* Reviews Section - 3x3 Grid Carousel */
.reviews-section {
 background: #000;
 padding: 80px 2rem;
}

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

.reviews-container h2 {
 color: #fff;
 font-size: 2.8rem;
 margin-bottom: 50px;
 text-align: left;
 font-weight: 900;
}

.reviews-carousel {
 position: relative;
 overflow: hidden;
 margin-top: 40px;
 min-height: 380px;
 width: 100%;
}

.reviews-wrapper {
 display: flex;
 transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
 height: auto;
 width: 100%;
}

.reviews-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 35px;
 width: 100%;
 flex-shrink: 0;
 min-width: 100%;
 padding: 0 15px;
}

.review-card {
 background: rgba(30, 30, 30, 0.9);
 padding: 32px;
 border-radius: 15px;
 border: 1px solid rgba(255, 255, 255, 0.08);
 transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 backdrop-filter: blur(10px);
 display: flex;
 flex-direction: column;
 min-height: 300px;
 justify-content: space-between;
}

.review-card:hover {
 transform: translateY(-12px);
 box-shadow: 0 25px 60px rgba(255, 255, 0, 0.12);
 border-color: rgba(255, 255, 0, 0.25);
 background: rgba(45, 45, 45, 0.95);
}

.review-card p {
 color: #d0d0d0;
 font-size: 15px;
 line-height: 1.7;
 margin: 0;
}

.stars {
 color: var(--primary-blue);
 font-size: 18px;
 margin-bottom: 20px;
 letter-spacing: 3px;
 line-height: 1;
}

.review-text {
 position: relative;
 font-style: italic;
 margin-bottom: 0;
 flex-grow: 1;
 display: flex;
 flex-direction: column;
 justify-content: center;
}

.review-short,
.review-full {
 display: inline;
 color: #d0d0d0;
}

.read-more-review-btn {
 background: none;
 border: none;
 color: var(--primary-blue);
 cursor: pointer;
 font-size: 13px;
 padding: 0;
 text-decoration: underline;
 display: inline;
 margin-left: 5px;
 font-family: inherit;
 transition: color 0.3s ease;
 font-weight: 500;
}

.read-more-review-btn:hover {
 color: #ffffff;
}

.review-card.expanded .review-short {
 display: none;
}

.review-card.expanded .review-full {
 display: inline !important;
}

.review-author {
 color: var(--primary-blue);
 font-size: 13px;
 font-style: italic;
 font-weight: 600;
 margin-top: 20px;
 text-align: right;
 display: block;
}

.carousel-nav {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 25px;
 margin-top: 40px;
}

.carousel-btn {
 background: rgba(255, 255, 255, 0.12);
 border: 1.5px solid rgba(255, 255, 255, 0.2);
 color: #fff;
 padding: 12px 18px;
 border-radius: 50%;
 cursor: pointer;
 transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 width: 50px;
 height: 50px;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 20px;
 font-weight: bold;
}

.carousel-btn:hover:not(:disabled) {
 background: rgba(255, 255, 255, 0.25);
 border-color: rgba(255, 255, 255, 0.4);
 transform: scale(1.05);
}

.carousel-btn:disabled {
 opacity: 0.3;
 cursor: not-allowed;
}

.carousel-indicators {
 display: flex;
 gap: 12px;
 justify-content: center;
}

.indicator {
 width: 11px;
 height: 11px;
 border-radius: 50%;
 background: rgba(255, 255, 255, 0.25);
 cursor: pointer;
 transition: all 0.3s ease;
 border: 1px solid rgba(255, 255, 255, 0.1);
}

.indicator:hover {
 background: rgba(255, 255, 255, 0.35);
}

.indicator.active {
 background: var(--primary-blue);
 box-shadow: 0 0 15px rgba(14, 127, 193, 0.5);
}

.read-more-btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 background: var(--white);
 color: var(--primary-blue);
 padding: 1.1rem 3rem;
 border-radius: 50px;
 text-decoration: none;
 font-weight: 700;
 transition: all 0.3s ease;
 border: 2px solid var(--primary-blue);
 font-size: 1rem;
 gap: 0.5rem;
 cursor: pointer;
 margin-top: 2rem;
}

.read-more-btn:hover {
 transform: translateY(-3px);
 box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
 background: var(--primary-blue);
 color: var(--white);
}

/* Contact Section */
.contact-section {
 padding: 100px 2rem;
 background: #000;
}

.contact-wrapper {
 max-width: 1200px;
 margin: 0 auto;
}

.contact-section .section-title {
 text-align: left;
 margin-bottom: 3rem;
}

.contact-section h2 {
 color: #ffffff;
 text-align: left;
 font-size: 2.8rem;
 font-weight: 900;
}

.contact-content {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 3rem;
 width: 100%;
}

.contact-info {
 display: flex;
 flex-direction: column;
 justify-content: center;
}

.contact-info h3 {
 font-size: 1.4rem;
 margin-bottom: 1.5rem;
 color: #ffffff;
 font-weight: 700;
}

.contact-info p {
 color: #ccc;
 margin-bottom: 1.5rem;
 line-height: 1.8;
}

.contact-details {
 display: flex;
 flex-direction: column;
 gap: 1.5rem;
}

.contact-detail {
 display: flex;
 gap: 1rem;
}

.contact-detail-icon {
 font-size: 1.5rem;
 color: #0873a7;
 min-width: 30px;
}

.contact-detail-info {
 flex: 1;
}

.contact-detail-info strong {
 display: block;
 color: #ffffff;
 margin-bottom: 0.25rem;
}

.contact-detail-info a {
 color: #ccc;
 text-decoration: none;
 transition: color 0.3s ease;
}

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

.simple-contact-form-wrapper {
 background: rgba(255, 255, 255, 0.05);
 padding: 2.5rem;
 border-radius: 15px;
 backdrop-filter: blur(10px);
}

.simple-contact-form {
 display: grid;
 gap: 1.5rem;
}

.simple-form-group {
 display: flex;
}

.simple-form-group.full-width {
 grid-column: 1 / -1;
}

.simple-contact-form input,
.simple-contact-form textarea {
 width: 100%;
 padding: 0.9rem 1rem;
 border: 1px solid #555;
 border-radius: 8px;
 font-size: 0.95rem;
 font-family: inherit;
 transition: all 0.3s ease;
 background: rgba(255, 255, 255, 0.1);
 color: #ffffff;
}

.simple-contact-form input::placeholder,
.simple-contact-form textarea::placeholder {
 color: #ccc;
}

.simple-contact-form input:focus,
.simple-contact-form textarea:focus {
 outline: none;
 border-color: var(--primary-blue);
 background: rgba(255, 255, 255, 0.15);
}

.simple-submit-btn {
 background: var(--white);
 color: var(--primary-blue);
 padding: 1.1rem 3rem;
 border: 2px solid var(--white);
 border-radius: 50px;
 font-weight: 700;
 font-size: 1rem;
 cursor: pointer;
 transition: all 0.3s ease;
 font-family: inherit;
 display: inline-flex;
 align-items: center;
 justify-content: center;
}

.simple-submit-btn:hover {
 transform: translateY(-3px);
 box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
 background: var(--primary-blue);
 color: var(--white);
}

/* Quote Section */
.quote-section {
 padding: 100px 2rem;
 background: #e8ecf1;
}

.quote-wrapper {
 max-width: 1200px;
 margin: 0 auto;
}

.quote-section h2 {
 color: var(--text-dark);
 text-align: left;
 font-size: 2.8rem;
 margin-bottom: 1rem;
 font-weight: 900;
}

.quote-section .section-subtitle {
 text-align: left !important;
 margin-left: 0 !important;
 margin-right: 0 !important;
 max-width: 100% !important;
}

.quote-subtitle {
 text-align: left;
 font-size: 1.1rem;
 color: var(--text-light);
 margin-bottom: 3rem;
 max-width: 100%;
}

.quote-container {
 background: white;
 border-radius: 15px;
 padding: 2rem;
 box-shadow: 0 5px 20px rgba(14, 127, 193, 0.08);
 overflow: hidden;
}

.quote-container iframe {
 border-radius: 10px;
}

/* Lightbox Modal */
.lightbox-modal {
 display: none;
 position: fixed;
 z-index: 999;
 left: 0;
 top: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(0, 0, 0, 0.8);
 animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
 display: flex;
 align-items: center;
 justify-content: center;
}

.lightbox-content {
 position: relative;
 max-width: 90%;
 max-height: 90%;
 animation: zoomIn 0.3s ease;
}

.lightbox-content img {
 width: 100%;
 height: auto;
 border-radius: 10px;
 max-height: 85vh;
 object-fit: contain;
}

.lightbox-close {
 position: absolute;
 top: 20px;
 right: 40px;
 color: white;
 font-size: 40px;
 font-weight: bold;
 cursor: pointer;
 z-index: 1000;
 transition: color 0.3s ease;
}

.lightbox-close:hover {
 color: var(--primary-blue);
}

@keyframes fadeIn {
 from {
  opacity: 0;
 }
 to {
  opacity: 1;
 }
}

@keyframes zoomIn {
 from {
  transform: scale(0.8);
  opacity: 0;
 }
 to {
  transform: scale(1);
  opacity: 1;
 }
}

.service-image {
 cursor: pointer;
}

/* Quote Section Mobile */
@media (max-width: 768px) {

    .top-bar {
        padding: 0.4rem 0;
    }
   
    .top-bar-content {
        padding: 0 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
   
    .top-bar-link {
        font-size: 0.8rem;
    }
   
    .top-bar-social {
        gap: 0.8rem;
    }
   
    .top-bar-social a {
        width: 28px;
        height: 28px;
    }
   
    .top-bar-social svg {
        width: 14px;
        height: 14px;
    }

 .quote-section {
     padding: 60px 1.5rem;
     .quote-container iframe {
         height: 900px !important;
     }
 }

 .quote-wrapper {
     width: 100%;
     max-width: 100%;
 }

 .quote-section h2 {
     font-size: 2rem;
     margin-bottom: 0.8rem;
 }

 .quote-subtitle {
     margin-bottom: 2rem;
     font-size: 1rem;
 }

 .quote-container {
     padding: 1.5rem;
 }

 .quote-container iframe {
     height: 700px !important;
 }
}

.faq-section {
 padding: 100px 2rem;
 background: var(--light-gray);
}

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

.faq-section h2 {
 color: var(--text-dark);
 font-size: 2.8rem;
 margin-bottom: 50px;
 text-align: center;
 font-weight: 900;
}

.faq-list {
 display: flex;
 flex-direction: column;
 gap: 20px;
}

.faq-item {
 background: #fff;
 border: 1px solid #e0e0e0;
 border-radius: 12px;
 overflow: hidden;
 transition: all 0.3s ease;
 box-shadow: 0 2px 10px rgba(14, 127, 193, 0.08);
}

.faq-item:hover {
 border-color: var(--primary-blue);
 box-shadow: 0 5px 20px rgba(14, 127, 193, 0.15);
}

.faq-question {
 background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
 padding: 24px;
 cursor: pointer;
 display: flex;
 justify-content: space-between;
 align-items: center;
 transition: all 0.3s ease;
 border: none;
 width: 100%;
 text-align: left;
 color: #fff;
 font-size: 1.1rem;
 font-weight: 600;
 font-family: inherit;
}

.faq-question:hover {
 background: linear-gradient(135deg, #055A8A 0%, var(--primary-blue) 100%);
}

.faq-icon {
 color: #fff;
 font-size: 24px;
 font-weight: bold;
 transition: transform 0.3s ease;
 min-width: 30px;
 text-align: right;
}

.faq-item.active .faq-icon {
 transform: rotate(180deg);
}

.faq-answer {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.4s ease, padding 0.4s ease;
 background: #f9f9f9;
}

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

.faq-answer p {
 color: var(--text-light);
 font-size: 1rem;
 line-height: 1.8;
 margin: 0;
}

/* Panel Image Background Classes */
.panel-with-image {
 position: relative;
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
 overflow: hidden;
}

.panel-with-image::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: rgba(14, 127, 193, 0.7);
 z-index: 1;
}

.panel-overlay {
 position: relative;
 z-index: 2;
}

footer {
 background: #0a0a0a;
 color: #aaa;
 padding: 4rem 2rem 2rem;
 border-top: 1px solid #333;
}

.footer-content {
 max-width: 1200px;
 margin: 0 auto;
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 3rem;
 margin-bottom: 2rem;
}

.footer-section h4 {
 color: #0873a7;
 margin-bottom: 1.2rem;
 font-size: 1rem;
 font-weight: 700;
}

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

.footer-section ul li {
 margin-bottom: 0.8rem;
}

.footer-section a {
 color: #aaa;
 text-decoration: none;
 transition: color 0.3s ease;
}

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

.footer-bottom {
 border-top: 1px solid #333;
 padding-top: 2rem;
 text-align: center;
 max-width: 1200px;
 margin: 0 auto;
}

/* Animations */
@keyframes slideIn {
 from { transform: translateX(400px); opacity: 0; }
 to { transform: translateX(0); opacity: 1; }
}

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

@keyframes fadeIn {
 from { opacity: 0; }
 to { opacity: 1; }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
 .dj-grid {
     grid-template-columns: repeat(3, 1fr);
 }
}

/* Mobile Responsive */
@media (max-width: 768px) {
 header {
     padding: 0.8rem 1rem;
 }

 nav {
     padding: 0 0;
 }

 .logo-img {
     height: 45px;
 }

 .nav-links {
     display: none;
 }

 .nav-cta {
     padding: 0.6rem 1.2rem;
     font-size: 0.8rem;
 }

 .hamburger-menu {
     display: flex;
 }

 header nav {
     position: relative;
 }

 /* Hero Section Mobile */
 .hero {
     padding: 80px 1.5rem;
 }

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

 /* Services Section Mobile */
 .services {
     padding: 60px 1.5rem;
 }

 .services-wrapper {
     width: 100%;
     max-width: 100%;
 }

 .services-grid {
     grid-template-columns: 1fr;
     gap: 1.5rem;
     width: 100%;
 }

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

 .section-subtitle {
     margin-bottom: 2rem;
     font-size: 1rem;
 }

 .service-card {
     padding: 0;
     width: 100%;
     box-sizing: border-box;
 }

 .service-card > *:not(.service-image) {
     padding-left: 1.5rem;
     padding-right: 1.5rem;
 }

 .service-card > .service-icon {
     padding-top: 1.5rem;
 }

 .service-card > a {
     padding-bottom: 1.5rem;
 }

 .service-card:not(:has(.service-image)) {
     padding: 1.5rem;
 }

 /* About Section Mobile */
 .about {
     padding: 60px 1.5rem;
 }

 .about-content {
     grid-template-columns: 1fr;
     gap: 2rem;
     max-width: 100%;
     width: 100%;
 }

 .about-image {
     height: 300px;
     font-size: 3rem;
     order: -1;
     width: 100%;
 }

 .about-highlight {
     padding: 1.5rem;
     margin-top: 1.5rem;
     width: 100%;
     box-sizing: border-box;
 }

 .about-highlight h3 {
     font-size: 1.2rem;
 }

 .about-text {
     width: 100%;
 }

 .about-text h2 {
     font-size: 1.8rem;
     margin-bottom: 1rem;
 }

 .about-text p {
     font-size: 0.95rem;
     margin-bottom: 0.8rem;
 }

 /* Stats Section Mobile */
 .stats {
     padding: 60px 1.5rem;
 }

 .stats-grid {
     gap: 2rem;
     max-width: 100%;
     width: 100%;
 }

 /* Our DJs Section Mobile */
 .our-djs {
     padding: 60px 1.5rem;
 }

 .our-djs-wrapper {
     width: 100%;
     max-width: 100%;
 }

 .dj-description {
     font-size: 1rem;
     margin-bottom: 2.5rem;
     width: 100%;
 }

 .dj-grid {
     grid-template-columns: repeat(2, 1fr);
     gap: 1.5rem;
     width: 100%;
 }

 .dj-card {
     padding: 0;
     width: 100%;
     box-sizing: border-box;
 }

 .dj-icon {
     font-size: 2.5rem;
     height: 2.5rem;
     margin-bottom: 0.8rem;
 }

 .dj-image {
     aspect-ratio: 1 / 1;
     margin: 0;
 }

 .dj-card h3 {
     font-size: 1rem;
 }

 .dj-card p {
     font-size: 0.9rem;
     padding: 0.6rem 0.5rem;
 }

 /* Reviews Section Mobile */
 .reviews-section {
     padding: 60px 1.5rem;
 }

 .reviews-container {
     width: 100%;
     max-width: 100%;
 }

 .reviews-container h2 {
     font-size: 2rem;
     margin-bottom: 30px;
 }

 .reviews-carousel {
     min-height: 800px;
     overflow: hidden;
 }

 .reviews-wrapper {
     display: flex;
     transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
     width: 100%;
     height: auto;
 }

 .reviews-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 1.5rem;
     width: 100%;
     flex-shrink: 0;
     min-width: 100%;
     padding: 0;
 }

 .review-card {
     padding: 1.5rem;
     min-height: auto;
     width: 100%;
     box-sizing: border-box;
 }

 .carousel-nav {
     gap: 15px;
     margin-top: 30px;
     display: flex;
 }

 .carousel-btn {
     width: 44px;
     height: 44px;
     font-size: 18px;
 }

 .read-more-btn {
     padding: 0.9rem 2rem;
     font-size: 0.9rem;
     margin-top: 1.5rem;
 }

 /* Contact Section Mobile */
 .contact-section {
     padding: 60px 1.5rem;
 }

 .contact-wrapper {
     width: 100%;
     max-width: 100%;
 }

 .contact-section h2 {
     font-size: 2rem;
     margin-bottom: 2rem;
 }

 .contact-content {
     grid-template-columns: 1fr;
     gap: 2rem;
     width: 100%;
 }

 .contact-info {
     width: 100%;
 }

 .contact-info h3 {
     font-size: 1.2rem;
     margin-bottom: 1rem;
 }

 .simple-contact-form-wrapper {
     padding: 1.5rem;
     width: 100%;
     box-sizing: border-box;
 }

 .simple-contact-form input,
 .simple-contact-form textarea {
     padding: 0.8rem 0.8rem;
     font-size: 0.9rem;
     width: 100%;
 }

 /* FAQ Section Mobile */
 .faq-section {
     padding: 60px 1.5rem;
 }

 .faq-container {
     width: 100%;
     max-width: 100%;
 }

 .faq-section h2 {
     font-size: 2rem;
     margin-bottom: 30px;
 }

 .faq-list {
     width: 100%;
 }

 .faq-item {
     width: 100%;
     box-sizing: border-box;
 }

 .faq-question {
     padding: 1.2rem;
     font-size: 1rem;
     width: 100%;
 }

 .faq-item.active .faq-answer {
     padding: 1.2rem;
 }

 .faq-answer p {
     font-size: 0.95rem;
 }

 /* Footer Mobile */
 footer {
     padding: 3rem 1.5rem 1.5rem;
 }

 .footer-content {
     gap: 2rem;
     margin-bottom: 1.5rem;
     max-width: 100%;
     width: 100%;
 }

 .footer-section {
     width: 100%;
 }

 .footer-section h4 {
     font-size: 0.9rem;
     margin-bottom: 1rem;
 }

 .footer-section ul li {
     margin-bottom: 0.6rem;
 }

 .footer-section a {
     font-size: 0.9rem;
 }

 .footer-bottom {
     font-size: 0.85rem;
     padding-top: 1.5rem;
     max-width: 100%;
     width: 100%;
 }
}