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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #f9fafb;
}

/* Default hyperlinks: black (nav, footer, buttons use more specific rules) */
a {
    color: #111827;
}
a:visited {
    color: #111827;
}
a:hover {
    color: #000000;
}

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

/* Header Styles */
.header {
    background: rgba(249, 250, 251, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 0;
    text-align: center;
}

.announcement {
    font-size: 14px;
    font-weight: 500;
}

.announcement i {
    margin-right: 8px;
    animation: wave 2s infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-20deg); }
}

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

.nav-brand h1,
.nav-brand .site-logo-text {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.nav-brand .site-logo-text {
    display: inline-block;
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #111827;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
    border-radius: 12px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: #f8f9fa;
    color: #111827;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-login {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-login:hover,
.btn-login.active {
    color: #111827;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: #111827;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #000000;
    text-decoration: underline;
}

/* Process Page Styles */
.process-steps {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* Delivery Options */
.delivery-options {
    padding: 80px 0;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.delivery-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.delivery-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 32px;
}

.delivery-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.delivery-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.delivery-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.delivery-card ul li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.delivery-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Requirements Section */
.requirements-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.requirement-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.requirement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.requirement-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.requirement-card p {
    color: #666;
    line-height: 1.6;
}

/* Login Page Styles */
.login-section {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.login-form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.login-form-container h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.login-form-container > p {
    color: #666;
    margin-bottom: 30px;
}

.login-form {
    margin-bottom: 30px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a1a1a;
}

.login-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: #667eea;
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 16px;
}

.password-toggle:hover {
    color: #667eea;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.forgot-link {
    color: #111827;
    text-decoration: none;
    font-size: 14px;
}

.forgot-link:hover {
    text-decoration: underline;
}

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.divider span {
    background: white;
    padding: 0 20px;
    color: #666;
    font-size: 14px;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-social:hover {
    border-color: #111827;
    color: #111827;
}

.btn-google:hover {
    border-color: #db4437;
    color: #db4437;
}

.btn-facebook:hover {
    border-color: #4267B2;
    color: #4267B2;
}

.register-link {
    text-align: center;
}

.register-link p {
    color: #666;
}

.register-link a {
    color: #111827;
    text-decoration: none;
    font-weight: 500;
}

.register-link a:hover {
    text-decoration: underline;
}

/* Login Benefits */
.login-benefits {
    padding: 40px;
}

.login-benefits h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.benefit-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Hero Section */
.hero {
    background: url('assets/hero-dj-crowd.jpg') center center/cover no-repeat;
    min-height: 480px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.hero + section, .hero + .featured-categories, .hero + .category-section {
    background: #ffffff;
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-top: 32px;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page Styles */
.about-story {
    padding: 80px 0;
}

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

.story-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.member-role {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

/* Featured Categories */
.featured-categories {
    padding: 64px 0;
    background: #ffffff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.04);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    border-color: rgba(79, 70, 229, 0.35);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.category-content {
    padding: 25px;
    text-align: center;
}

.category-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.category-content p {
    color: #666;
    margin-bottom: 20px;
}

/* Section Styles */
.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-description {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-description--guide-links a {
    color: #111827;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(17, 24, 39, 0.35);
    text-underline-offset: 3px;
}

.section-description--guide-links a:hover {
    color: #000;
    text-decoration-color: rgba(0, 0, 0, 0.5);
}

.section-note {
    text-align: center;
    font-size: 16px;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 40px;
}

/* Package Tabs */
.package-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid #667eea;
    background: transparent;
    color: #667eea;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #667eea;
    color: white;
}

/* Package Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.package-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.04);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    border-color: rgba(79, 70, 229, 0.35);
}

.package-image {
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.package-content {
    padding: 25px;
}

.package-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.price {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 15px;
}

.package-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    background: #f0f0f0;
    color: #666;
}

.badge.battery {
    background: #e3f2fd;
    color: #1976d2;
}

.badge.smoke {
    background: #fff3e0;
    color: #f57c00;
}

.badge.no-smoke {
    background: #e8f5e8;
    color: #388e3c;
}

/* Product Categories */
.product-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.category-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.04);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    border-color: rgba(79, 70, 229, 0.35);
}

.product-image {
    height: 180px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Effects section — align with homepage speakers row */
.product-category-effects .product-grid {
    align-items: stretch;
}

.product-category-effects .effects-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-category-effects #smoke-gallery,
.product-category-effects #co2-gallery,
.product-category-effects #sparkler-gallery,
.product-category-effects #vertical-fog-gallery {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 350px;
    box-sizing: border-box;
}

/* Fixed viewport: every main photo renders in the same box (no shrink-wrap from inline-block) */
.product-category-effects .effects-gallery-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    max-width: 100%;
    height: 220px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    flex-shrink: 0;
    overflow: hidden;
}

.product-category-effects .effects-gallery-stage .effects-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    display: block;
}

.product-category-effects [id$="-gallery"] .gallery-thumbnails {
    width: 100%;
    max-width: 250px;
    min-height: 112px;
    height: 112px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 6px;
    margin-top: 10px;
    box-sizing: border-box;
    overflow: hidden;
}

.product-category-effects .effects-product-card .product-content {
    flex: 0 0 auto;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-category-effects .product-content h4 {
    min-height: 2.75em;
    line-height: 1.3;
    margin-top: 0;
}

/* Homepage speakers row — equal gallery height + aligned titles/prices */
#build-speakers .product-grid {
    align-items: stretch;
}

#build-speakers .product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#build-speakers #jbl-home-gallery,
#build-speakers #vonyx-gallery,
#build-speakers #shure-mic-gallery {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 340px;
    box-sizing: border-box;
}

#build-speakers #jbl-home-gallery > div:first-of-type,
#build-speakers #vonyx-gallery > div:first-of-type,
#build-speakers #shure-mic-gallery > div:first-of-type {
    min-height: 248px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#build-speakers #jbl-home-gallery-img,
#build-speakers #vonyx-gallery-img,
#build-speakers #shure-mic-gallery-img {
    max-height: 240px;
    width: auto !important;
    max-width: 250px;
    object-fit: contain;
}

#build-speakers .product-card .product-content {
    flex: 0 0 auto;
    width: 100%;
    box-sizing: border-box;
}

