:root {
    /* Color Palette */
    --bg-dark: #0a0a0c;
    --bg-card: #151518;
    --bg-card-hover: #1e1e22;
    --text-light: #e5e7eb;
    --text-muted: #9ca3af;
    --gold-primary: #d4af37;
    --gold-hover: #e5c458;
    --gold-dim: rgba(212, 175, 55, 0.15);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: #fff;
    margin-bottom: 1rem;
}

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

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

/* Typography Utilities */
.text-gold {
    color: var(--gold-primary);
}

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

.section-subtitle {
    color: var(--gold-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: var(--gold-primary);
    color: var(--bg-dark);
}

/* Header & Nav */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold-primary);
}

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

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.desktop-nav a:not(.btn-primary) {
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 2rem;
    background: var(--bg-card);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav.active {
    display: flex;
    gap: 1.5rem;
}

/* Main Content Adjust */
.main-content {
    margin-top: 80px; /* Offset for fixed header */
    min-height: calc(100vh - 80px - 300px);
}

/* Footer */
.main-footer {
    background-color: #050506;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 0.5rem;
}

.footer-brand .tagline {
    color: var(--gold-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-brand .footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 350px;
}

.footer-links h3, .footer-contact h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

/* --- Index Page Styles --- */

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 80px;
}

.hero-container {
    max-width: 900px;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 300;
}

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

.btn-secondary {
    display: inline-block;
    color: #fff;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: #fff;
}

/* Intro Section */
.intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.intro-features {
    list-style: none;
}

.intro-features li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.intro-features i {
    font-size: 2rem;
    margin-top: 0.2rem;
}

.intro-features h4 {
    margin-bottom: 0.3rem;
}

.intro-features p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.image-box {
    background: var(--bg-card);
    height: 500px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 4px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.value-card i {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
    background: var(--bg-card);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-dark);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card .stars {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-card .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.testimonial-card .quote.expanded {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
}

/* Premium Read More Button */
.read-more-btn {
    background: none;
    border: none;
    color: var(--gold-primary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    padding: 0.3rem 0;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    align-self: center;
}

.read-more-btn:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.read-more-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.read-more-btn.active i {
    transform: rotate(180deg);
}

.client-info strong {
    display: block;
    color: #fff;
}

.client-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(rgba(10, 10, 12, 0.8), rgba(10, 10, 12, 0.9)), var(--bg-card);
}

@media (max-width: 900px) {
    .intro-container, .values-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 3rem;
    }
}

/* --- About Page Styles --- */
.difference-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.diff-card {
    background: var(--bg-dark);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.diff-card.highlight-card {
    border-color: rgba(212, 175, 55, 0.3);
    position: relative;
}

.diff-card.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-primary);
}

.diff-list {
    list-style: none;
    margin-top: 1.5rem;
}

.diff-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.diff-list i {
    color: var(--gold-primary);
    font-weight: bold;
}

.diff-card:not(.highlight-card) .diff-list i {
    color: #ef4444; /* red cross for competitors */
}

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

.value-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.value-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.value-text h3 {
    margin-bottom: 0.5rem;
}

.value-text p {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .difference-grid {
        grid-template-columns: 1fr;
    }
    .value-item {
        flex-direction: column;
        gap: 1rem;
    }
}

/* --- Form Styles --- */
.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-section-title {
    color: var(--gold-primary);
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

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

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-container input {
    accent-color: var(--gold-primary);
    width: 1.2rem;
    height: 1.2rem;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    .form-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* --- PREMIUM OVERHAUL STYLES --- */

/* Testimonial Slider */
.slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem 1rem;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.slide {
    flex-shrink: 0;
    width: 33.333%;
    box-sizing: border-box;
    padding: 0 0.75rem;
    display: flex;
    flex-direction: column;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--gold-primary);
    color: var(--bg-dark);
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--gold-primary);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* Minimalist Brand / Clients Section */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
    margin: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    transition: all 0.4s ease;
    cursor: default;
}

.brand-item svg {
    height: 28px;
    width: auto;
    fill: rgba(255, 255, 255, 0.35);
    transition: all 0.4s ease;
}

.brand-item:hover svg {
    fill: var(--gold-primary);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.brand-secondary-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    max-width: 700px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
}

/* Gold Ornament Dividers */
.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem auto 2.5rem;
    max-width: 280px;
}

.ornament-divider::before,
.ornament-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.ornament-divider i {
    color: var(--gold-primary);
    font-size: 0.7rem;
    opacity: 0.8;
    animation: sparkle-pulse 3s ease-in-out infinite;
}

@keyframes sparkle-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(45deg); }
}

/* Vintage Framed Cards */
.vintage-frame {
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: var(--bg-dark);
    border-radius: 2px;
}

.vintage-frame::before,
.vintage-frame::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: var(--gold-primary);
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.vintage-frame::before {
    top: 6px;
    left: 6px;
    border-top: 1px solid;
    border-left: 1px solid;
}

.vintage-frame::after {
    bottom: 6px;
    right: 6px;
    border-bottom: 1px solid;
    border-right: 1px solid;
}

.vintage-frame:hover::before,
.vintage-frame:hover::after {
    opacity: 0.8;
}

