/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #111111;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== DEMO BANNER ===== */
.demo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.demo-text {
    white-space: nowrap;
    animation: scrollText 15s linear infinite;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 14px;
}

@keyframes scrollText {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Adjust body and nav for demo banner */
body {
    padding-top: 40px;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors from original palette */
    --primary-dark: #111111;
    --primary-light: #ffffff;
    --accent-gold: #d4af37;
    --accent-gold-light: #f4e9c8;
    --accent-red: #d50032;
    --accent-red-hover: #b30029;
    --grey-100: #f9f9f9;
    --grey-200: #f0f0f0;
    --grey-300: #e0e0e0;
    --grey-500: #9e9e9e;
    --grey-700: #616161;
    --grey-900: #212121;
    
    /* Enhanced color palette */
    --gradient-primary: linear-gradient(135deg, #d50032 0%, #d4af37 100%);
    --gradient-secondary: linear-gradient(135deg, #111111 0%, #616161 100%);
    --gradient-accent: linear-gradient(135deg, #f4e9c8 0%, #d4af37 100%);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
    
    /* Borders */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== STATUS SECTION ===== */
.status-section {
    padding: 0;
    margin: 0;
}

.status-banner {
    position: relative;
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.status-banner.visible {
    display: block;
}

.status-banner.open {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.status-banner.closing-soon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.status-banner.closed {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.status-banner.opening-soon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.status-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.status-text {
    font-weight: 600;
}

.current-time {
    font-size: 0.85rem;
    opacity: 0.9;
}

.next-change {
    font-size: 0.85rem;
    opacity: 0.9;
    font-style: italic;
}

/* Remove banner adjustments since it's now in hero */

/* ===== NAVIGATION ===== */
.nav {
    position: relative;
    z-index: 1000;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

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

.nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-sub {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--grey-700);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -0.2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--grey-900);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-red);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(17, 17, 17, 0.1) 0%,
        rgba(213, 0, 50, 0.05) 50%,
        rgba(212, 175, 55, 0.1) 100%);
}

.pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(213, 0, 50, 0.1) 0%, transparent 25%);
    background-size: 100px 100px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.hero-badge i {
    color: var(--accent-gold-light);
}

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1;
}

.title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
}

.animated-title {
    color: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

/* Shimmer overlay effect */
.animated-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    animation: shimmerMove 3s ease-in-out infinite;
    z-index: 1;
}

/* Individual letter animations */
.letter {
    display: inline-block;
    animation: letterWave 2s ease-in-out infinite;
    animation-fill-mode: both;
}

.letter:nth-child(1) { animation-delay: 0s; }
.letter:nth-child(2) { animation-delay: 0.1s; }
.letter:nth-child(3) { animation-delay: 0.2s; }
.letter:nth-child(5) { animation-delay: 0.3s; }
.letter:nth-child(6) { animation-delay: 0.4s; }
.letter:nth-child(8) { animation-delay: 0.5s; }
.letter:nth-child(9) { animation-delay: 0.6s; }
.letter:nth-child(10) { animation-delay: 0.7s; }

/* Keyframe animations */

@keyframes shimmerMove {
    0%, 100% {
        left: -100%;
        opacity: 0;
    }
    50% {
        left: 100%;
        opacity: 1;
    }
}

@keyframes letterWave {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-8px) scale(1.02);
    }
    75% {
        transform: translateY(4px) scale(0.98);
    }
}

/* Hover effect for enhanced interaction */
.animated-title:hover .letter {
    animation: letterBounce 0.8s ease-in-out;
}

.animated-title:hover .letter:nth-child(1) { animation-delay: 0s; }
.animated-title:hover .letter:nth-child(2) { animation-delay: 0.05s; }
.animated-title:hover .letter:nth-child(3) { animation-delay: 0.1s; }
.animated-title:hover .letter:nth-child(5) { animation-delay: 0.15s; }
.animated-title:hover .letter:nth-child(6) { animation-delay: 0.2s; }
.animated-title:hover .letter:nth-child(8) { animation-delay: 0.25s; }
.animated-title:hover .letter:nth-child(9) { animation-delay: 0.3s; }
.animated-title:hover .letter:nth-child(10) { animation-delay: 0.35s; }

@keyframes letterBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-12px) scale(1.1);
    }
}

.title-sub {
    display: block;
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    color: var(--grey-700);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--grey-700);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--grey-300);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: white;
    border-color: var(--primary-dark);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    font-family: var(--font-display);
    text-shadow: 0 2px 4px rgba(213, 0, 50, 0.2);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
}

.hero-images {
    position: relative;
    height: 600px;
}