#build-speakers .product-content h4 {
    min-height: 2.75em;
    line-height: 1.3;
    margin-top: 0;
}

/* Lighting product images – show full fixtures without cropping */
.product-category-lighting .product-image {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
}

.product-category-lighting .product-image img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-content {
    padding: 20px;
}

.product-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

/* CTA Section */
.cta-section {
    background: #0f172a;
    color: white;
    padding: 72px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-info {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-card p {
    color: #666;
    margin-bottom: 8px;
}

.contact-card a {
    color: #111827;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.form-container > p {
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    padding: 0 0 20px;
    color: #666;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.location-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.location-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.location-card p {
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.location-card i {
    color: #667eea;
    width: 16px;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-placeholder img {
    width: 100%;
    height: auto;
}

/* Button Styles — primary matches outline “Add to Cart” look site-wide */
.btn-primary {
    background: transparent;
    color: #4f46e5;
    border: 1px solid rgba(79, 70, 229, 0.6);
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #4f46e5;
    color: #f9fafb;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(79, 70, 229, 0.35);
}

.btn-secondary {
    background: transparent;
    color: #4f46e5;
    border: 1px solid rgba(79, 70, 229, 0.6);
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #4f46e5;
    color: #f9fafb;
}

/* Dark hero bands: both CTAs readable on photo / gradient */
.hero .hero-buttons .btn-primary,
.hero .hero-buttons .btn-secondary {
    color: #f9fafb;
    border-color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.12);
}

.hero .hero-buttons .btn-primary:hover,
.hero .hero-buttons .btn-secondary:hover {
    background: #f9fafb;
    color: #111827;
    border-color: #f9fafb;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

/* Wedding package cards (homepage + wedding guide): pin CTA to bottom */
.wedding-package-grid {
    align-items: stretch;
}

.wedding-package-grid .product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wedding-package-grid .product-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

.wedding-package-grid .product-content > a.btn-primary,
.wedding-package-grid .product-content > a.btn-secondary {
    margin-top: auto;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

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

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

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

.footer-section ul li a:hover {
    color: #f3f4f6;
}

.location h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.location p {
    color: #ccc;
    margin-bottom: 5px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #ccc;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 30px;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.cart-header h3 {
    font-size: 24px;
    font-weight: 600;
}

.cart-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

.cart-empty {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .package-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .location-cards {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .login-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .login-benefits {
        order: -1;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .package-content,
    .product-content {
        padding: 15px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .login-form-container {
        padding: 20px;
    }
    
    .login-benefits {
        padding: 20px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .delivery-card {
        padding: 30px 20px;
    }
    
    .requirement-card {
        padding: 25px 20px;
    }
}

/* --- Hire guide landing pages (speaker / mic SEO pages) --- */
body.hire-guide-page {
    background: #f8f9fb;
}

.hire-guide-page .header {
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.hire-guide-page .breadcrumb {
    margin-bottom: 12px;
}

.hire-guide-hero {
    padding: 8px 16px 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(440px, 52vh);
    box-sizing: border-box;
    /* Override global .hero background (different image + path is from stylesheet root) */
    transform: none;
}

/* Speaker hire page: dedicated hero background (do not inherit index hero image) */
.hero.hire-guide-hero--speakers {
    background: #1a1a1e url('assets/speakers-hero.jpg') no-repeat center center / cover;
}

.hero.hire-guide-hero--wedding {
    background: #1a1a1e url('assets/wedding-hero.jpeg') no-repeat center center / cover;
}

.hero.hire-guide-hero--corporate {
    background: #1a1a1e url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?w=1600&auto=format&fit=crop') no-repeat center center / cover;
}

.hero.hire-guide-hero--party {
    background: #1a1a1e url('assets/hero-dj-crowd.jpg') no-repeat center center / cover;
}

.hero.hire-guide-hero--mics {
    background: #1a1a1e url('assets/microphones/s-l1200.jpg') no-repeat center 40% / cover;
}

.hire-guide-hero .hire-guide-hero-inner {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 16px;
    padding: clamp(2rem, 5.5vw, 3rem) clamp(1.35rem, 4vw, 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: min(300px, 42vh);
    box-sizing: border-box;
}

.hire-guide-hero .hero-title {
    font-size: clamp(1.55rem, 4vw, 2.25rem);
    line-height: 1.2;
    margin: 0 0 12px 0;
    max-width: 100%;
}

.hire-guide-hero .hero-subtitle {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    line-height: 1.55;
    margin: 0;
    max-width: 38rem;
    opacity: 1;
}

.hire-guide-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.hire-guide-hero-actions a {
    text-decoration: none;
}

.hire-guide-hero .btn-primary,
.hire-guide-hero .btn-secondary {
    color: #f9fafb;
    border-color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.12);
}

.hire-guide-hero .btn-primary:hover,
.hire-guide-hero .btn-secondary:hover {
    background: #f9fafb;
    color: #111827;
    border-color: #f9fafb;
}

.hire-guide-wrap {
    max-width: 920px;
    margin: 24px auto 0;
    padding: 0 16px 48px;
}

/* Full-width text bands (match site .container = 1200px); product grids stay in .hire-guide-wrap */
.hire-guide-page .hire-guide-wide-section {
    width: 100%;
    background: #fff;
    padding: 36px 0 40px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    box-sizing: border-box;
}

.hire-guide-page .hire-guide-wide-section:first-of-type {
    margin-top: 20px;
    border-bottom: none;
}

.hire-guide-page .hire-guide-wide-section--tail {
    margin-top: 24px;
    padding-top: 40px;
    padding-bottom: 48px;
}

.hire-guide-page .hire-guide-wide-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.75rem 0 12px 0;
}

.hire-guide-page .hire-guide-wide-section h2:first-child {
    margin-top: 0;
}

.hire-guide-page .hire-guide-wide-section p,
.hire-guide-page .hire-guide-wide-section li {
    color: #374151;
    line-height: 1.65;
}

.hire-guide-page .hire-guide-wide-section a {
    color: #111827;
    font-weight: 500;
}

.hire-guide-page .hire-guide-wide-section .hire-guide-seo-prose a:hover,
.hire-guide-page .hire-guide-wide-section .hire-guide-faq a:hover,
.hire-guide-page .hire-guide-wide-section dd a:hover,
.hire-guide-page .hire-guide-wide-section li a:hover {
    color: #000000;
    text-decoration: underline;
}

.hire-guide-page .hire-guide-wide-section .hire-guide-lead--centered {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.hire-guide-page .hire-guide-wide-section .hire-guide-lead--centered > p {
    max-width: min(72ch, 100%);
    margin-left: auto;
    margin-right: auto;
}

.hire-guide-page .hire-guide-wide-section .hire-guide-lead--centered ul {
    display: inline-block;
    margin: 1rem 0 0 0;
    padding-left: 1.35rem;
    text-align: left;
    max-width: min(48rem, 100%);
    box-sizing: border-box;
}

.hire-guide-page .hire-guide-wide-section .hire-guide-lead--centered li + li {
    margin-top: 0.35em;
}

.hire-guide-page .hire-guide-wide-section .hire-guide-block--centered {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hire-guide-page .hire-guide-wide-section .hire-guide-block--centered h2:first-of-type {
    margin-top: 0;
}

.hire-guide-page .hire-guide-wide-section .hire-guide-block--centered > p {
    max-width: min(72ch, 100%);
    margin-left: auto;
    margin-right: auto;
}

.hire-guide-page .hire-guide-wide-section .hire-guide-block--centered .hire-guide-faq {
    margin: 1.25rem auto 0;
    text-align: center;
}

.hire-guide-page .hire-guide-wide-section .hire-guide-block--centered .hire-guide-faq dt {
    text-align: center;
}

.hire-guide-page .hire-guide-wide-section .hire-guide-block--centered .hire-guide-faq dd {
    margin-left: auto;
    margin-right: auto;
    max-width: min(72ch, 100%);
    text-align: center;
}

.hire-guide-page .hire-guide-wide-section .hire-guide-cta {
    margin-top: 32px;
    text-align: center;
}

.hire-guide-page .hire-guide-wide-section .hire-guide-cta .btn-primary {
    text-decoration: none;
    display: inline-block;
}

.hire-guide-page .hire-guide-wide-section .hire-guide-seo-prose {
    max-width: 46rem;
    margin: 0 auto;
    text-align: left;
}

.hire-guide-page .hire-guide-wide-section .hire-guide-seo-prose > h2:first-of-type {
    margin-top: 0;
}

.hire-guide-page .hire-guide-wide-section .hire-guide-seo-prose ul {
    margin: 12px 0 16px 1.25rem;
    padding: 0;
}

.hire-guide-page .hire-guide-wide-section .hire-guide-seo-prose li + li {
    margin-top: 0.35em;
}

.hire-guide-page .hire-guide-wide-section .hire-guide-seo-prose .hire-guide-faq {
    margin: 1rem 0 0 0;
    text-align: left;
}

.hire-guide-page .hire-guide-wide-section .hire-guide-seo-prose .hire-guide-faq dt {
    text-align: left;
}

.hire-guide-page .hire-guide-wide-section .hire-guide-seo-prose .hire-guide-faq dd {
    text-align: left;
    max-width: none;
    margin-left: 0;
}

.hire-guide-page .hire-guide-wrap .hire-guide-card {
    margin-top: 0;
}

.hire-guide-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.04);
    padding: 28px 22px 32px;
    margin-top: 20px;
}

.hire-guide-card > h2:first-of-type,
.hire-guide-card .hire-guide-lead h2:first-child {
    margin-top: 0;
}

.hire-guide-card .hire-guide-lead--centered {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.hire-guide-card .hire-guide-lead--centered > p {
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

.hire-guide-card .hire-guide-lead--centered ul {
    display: inline-block;
    margin: 1rem 0 0 0;
    padding-left: 1.35rem;
    text-align: left;
    max-width: 36rem;
    box-sizing: border-box;
}

.hire-guide-card .hire-guide-lead--centered li + li {
    margin-top: 0.35em;
}

.hire-guide-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.75rem 0 12px 0;
}

.hire-guide-card p,
.hire-guide-card li {
    color: #374151;
    line-height: 1.65;
}

.hire-guide-card a {
    color: #111827;
    font-weight: 500;
}

.hire-guide-card a:hover {
    color: #000000;
    text-decoration: underline;
}

.hire-guide-card .btn-primary,
.hire-guide-card .btn-secondary {
    display: inline-block;
    margin-top: 4px;
}

/* Card body text links are black; pill CTAs keep outline button colours */
.hire-guide-card a.btn-primary,
.hire-guide-card a.btn-secondary {
    color: #4f46e5;
    text-decoration: none;
}

.hire-guide-card a.btn-primary:hover,
.hire-guide-card a.btn-secondary:hover {
    color: #f9fafb;
}

.hire-guide-card button.add-to-cart {
    cursor: pointer;
    font: inherit;
}

.hire-guide-card .hire-guide-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin: 4px 0 10px 0;
    line-height: 1.3;
}

.hire-guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    margin: 24px 0;
}

.hire-guide-grid img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    display: block;
}

.hire-guide-grid .hire-guide-grid__text h2 {
    margin-top: 0;
}

.hire-guide-card .hire-guide-grid__text ul {
    margin: 0 0 12px 1.15rem;
    padding: 0;
    color: #374151;
    line-height: 1.55;
}

.hire-guide-wedding-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: stretch;
}

.hire-guide-wedding-gallery img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    display: block;
}

@media (max-width: 768px) {
    .hire-guide-wedding-gallery {
        grid-template-columns: 1fr;
    }
}

.hire-guide-card .hire-guide-block--centered {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hire-guide-card .hire-guide-block--centered h2 {
    text-align: center;
}

.hire-guide-card .hire-guide-block--centered h2:first-of-type {
    margin-top: 0;
}

.hire-guide-card .hire-guide-block--centered > p {
    margin-left: auto;
    margin-right: auto;
    max-width: 52ch;
}

.hire-guide-card .hire-guide-block--centered .hire-guide-faq {
    margin: 1.25rem auto 0;
    text-align: center;
}

.hire-guide-card .hire-guide-block--centered .hire-guide-faq dt {
    text-align: center;
}

.hire-guide-card .hire-guide-block--centered .hire-guide-faq dd {
    margin-left: auto;
    margin-right: auto;
    max-width: 52ch;
    text-align: center;
}

.hire-guide-faq dt {
    font-weight: 600;
    margin-top: 14px;
    color: #111827;
}

.hire-guide-faq dd {
    margin: 6px 0 0 0;
    color: #4b5563;
}

.hire-guide-cta {
    margin-top: 32px;
    text-align: center;
}

@media (max-width: 768px) {
    .hire-guide-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}