/* Testimonial Avatars */
.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 auto 0.8rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .client-avatar {
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

/* Testimonial card update for vintage frame style */
.testimonial-card.vintage-frame {
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Editorial Media Section */
.editorial-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1000px;
    margin: 3rem auto 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.media-item {
    padding: 4.5rem 3.5rem;
    text-align: left;
    background: rgba(21, 21, 24, 0.3);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.media-item:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.media-item:hover {
    background: rgba(212, 175, 55, 0.02);
}

.media-tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-primary);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.media-title {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.media-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: auto;
}

.media-meta span {
    font-weight: bold;
    color: #fff;
}

/* Action Gallery Strip */
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 4rem 0 2rem;
}

.gallery-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    filter: grayscale(30%) contrast(110%);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 12, 0.8) 0%, rgba(10, 10, 12, 0) 50%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) contrast(100%);
}

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

/* Global Responsiveness Modifications */
@media (max-width: 1024px) {
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 2rem 0;
    }
    
    .brand-item {
        border-right: none;
        padding: 0.5rem 0;
    }
    
    .gallery-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item {
        height: 280px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.4rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .stats-section {
        padding: 3rem 0 !important;
    }
    
    .stats-section .container > div {
        gap: 1.5rem !important;
    }
    
    .stats-section h3 {
        font-size: 2rem !important;
    }
    
    .intro-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .intro-image-wrapper img {
        height: 320px !important;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .slide {
        padding: 0 1rem;
    }
    
    .slider-arrow {
        display: none; /* Hide navigation arrows on mobile, rely on swipe and dots */
    }
    
    .editorial-media {
        grid-template-columns: 1fr;
    }
    
    .media-item {
        padding: 3rem 2rem;
    }
    
    .media-item:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .media-title {
        font-size: 1.8rem;
    }
    
    .service-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-bottom: 4rem !important;
    }
    
    .service-image {
        order: -1 !important; /* Always put image on top on mobile */
    }
    
    .service-image img, .service-image .image-box {
        height: 300px !important;
    }
    
    .packages-section {
        padding: 4rem 0 !important;
    }
    
    .packages-section > .container > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .packages-section > .container > div > div {
        transform: none !important; /* Remove scaling on mobile to avoid layout breaking */
        padding: 2rem !important;
    }
    
    .packages-section > .container > div > div .btn-primary {
        margin-top: 1rem;
    }
    
    .why-it-works-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .difference-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .diff-card {
        padding: 2rem !important;
    }
    
    .cta-section {
        padding: 5rem 0 !important;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem !important;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        padding: 0 1rem;
    }
    
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-strip {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
}

/* Premium Header Animated Video Logo Styles */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 60px;
    gap: 0.8rem;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-video-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-width: 180px;
}

.logo-video {
    height: 120%;
    width: auto;
    object-fit: cover;
}

.logo-image {
    display: none;
    height: 48px;
    width: auto;
}

@media (max-width: 768px) {
    .logo-video-wrapper {
        display: none !important;
    }
    .logo-image {
        display: block !important;
    }
}

/* Top 10 Magicians Directory Styles */
.top-ten-grid {
    margin-top: 2.5rem;
}

.magician-directory {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.magician-dir-item {
    padding: 1.5rem;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.magician-dir-item:last-child {
    border-bottom: none;
}

.magician-dir-item:hover {
    background: rgba(212, 175, 55, 0.02);
}

.magician-dir-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
}

.magician-num {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: bold;
    letter-spacing: 1px;
}

.magician-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #fff;
    margin: 0;
    flex-grow: 1;
    font-weight: 500;
}

.magician-venue {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(212, 175, 55, 0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.magician-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    padding-left: 2.5rem;
    line-height: 1.5;
}

/* Highlighted Item - David Shareef */
.magician-dir-item.highlight-magician {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
    border-radius: 4px;
    position: relative;
}

.magician-dir-item.highlight-magician::before {
    content: '★ RECOMMENDED';
    position: absolute;
    top: -10px;
    left: 2.5rem;
    background: var(--gold-primary);
    color: #000;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 0.1rem 0.6rem;
    border-radius: 20px;
    letter-spacing: 1px;
}

.magician-dir-item.highlight-magician:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.18);
}

.magician-dir-item.highlight-magician .highlight-badge {
    background: var(--gold-primary);
    color: #000;
    font-weight: bold;
    border-color: var(--gold-primary);
    animation: glow-pulse 2s infinite ease-in-out;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 5px rgba(212, 175, 55, 0.5); }
    50% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.9); }
}

/* Press Clipping Columns */
.clipping-image-container {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.clipping-preview-img {
    width: 100%;
    height: auto;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
}

.clipping-image-container:hover .clipping-preview-img {
    transform: scale(1.04);
}

.clipping-image-container:hover .clipping-overlay {
    opacity: 1 !important;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 12, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    overflow: auto;
    background: #000;
}

.lightbox-content::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.lightbox-content::-webkit-scrollbar-track {
    background: #050506;
}

.lightbox-content::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}

/* Responsive details for Top 10 */
@media (max-width: 900px) {
    .top-ten-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    .press-clipping-column {
        position: static !important;
    }
}