.hero-image {
    position: absolute;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

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

.hero-image-1 {
    top: 0;
    left: 0;
    width: 280px;
    height: 350px;
    z-index: 3;
    animation: heroFloat1 6s ease-in-out infinite;
}

.hero-image-2 {
    top: 50px;
    right: 0;
    width: 250px;
    height: 300px;
    z-index: 2;
    animation: heroFloat2 8s ease-in-out infinite;
}

.hero-image-3 {
    bottom: 0;
    left: 100px;
    width: 200px;
    height: 250px;
    z-index: 1;
    animation: heroFloat3 7s ease-in-out infinite;
}

@keyframes heroFloat1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes heroFloat2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
}

@keyframes heroFloat3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        rgba(213, 0, 50, 0.1) 0%, 
        rgba(212, 175, 55, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.hero-image:hover .image-overlay {
    opacity: 1;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--grey-700);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FLOATING GALLERY SECTION ===== */
.floating-gallery {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(17, 17, 17, 0.02) 0%, 
        rgba(213, 0, 50, 0.03) 50%, 
        rgba(212, 175, 55, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.floating-container {
    position: relative;
    height: 600px;
    width: 100%;
    margin: 3rem 0;
    border-radius: var(--border-radius-lg);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
}

.floating-image {
    position: absolute;
    width: 200px;
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-md);
    border: 3px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.floating-image:hover {
    transform: scale(1.05) rotate(0deg) !important;
    box-shadow: var(--shadow-xl);
    z-index: 10;
    border-color: var(--accent-gold);
}



.floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    opacity: 0;
    will-change: transform, opacity;
}

.floating-image img.loaded {
    opacity: 1;
}

.floating-image:hover img {
    transform: scale(1.02);
}

.floating-image .image-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.floating-image:hover .image-info,
.floating-image.focused .image-info {
    transform: translateY(0);
}

.image-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.image-info p {
    font-size: 0.8rem;
    opacity: 0.9;
}



/* Gentle Floating Animation */
@keyframes gentleFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        transform: translateY(-8px) rotate(0deg);
    }
}

.floating-image {
    animation: gentleFloat 4s ease-in-out infinite;
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.floating-image:nth-child(1) { animation-delay: 0s; }
.floating-image:nth-child(2) { animation-delay: 0.5s; }
.floating-image:nth-child(3) { animation-delay: 1s; }
.floating-image:nth-child(4) { animation-delay: 1.5s; }
.floating-image:nth-child(5) { animation-delay: 2s; }
.floating-image:nth-child(6) { animation-delay: 2.5s; }
.floating-image:nth-child(7) { animation-delay: 3s; }
.floating-image:nth-child(8) { animation-delay: 3.5s; }



/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-container {
        height: 400px;
    }
    
    .floating-image {
        width: 150px;
        height: 180px;
    }
    

}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    padding: 6rem 0;
    background: var(--grey-100);
}

.portfolio-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-share-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.instagram-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(240, 148, 51, 0.4);
    position: relative;
    overflow: hidden;
}

.instagram-share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.instagram-share-btn:hover::before {
    left: 100%;
}

.instagram-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 148, 51, 0.6);
}

.instagram-share-btn i {
    font-size: 1.2rem;
}

.share-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.instagram-share-btn:hover .share-tooltip {
    opacity: 1;
    visibility: visible;
}

.direct-share-icons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.share-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    color: white;
}

.share-icon.facebook {
    background: #1877f2;
}

.share-icon.twitter {
    background: #1da1f2;
}

.share-icon.whatsapp {
    background: #25d366;
}

.share-icon.copy {
    background: var(--accent-gold);
}

.share-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid var(--grey-300);
    border-radius: 50px;
    color: var(--grey-700);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    will-change: transform;
}

.portfolio-image img.preloaded {
    opacity: 1;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.portfolio-btn:hover {
    transform: scale(1.1);
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.portfolio-info span {
    color: var(--grey-700);
    font-size: 0.9rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 6rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--grey-200);
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.service-card.featured {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        rgba(213, 0, 50, 0.05) 100%);
}

.service-ribbon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--grey-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-red);
    font-family: var(--font-display);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 6rem 0;
    background: var(--grey-100);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--grey-700);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-features {
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature i {
    color: var(--accent-red);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
}

.feature p {
    color: var(--grey-700);
    font-size: 0.95rem;
}

.about-visual {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 500px;
}

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

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        rgba(213, 0, 50, 0.1) 0%, 
        rgba(212, 175, 55, 0.1) 100%);
}

.studio-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--grey-200);
}

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

.info-label {
    font-weight: 500;
    color: var(--grey-700);
}

.info-value {
    font-weight: 600;
    color: var(--primary-dark);
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.review-card {
    background: var(--grey-100);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.review-card.featured {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        rgba(213, 0, 50, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.review-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 40%, 
        rgba(251, 191, 36, 0.1) 50%, 
        transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.review-card.featured .review-stars i {
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.8));
    animation: featuredStarPulse 2s ease-in-out infinite alternate;
}

@keyframes featuredStarPulse {
    0% {
        filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.8));
        transform: scale(1);
    }
    100% {
        filter: drop-shadow(0 0 25px rgba(251, 191, 36, 1));
        transform: scale(1.1);
    }
}

