/* JewelYoke - Premium Jewelry Directory - Optimized */

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables */
:root {
    --primary: #3D3D66;
    --accent: #D4AF37;
    --dark: #0A0A14;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

/* Base */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #F5F5F5;
    background: #0A0A14;
    background-image: radial-gradient(ellipse at top, rgba(61, 61, 102, 0.15), transparent 50%);
    background-attachment: fixed;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 20, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.08);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.nav-link:hover::after {
    width: 80%;
}

.city-select-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.city-select-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.city-select {
    background: rgba(10, 10, 20, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.city-select option {
    background: #1A1A2E;
    color: white;
}

.city-select:hover {
    background: rgba(10, 10, 20, 0.9);
    border-color: #D4AF37;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 36px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    position: relative;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #E8C968);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 999;
    animation: fadeIn 0.3s ease;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: none;
}

.mobile-menu-close {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0A0A14 0%, #1A1A2E 50%, #0A0A14 100%);
    padding: calc(6rem + 70px) 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Floating Diamonds Animation */
.hero-diamonds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.diamond {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.03), rgba(232, 201, 104, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.1);
    transform: rotate(45deg);
    opacity: 0.6;
    will-change: transform, opacity;
}

.diamond-1 {
    top: 20%;
    left: 8%;
    width: 100px;
    height: 100px;
    animation: float-diamond 8s ease-in-out infinite;
}

.diamond-2 {
    top: 55%;
    left: 12%;
    width: 70px;
    height: 70px;
    animation: float-diamond 10s ease-in-out infinite 1s;
}

.diamond-3 {
    top: 25%;
    right: 10%;
    width: 90px;
    height: 90px;
    animation: float-diamond 12s ease-in-out infinite 2s;
}

.diamond-4 {
    bottom: 15%;
    right: 15%;
    width: 60px;
    height: 60px;
    animation: float-diamond 9s ease-in-out infinite 1.5s;
}

@keyframes float-diamond {
    0%, 100% {
        transform: rotate(45deg) translateY(0) translateX(0);
        opacity: 0.4;
    }
    50% {
        transform: rotate(225deg) translateY(-30px) translateX(20px);
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    will-change: opacity, transform;
}

.hero-tagline {
    font-size: 0.875rem;
    letter-spacing: 3px;
    color: #D4AF37;
    margin-bottom: 2rem;
    font-weight: 600;
    animation: fadeIn 1s ease-out;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero-logo {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #FFFFFF;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, #D4AF37 0%, #E8C968 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 7rem;
    margin-top: 0.5rem;
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.6));
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    font-weight: 300;
    margin: 0 auto 4rem;
    animation: fadeInUp 1s ease-out 0.4s both;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

/* Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-feature {
    background: rgba(42, 42, 74, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 1rem;
    padding: 2.5rem 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-feature:hover {
    background: rgba(42, 42, 74, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2), 0 0 40px rgba(212, 175, 55, 0.1);
}

.hero-feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: #D4AF37;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.hero-feature:hover .hero-feature-icon {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5), inset 0 0 30px rgba(212, 175, 55, 0.2);
}

.hero-feature-title {
    font-size: 1.125rem;
    color: #FFFFFF;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0A0A14 0%, #12121C 100%);
    position: relative;
}

.section-alt {
    background: linear-gradient(180deg, #12121C 0%, #0A0A14 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* Business Grid */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

/* Business Card */
.business-card {
    background: linear-gradient(135deg, rgba(42, 42, 74, 0.4) 0%, rgba(26, 26, 46, 0.95) 100%);
    border-radius: 1.5rem;
    padding: 0;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 280px;
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 85px rgba(212, 175, 55, 0.35);
    border-color: rgba(212, 175, 55, 0.6);
}

.business-card-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    color: inherit;
    padding: 2rem;
    padding-bottom: 1.5rem;
}

.business-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.business-logo {
    width: 70px;
    height: 70px;
    border-radius: 1rem;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.business-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 1.8rem;
}

.business-meta {
    flex: 1;
    min-width: 0;
}

.business-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #D4AF37;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    word-break: break-word;
}

.business-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.business-location i {
    color: #D4AF37;
    font-size: 0.85rem;
}

.business-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.business-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.business-actions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 1rem 0.75rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-align: center;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.action-btn:hover::before {
    width: 300px;
    height: 300px;
}

.action-btn:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.action-btn i {
    font-size: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.action-btn span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 1;
    line-height: 1.2;
}

.call-btn {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(56, 142, 60, 0.1) 100%);
    color: #FFFFFF;
    position: relative;
}

.call-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3) 0%, rgba(56, 142, 60, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.call-btn:hover {
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.call-btn:hover::after {
    opacity: 1;
}

.call-btn:hover i {
    transform: rotate(20deg) scale(1.15);
}

.whatsapp-btn {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(18, 140, 126, 0.1) 100%);
    color: #FFFFFF;
    position: relative;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.3) 0%, rgba(18, 140, 126, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.whatsapp-btn:hover {
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover::after {
    opacity: 1;
}

.whatsapp-btn:hover i {
    transform: scale(1.15) rotate(-10deg);
    animation: whatsappBounce 0.6s ease;
}

@keyframes whatsappBounce {
    0%, 100% { transform: scale(1.15) rotate(-10deg); }
    50% { transform: scale(1.25) rotate(-15deg); }
}

.catalogue-btn {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 148, 30, 0.1) 100%);
    color: #FFFFFF;
    position: relative;
}

.catalogue-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(184, 148, 30, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.catalogue-btn:hover {
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.catalogue-btn:hover::after {
    opacity: 1;
}

.catalogue-btn:hover i {
    transform: scale(1.15);
    animation: bookFlip 0.6s ease;
}

@keyframes bookFlip {
    0% { transform: scale(1.15) rotateY(0deg); }
    50% { transform: scale(1.2) rotateY(180deg); }
    100% { transform: scale(1.15) rotateY(360deg); }
}

.action-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #E8C968 100%);
    color: #0A0A14;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 1rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.7);
}

.btn-map {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    padding: 1rem;
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.btn-map:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 35px rgba(66, 133, 244, 0.7);
}

.btn-catalogue {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941E 100%);
    color: white;
    padding: 1rem;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-catalogue:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.7);
}

.btn-website {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
    padding: 1rem;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-website:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 35px rgba(102, 126, 234, 0.7);
}

/* Features */
.features {
    background: linear-gradient(135deg, #0A0A14 0%, #2A2A4A 50%, #0A0A14 100%);
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.feature {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: all 0.4s ease;
}

.feature:hover {
    transform: translateY(-8px);
}

.feature-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(61, 61, 102, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.feature:hover .feature-icon {
    border-color: #D4AF37;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
}

.feature-icon i {
    font-size: 2rem;
    color: #D4AF37;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-weight: 300;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0A0A14 0%, #000000 100%);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 800;
    color: #D4AF37;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #D4AF37;
    transform: translateX(8px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Page Content */
.page-header {
    padding: calc(8rem + 80px) 0 6rem;
    background: linear-gradient(135deg, #2A2A4A 0%, #1A1A2E 100%);
    text-align: center;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, white, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 4rem;
}

.content-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 1.5rem;
}

.content-text {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.content-list {
    list-style: none;
    margin: 1.5rem 0;
}

.content-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    background: #D4AF37;
    border-radius: 50%;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
}

.contact-methods {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3D3D66, #5B5B8F);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #D4AF37;
    font-size: 1.75rem;
}

.contact-method h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: rgba(255, 255, 255, 0.7);
}

/* Forms */
.contact-form {
    background: linear-gradient(135deg, rgba(42, 42, 74, 0.3), rgba(26, 26, 46, 0.5));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 1rem;
    padding: 4rem;
    backdrop-filter: blur(20px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 0.75rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-full {
    width: 100%;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-list-item {
    display: flex;
    gap: 1.5rem;
}

.feature-list-item i {
    color: #D4AF37;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.feature-list-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.feature-list-item p {
    color: rgba(255, 255, 255, 0.7);
}

.empty-state {
    text-align: center;
    padding: 8rem 2rem;
}

.empty-state i {
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.3);
    margin-bottom: 2rem;
}

.empty-state h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

.empty-state p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.125rem;
}

.pagination-wrapper {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .business-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-features {
        gap: 1.5rem;
    }

    .contact-form {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .header {
        padding: 1rem 0;
    }

    .header-top-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 90%;
        height: 100vh;
        background: linear-gradient(180deg, rgba(15, 15, 25, 0.98) 0%, rgba(26, 26, 46, 0.98) 100%);
        backdrop-filter: blur(25px);
        padding: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.6);
        border-left: 1px solid rgba(212, 175, 55, 0.3);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .nav.active {
        right: 0;
        animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideInRight {
        from {
            right: -100%;
            opacity: 0.8;
        }
        to {
            right: 0;
            opacity: 1;
        }
    }

    .nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
        pointer-events: none;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 1.5rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        background: rgba(212, 175, 55, 0.03);
        position: sticky;
        top: 0;
        z-index: 10;
        backdrop-filter: blur(10px);
    }

    .mobile-menu-logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .mobile-logo-icon {
        height: 32px;
        width: auto;
        filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    }

    .mobile-menu-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.25rem;
        font-weight: 700;
        color: #D4AF37;
        letter-spacing: 0.5px;
    }

    .mobile-menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 50%;
        color: #D4AF37;
        font-size: 1.25rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-menu-close:hover {
        background: rgba(212, 175, 55, 0.2);
        border-color: #D4AF37;
        transform: rotate(90deg);
    }
    
    nav ul,
    .nav-menu {
        flex-direction: column;
        gap: 0.25rem;
        width: 100%;
        padding: 2rem 1.5rem;
        margin: 0;
    }

    .nav.active .nav-menu li {
        animation: slideInMenuItem 0.3s ease forwards;
        opacity: 0;
    }

    .nav.active .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav.active .nav-menu li:nth-child(2) { animation-delay: 0.15s; }
    .nav.active .nav-menu li:nth-child(3) { animation-delay: 0.2s; }
    .nav.active .nav-menu li:nth-child(4) { animation-delay: 0.25s; }

    @keyframes slideInMenuItem {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-link {
        padding: 1.125rem 1.5rem;
        font-size: 1.05rem;
        border-radius: 0.75rem;
        width: 100%;
        text-align: left;
        background: rgba(212, 175, 55, 0.03);
        border: 1px solid rgba(212, 175, 55, 0.15);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    .nav-link:hover,
    .nav-link:active {
        background: rgba(212, 175, 55, 0.15);
        border-color: rgba(212, 175, 55, 0.4);
        transform: translateX(-4px);
        box-shadow: 4px 0 12px rgba(212, 175, 55, 0.2);
    }

    .nav-link::after {
        display: none;
    }

    .logo-icon {
        height: 40px;
    }

    .city-select-wrapper {
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1rem;
        margin: 0;
        padding: 2rem 1.5rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        background: rgba(212, 175, 55, 0.03);
        margin-top: auto;
    }

    .city-select-label {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }

    .city-select {
        width: 100%;
        font-size: 0.95rem;
        padding: 0.875rem 1.25rem;
        background: rgba(10, 10, 20, 0.6);
        border: 2px solid rgba(212, 175, 55, 0.3);
        border-radius: 0.75rem;
    }

    .city-select:focus {
        border-color: #D4AF37;
        box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    }
    
    .hero {
        padding: calc(5rem + 80px) 0 4rem;
        min-height: auto;
    }

    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }

    .hero-logo {
        height: 50px;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .hero-title-accent {
        font-size: 3.5rem;
        margin-top: 0.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .hero-feature {
        padding: 1.75rem 1rem;
    }

    .hero-feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-feature-title {
        font-size: 1rem;
    }

    .diamond {
        opacity: 0.3;
    }

    .diamond-1 {
        width: 60px;
        height: 60px;
    }

    .diamond-2 {
        width: 50px;
        height: 50px;
    }

    .diamond-3 {
        width: 55px;
        height: 55px;
    }

    .diamond-4 {
        width: 45px;
        height: 45px;
    }
    
    .section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .feature-icon i {
        font-size: 1.75rem;
    }

    .feature-title {
        font-size: 1.125rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-section-title {
        font-size: 1.25rem;
    }

    .empty-state {
        padding: 5rem 1.5rem;
    }

    .empty-state i {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .empty-state h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .empty-state p {
        font-size: 1rem;
    }

    .pagination-wrapper {
        margin-top: 3rem;
    }

    .page-header {
        padding: calc(6rem + 80px) 0 4rem;
    }

    .page-title {
        font-size: 2.75rem;
    }

    .page-subtitle {
        font-size: 1.125rem;
    }

    .content-title {
        font-size: 1.75rem;
    }

    .content-text {
        font-size: 1rem;
    }

    .contact-form {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .header {
        padding: 0.75rem 0;
    }

    .nav {
        width: 85%;
        padding: 0;
    }

    .mobile-menu-header {
        padding: 1.25rem 1.25rem;
    }

    .mobile-logo-icon {
        height: 28px;
    }

    .mobile-menu-title {
        font-size: 1.1rem;
    }

    .mobile-menu-close {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }

    .nav-menu {
        padding: 1.5rem 1.25rem;
        gap: 0.2rem;
    }

    .mobile-menu-toggle {
        width: 32px;
        height: 28px;
        padding: 3px;
    }

    .hamburger-line {
        height: 2.5px;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-link {
        padding: 1rem 1.25rem;
        font-size: 0.975rem;
    }

    .city-select-wrapper {
        padding: 1.5rem 1.25rem;
    }

    .city-select-label {
        font-size: 0.85rem;
    }

    .city-select {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    .hero {
        padding: calc(4rem + 90px) 0 3rem;
    }

    .hero-tagline {
        font-size: 0.625rem;
        letter-spacing: 1.5px;
        margin-bottom: 1rem;
    }

    .hero-logo {
        height: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-title-accent {
        font-size: 2.5rem;
        margin-top: 0.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .hero-features {
        gap: 0.75rem;
        padding: 0;
    }

    .hero-feature {
        padding: 1.5rem 1rem;
    }

    .hero-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .hero-feature-title {
        font-size: 0.95rem;
    }

    .diamond-1,
    .diamond-2,
    .diamond-3,
    .diamond-4 {
        display: none;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .business-grid {
        gap: 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .page-header {
        padding: calc(5rem + 90px) 0 3rem;
    }

    .content-block {
        margin-bottom: 2rem;
    }

    .content-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .content-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .features {
        padding: 3rem 0;
    }

    .features-grid {
        gap: 1rem;
    }

    .feature {
        padding: 1.25rem 0.75rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.75rem;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-title {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }

    .feature-text {
        font-size: 0.85rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-grid {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-section-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .footer-text {
        font-size: 0.875rem;
    }

    .footer-link {
        font-size: 0.875rem;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        font-size: 0.8rem;
    }

    .empty-state {
        padding: 4rem 1rem;
    }

    .empty-state i {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .empty-state h3 {
        font-size: 1.25rem;
    }

    .empty-state p {
        font-size: 0.9rem;
    }

    .pagination-wrapper {
        margin-top: 2rem;
    }

    .contact-form {
        padding: 2rem 1.25rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}
/* Business Detail Page */
.business-detail-page {
    padding: calc(6rem + 140px) 0 4rem;
    min-height: 100vh;
}

.business-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(-5px);
}

.featured-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #D4AF37, #B8941E);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.business-detail-content {
    background: rgba(61, 61, 102, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.business-detail-main {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.business-detail-logo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.business-logo-placeholder-large {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(61, 61, 102, 0.3));
    border-radius: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.business-logo-placeholder-large i {
    font-size: 5rem;
    color: #D4AF37;
}

.business-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.business-detail-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.meta-item i {
    color: #D4AF37;
}

.business-detail-description {
    margin-bottom: 2rem;
}

.business-detail-description h2,
.business-detail-contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.business-detail-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.75rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #D4AF37;
}

.contact-item strong {
    display: block;
    color: #D4AF37;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #D4AF37;
}

.business-detail-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-catalogue-large,
.btn-whatsapp-large,
.btn-map-large,
.btn-website-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-catalogue-large {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941E 100%);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-catalogue-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.7);
}

.btn-whatsapp-large {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.7);
}

.btn-map-large {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.btn-map-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(66, 133, 244, 0.7);
}

.btn-website-large {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-website-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(102, 126, 234, 0.7);
}

.business-catalogues {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.business-catalogues h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
}

.catalogues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.catalogue-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.75rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.catalogue-card:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.catalogue-card i {
    font-size: 3rem;
    color: #D4AF37;
}

.business-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

@media (max-width: 768px) {
    .business-detail-main {
        grid-template-columns: 1fr;
    }
    
    .business-detail-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .business-detail-actions {
        flex-direction: column;
    }
    
    .btn-catalogue-large,
    .btn-whatsapp-large,
    .btn-map-large,
    .btn-website-large {
        width: 100%;
        justify-content: center;
    }
}

/* Business Detail Page - Just Dial Style */
.business-detail-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    background: rgba(10, 10, 20, 0.6);
    border-radius: 1rem 1rem 0 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.business-detail-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.business-logo-large {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: contain;
    border-radius: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
}

.business-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #D4AF37;
    text-wrap: balance;
    margin-top: 1.5rem;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-top: 1rem;
}

.btn-map-direction {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.quick-actions-bar {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2rem;
    background: rgba(10, 10, 20, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.75rem;
    color: white;
    text-decoration: none;
    flex: 1;
}

.quick-action-btn i {
    font-size: 1.75rem;
    color: #D4AF37;
}

.info-card {
    background: rgba(10, 10, 20, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.75rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(61, 61, 102, 0.3));
    border-radius: 0.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #D4AF37;
}

.contact-info strong {
    display: block;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.catalogues-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.catalogue-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.75rem;
    text-decoration: none;
    color: white;
}

.catalogue-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37, #B8941E);
    border-radius: 0.75rem;
}

.catalogue-icon i {
    font-size: 2rem;
    color: white;
}

@media (max-width: 1024px) {
    .business-detail-top {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Dialog Styles */
.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    animation: dialogFadeIn 0.3s ease-out forwards;
}

.dialog-container {
    background: linear-gradient(135deg, rgba(42, 42, 74, 0.95) 0%, rgba(26, 26, 46, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 420px;
    width: 90%;
    overflow: hidden;
    transform: scale(0.9);
    animation: dialogSlideIn 0.3s ease-out 0.1s forwards;
}

.dialog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(18, 140, 126, 0.15) 100%);
}

.dialog-header h3 {
    margin: 0;
    color: #25D366;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.dialog-icon {
    font-size: 1.5rem;
    color: #25D366;
}

.dialog-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dialog-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.dialog-body {
    padding: 2rem;
}

.dialog-body p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
}

.dialog-business-info {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.dialog-business-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #25D366;
    font-weight: 600;
}

.dialog-business-contact i {
    font-size: 1.25rem;
}

.dialog-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.dialog-actions {
    display: flex;
    gap: 1rem;
    padding: 0 2rem 2rem 2rem;
}

.dialog-actions .btn {
    flex: 1;
    justify-content: center;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.dialog-actions .btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
}

.dialog-actions .btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@keyframes dialogFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes dialogSlideIn {
    from {
        transform: scale(0.9) translateY(-20px);
    }
    to {
        transform: scale(1) translateY(0);
    }
}

/* Mobile responsive dialog */
@media (max-width: 480px) {
    .dialog-container {
        max-width: 95%;
        margin: 1rem;
    }
    
    .dialog-header {
        padding: 1rem 1.5rem;
    }
    
    .dialog-header h3 {
        font-size: 1.1rem;
    }
    
    .dialog-body {
        padding: 1.5rem;
    }
    
    .dialog-actions {
        flex-direction: column;
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .dialog-actions .btn {
        width: 100%;
    }
}

/* Business Card Mobile Responsive */
@media (max-width: 768px) {
    .business-card {
        min-height: auto;
    }

    .business-card-link {
        padding: 1.5rem;
    }

    .business-header {
        gap: 1rem;
    }

    .business-logo {
        width: 60px;
        height: 60px;
    }

    .business-name {
        font-size: 1rem;
    }

    .business-description {
        font-size: 0.85rem;
    }

    .business-actions {
        grid-template-columns: repeat(3, 1fr);
    }

    .action-btn {
        padding: 0.85rem 0.5rem;
        font-size: 0.75rem;
    }

    .action-btn i {
        font-size: 1.1rem;
    }

    .action-btn span {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .business-card-link {
        padding: 1.25rem;
    }

    .business-header {
        flex-direction: row;
        align-items: flex-start;
    }

    .business-logo {
        width: 50px;
        height: 50px;
    }

    .business-name {
        font-size: 1rem;
    }

    .business-location {
        font-size: 0.8rem;
    }
}
