* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #d4af37;
    --secondary: #1a1a1a;
    --text-dark: #333;
    --text-light: #fff;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --gray: #666;
    --light-gray: #e0e0e0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
}

.btn-primary:hover,
.btn-primary:active {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.98);
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    color: var(--primary);
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ==================== CELEBRITIES HEADER ==================== */
.celebrities-header {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: var(--text-light);
    padding: 150px 20px 100px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.celebrities-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="1200" height="600" fill="%231a1a1a"/><rect width="1200" height="600" fill="url(%23pattern)"/></svg>');
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 10;
    animation: slideInUp 1s ease-out;
}

.celebrities-header h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.celebrities-header p {
    font-size: 1.3rem;
    color: #ddd;
    margin-bottom: 25px;
    font-weight: 300;
}

.star-icons {
    font-size: 1.5rem;
    color: var(--primary);
}

.star-icons i {
    margin: 0 8px;
    animation: twinkle 1.5s infinite;
}

.star-icons i:nth-child(2) {
    animation-delay: 0.3s;
}

.star-icons i:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes twinkle {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== INTRO SECTION ==================== */
.intro-section {
    background-color: white;
    padding: 60px 0;
}

.intro-content h2 {
    color: var(--primary);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 25px;
}

.intro-content p {
    text-align: center;
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat p {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 500;
}

/* ==================== SECTION TITLE ==================== */
.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
}

/* ==================== CELEBRITIES GALLERY ==================== */
.celebrities-gallery {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.celebrities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.celebrity-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    animation: fadeIn 0.6s ease;
}

.celebrity-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.celebrity-image-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.celebrity-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.celebrity-card:hover .celebrity-image-wrapper img {
    transform: scale(1.1);
}

.celebrity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.celebrity-card:hover .celebrity-overlay {
    opacity: 1;
}

.view-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--secondary);
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.view-btn:hover {
    background-color: #e6c200;
    transform: scale(1.15);
}

.celebrity-info {
    padding: 25px;
    text-align: center;
}

.celebrity-info h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.profession {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.visit-date {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ==================== LIGHTBOX MODAL ==================== */
.celeb-lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.celeb-lightbox.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.celeb-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
}

.celeb-lightbox-container {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.celeb-lightbox-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.celeb-lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.celeb-lightbox-text {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 15px;
    width: 100%;
    border-left: 4px solid var(--primary);
}

.celeb-lightbox-text h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.celeb-lightbox-text p {
    font-size: 0.9rem;
    margin: 5px 0;
    color: #ddd;
}

.celeb-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--secondary);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 15;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.celeb-lightbox-close:hover {
    background-color: #e6c200;
    transform: scale(1.1);
}

.celeb-lightbox-nav {
    background-color: rgba(212, 175, 55, 0.8);
    color: var(--secondary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.celeb-lightbox-nav:hover {
    background-color: var(--primary);
    transform: scale(1.15);
}

.celeb-prev {
    order: -1;
}

.celeb-next {
    order: 1;
}

.celeb-lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(212, 175, 55, 0.9);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 15;
    font-size: 0.9rem;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: var(--text-light);
    padding: 60px 0;
}

.testimonials-section .section-title {
    color: var(--primary);
}

.testimonials-section .section-subtitle {
    color: #ddd;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(212, 175, 55, 0.1);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-8px);
}

.stars {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.8;
    font-style: italic;
    color: #ddd;
}

.testimonial-author {
    color: var(--primary);
    font-weight: 600;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #b8860b);
    color: var(--secondary);
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background-color: var(--secondary);
    color: var(--primary);
    padding: 15px 40px;
}

.cta-section .btn-primary:hover {
    background-color: #333;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--secondary);
    color: var(--text-light);
    text-align: center;
    padding: 25px 15px;
    border-top: 2px solid var(--primary);
}

.footer p {
    margin: 8px 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer span {
    color: var(--primary);
    font-weight: 600;
}

.footer a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    text-decoration: underline;
}

/* ==================== FLOATING BUTTONS ==================== */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.floating-btn.whatsapp {
    background-color: #25d366;
    color: white;
}

.floating-btn.whatsapp:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.floating-btn.call {
    background-color: var(--primary);
    color: var(--secondary);
}

.floating-btn.call:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* ==================== ANIMATIONS ==================== */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        left: -100%;
        top: 50px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.99);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 15px 0;
        gap: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .hamburger {
        display: flex;
    }

    .celebrities-header {
        padding: 100px 20px 60px;
        margin-top: 50px;
    }

    .celebrities-header h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .celebrities-header p {
        font-size: 1rem;
    }

    .celebrities-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .celebrity-image-wrapper {
        height: 250px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .intro-content h2 {
        font-size: 1.8rem;
    }

    .intro-content p {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-brand h1 {
        font-size: 1.1rem;
    }

    .nav-menu {
        top: 45px;
    }

    .celebrities-header {
        padding: 80px 15px 50px;
    }

    .celebrities-header h1 {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }

    .celebrities-header p {
        font-size: 0.9rem;
    }

    .star-icons {
        font-size: 1.2rem;
    }

    .star-icons i {
        margin: 0 5px;
    }

    .celebrities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .celebrity-image-wrapper {
        height: 250px;
    }

    .celebrity-info {
        padding: 15px;
    }

    .celebrity-info h3 {
        font-size: 1.1rem;
    }

    .profession {
        font-size: 0.8rem;
    }

    .visit-date {
        font-size: 0.75rem;
    }

    .view-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .intro-content h2 {
        font-size: 1.4rem;
    }

    .intro-content p {
        font-size: 0.9rem;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .stat p {
        font-size: 0.85rem;
    }

    .cta-section {
        padding: 40px 15px;
    }

    .cta-section h2 {
        font-size: 1.4rem;
    }

    .cta-section p {
        font-size: 0.9rem;
    }

    .celeb-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .celeb-lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .celeb-lightbox-content img {
        max-height: 60vh;
    }

    .celeb-lightbox-text {
        padding: 15px;
        margin-top: 10px;
    }

    .celeb-lightbox-text h3 {
        font-size: 1.1rem;
    }

    .celeb-lightbox-text p {
        font-size: 0.8rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-author {
        font-size: 0.9rem;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .footer p {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .celebrities-header h1 {
        font-size: 1.3rem;
    }

    .celebrities-grid {
        gap: 12px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .cta-section h2 {
        font-size: 1.2rem;
    }

    .stat h3 {
        font-size: 1.8rem;
    }
}