.review-ribbon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.review-stars i {
    color: #fbbf24;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
    animation: starGlow 3s ease-in-out infinite alternate;
}

.review-stars i:nth-child(1) { animation-delay: 0s; }
.review-stars i:nth-child(2) { animation-delay: 0.2s; }
.review-stars i:nth-child(3) { animation-delay: 0.4s; }
.review-stars i:nth-child(4) { animation-delay: 0.6s; }
.review-stars i:nth-child(5) { animation-delay: 0.8s; }

.review-card:hover .review-stars i {
    transform: scale(1.2) rotate(15deg);
    filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.9));
}

.review-card:hover .review-stars i:nth-child(1) { transform: scale(1.3) rotate(18deg); }
.review-card:hover .review-stars i:nth-child(2) { transform: scale(1.2) rotate(-12deg); }
.review-card:hover .review-stars i:nth-child(3) { transform: scale(1.4) rotate(20deg); }
.review-card:hover .review-stars i:nth-child(4) { transform: scale(1.1) rotate(-15deg); }
.review-card:hover .review-stars i:nth-child(5) { transform: scale(1.3) rotate(22deg); }

@keyframes starGlow {
    0% {
        filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
        transform: scale(1);
    }
    100% {
        filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.8));
        transform: scale(1.05);
    }
}

.review-text {
    color: var(--grey-700);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--grey-700);
    font-size: 0.9rem;
}

.reviews-summary {
    background: var(--primary-dark);
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-stars {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.stat-stars i {
    color: #fbbf24;
    font-size: 1rem;
    filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.7));
    animation: summaryStarTwinkle 2s ease-in-out infinite;
}

.stat-stars i:nth-child(1) { animation-delay: 0s; }
.stat-stars i:nth-child(2) { animation-delay: 0.4s; }
.stat-stars i:nth-child(3) { animation-delay: 0.8s; }
.stat-stars i:nth-child(4) { animation-delay: 1.2s; }
.stat-stars i:nth-child(5) { animation-delay: 1.6s; }

@keyframes summaryStarTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.7));
    }
    50% {
        opacity: 0.7;
        transform: scale(0.9);
        filter: drop-shadow(0 0 12px rgba(251, 191, 36, 1));
    }
}

.stat-label {
    color: black;
    font-size: 0.9rem;
    font-weight: 500;
}

.reviews-summary .stat-label{
    color: white !important;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

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

.contact-card {
    background: var(--grey-100);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--grey-700);
    line-height: 1.6;
}

.booking-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.booking-card {
    background: var(--grey-100);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.booking-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.booking-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.booking-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.booking-card p {
    color: var(--grey-700);
    line-height: 1.5;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.booking-card .btn {
    width: 100%;
    max-width: 200px;
    justify-content: center;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    max-width: 400px;
}

.brand-logo {
    margin-bottom: 1rem;
}

.footer-brand .brand-text {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand .brand-sub {
    color: var(--grey-500);
    margin-top: -0.3rem;
}

.footer-brand p {
    color: var(--grey-500);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.link-group h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-group a,
.link-group span {
    display: block;
    color: var(--grey-500);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--grey-700);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

#lightboxImage {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-info {
    padding: 1.5rem;
    text-align: center;
}

.lightbox-info h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 600;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.back-to-top.open {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.back-to-top.closing-soon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.back-to-top.closed {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.back-to-top.opening-soon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.back-to-top .status-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    margin-bottom: 0.5rem;
    z-index: 1000;
}

.back-to-top:hover .status-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 1rem 1rem;
        padding: 1rem 0;
        z-index: 1000;
    }
    
    .nav-links.mobile-active {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--grey-200);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 6rem 1rem 2rem;
        min-height: auto;
    }
    

    
    .status-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .status-content .current-time,
    .status-content .next-change {
        font-size: 0.8rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-images {
        height: 400px;
        margin-top: 2rem;
    }
    
    .hero-image-1 {
        width: 220px;
        height: 280px;
        left: 10px;
    }
    
    .hero-image-2 {
        width: 200px;
        height: 240px;
        top: 80px;
        right: 10px;
    }
    
    .hero-image-3 {
        width: 160px;
        height: 200px;
        bottom: 20px;
        left: 60px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-controls {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .portfolio-filter {
        justify-content: center;
    }
    
    .social-share-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text .section-header {
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-actions {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .booking-card {
        padding: 1.2rem;
    }
    
    .booking-card p {
        font-size: 0.85rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reviews-summary {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 321px) {
    .stat-number {
        font-size: 1.8rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Apply animations to elements as they come into view */
.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll.animate-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-on-scroll.animate-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }