/* Al Wakil Interior Design - Local Styles */

/* Reset and Base Styles */


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: #666;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.logo-link:hover {
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.logo svg {
    width: 40px;
    height: auto;
    transition: all 0.3s ease;
}

.logo-link:hover svg {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

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

.nav-links a {
    color: white;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.contact-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-open .nav-links {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-open .mobile-menu-btn span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-open .mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-open .mobile-menu-btn span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #0a0a0a 100%);
}
/* Large Centered Hero Slider */
.hero-slider {
    position: relative;
    width: 10%;
    max-width: 100px;
    height: 400px;
    z-index: 2;
    perspective: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.2s ease-out 0.8s forwards;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-slide {
    position: absolute;
    width: 170%;
    height: 115%;
    object-fit: cover;
    border-radius: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    transform: translateX(150px) scale(0.8) rotateY(20deg);
    filter: blur(3px);
    border: 4px solid rgba(255, 255, 255, 0.1);
    left: 50%;
    top: 50%;
    transform-origin: center center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1) rotateY(0deg);
    filter: blur(0);
    z-index: 3;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
    border: 4px solid rgba(255, 255, 255, 0.4);
}

.hero-slide.prev {
    opacity: 0.3;
    visibility: visible;
    transform: translate(-50%, -50%) translateX(-280px) scale(0.7) rotateY(-30deg);
    filter: blur(2px);
    z-index: 1;
}

.hero-slide.next {
    opacity: 0.3;
    visibility: visible;
    transform: translate(-50%, -50%) translateX(280px) scale(0.7) rotateY(30deg);
    filter: blur(2px);
    z-index: 1;
}

/* Slider indicators */
.slider-indicators {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.05);
}

/* Slider progress bar */
.slider-progress {
    position: absolute;
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FF6B35);
    border-radius: 3px;
    transform: translateX(-100%);
    animation: slideProgress 4s linear infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

/* Enhanced hover effects */
.hero-slider:hover .hero-slide.active {
    transform: translate(-50%, -50%) scale(1.02) rotateY(0deg);
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.8);
}

.hero-slider:hover .hero-slide.prev {
    opacity: 0.5;
    transform: translate(-50%, -50%) translateX(-260px) scale(0.75) rotateY(-25deg);
}

.hero-slider:hover .hero-slide.next {
    opacity: 0.5;
    transform: translate(-50%, -50%) translateX(260px) scale(0.75) rotateY(25deg);
}


.gradient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, rgba(255, 165, 0, 0.04) 40%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    height: 100%;
    justify-content: center;
}

/* Hero Text Styling */
.hero-text {
    text-align: center;
    margin-bottom: 1rem;
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-logo svg {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    width: 32px;
    height: 28px;
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 900;
    color:#FFD700;
    letter-spacing: 2.2px;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

.hero-main-title {
    font-size: clamp(1.2rem, 2.8vw, 2.2rem);
    font-weight: 500;
    color: white;
    margin-bottom: 0.2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.4s forwards;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.8vw, 1.8rem);
    font-weight: 600;
    background: linear-gradient(135deg, #FFD700 0%, rgb(255, 165, 0) 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.4px;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.6s forwards;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

/* Large Centered Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 1600px;
    height: 420px;
    z-index: 2;
    perspective: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.2s ease-out 0.8s forwards;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    to {
        opacity: 1;
    }
}

/* Video Section */
.video-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: white;
    z-index: 2;
}

.video-overlay h3 {
    font-size: 2rem;
    margin: 0;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.section-label {
    color: #FFD700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: #ccc;
    font-size: 1.1rem;
}

/* Services Preview */
.services-preview {
    background: #111;
}

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

.services-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Announcement */
.announcement {
    background: #0a0a0a;
}

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

.announcement-text {
    color: white;
}

.announcement-text h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.announcement-text p {
    color: #ccc;
    margin-bottom: 2rem;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: black;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

.announcement-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Services */
.services {
    background: #111;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    color: white;
}

.services-header h2 {
    margin: 0;
}

.view-all-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFD700;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.view-all-btn:hover {
    color: #FFA500;
    transform: translateX(5px);
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

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

.service-card {
    position: relative;
    width: 90%;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.service-link {
    display: block;
    position: relative;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem;
    /* border-top: 2px solid rgba(255, 215, 0, 0.3); */
}

.service-overlay h3 {
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Contact */
.contact {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
    color: white;
    padding: 80px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="10" cy="60" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="90" cy="40" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.contact h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.contact p {
    color: #ccc;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Phone and Email Row */
.contact-primary-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100%;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
    font-weight: 500;
}

.contact-item:hover {
    transform: translateY(-3px);
    color: #ffd700;
}

/* Location Row */
.contact-location-row {
    display: flex;
    justify-content: center;
    width: 100%;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.location-link:hover {
    transform: translateY(-3px);
    color: #ffd700;
}

.location-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex-shrink: 0;
}

.location-text {
    font-size: 1rem;
    line-height: 1.4;
}

/* Social Media Row */
.social-media-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.follow-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    background: #000;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.footer-logo svg {
    width: 30px;
    height: auto;
    transition: all 0.3s ease;
}

.footer-logo:hover svg {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.footer p {
    color: #666;
    margin: 0;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: black;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
    }

    .hero-content {
        gap: 1.8rem;
        padding: 1rem 1.5rem;
    }

    .hero-text {
        margin-bottom: 0.8rem;
    }

    .hero-logo svg {
        width: 28px;
        height: 24px;
    }

    .logo-text {
        font-size: 1.6rem;
        letter-spacing: 1.8px;
    }

    .hero-main-title {
        font-size: clamp(0.9rem, 2.3vw, 1.3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 2.2vw, 1.4rem);
        letter-spacing: 1.2px;
    }

    /* Hero slider mobile behavior */
    .hero-slider {
        width: 100%;
        max-width: 700px;
        height: 380px;
    }

    .slider-container {
        max-width: 100%;
    }

    .hero-slide {
        width: 220%;
        height: 120%;
        border-radius: 18px;
    }

    .hero-slide.prev,
    .hero-slide.next {
        transform: translate(-50%, -50%) translateX(-140px) scale(0.75);
        opacity: 0.3;
    }

    .hero-slide.next {
        transform: translate(-50%, -50%) translateX(140px) scale(0.75);
    }

    .slider-indicators {
        bottom: -40px;
        gap: 6px;
    }

    .indicator {
        width: 7px;
        height: 7px;
    }

    .slider-progress {
        bottom: -50px;
        width: 130px;
        height: 2px;
    }
    
    .announcement-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
    }

    .nav-container {
        padding: 1rem;
    }
    
    .hero-content {
        padding: 0.5rem 1rem;
        gap: 1.5rem;
    }

    .hero-logo svg {
        width: 24px;
        height: 20px;
    }

    .logo-text {
        font-size: 1.3rem;
        letter-spacing: 1.4px;
    }

    .hero-main-title {
        font-size: clamp(0.7rem, 1.8vw, 1rem);
    }

    .hero-subtitle {
        font-size: clamp(0.8rem, 1.8vw, 1.2rem);
    }

    .hero-slider {
        width: 100%;
        max-width: 500px;
        height: 320px;
    }

    .slider-container {
        max-width: 100%;
    }

    .hero-slide {
        border-radius: 14px;
        width: 180%;
        height: 110%;
    }

    .hero-slide.prev,
    .hero-slide.next {
        transform: translate(-50%, -50%) translateX(-100px) scale(0.7);
        opacity: 0.25;
    }

    .hero-slide.next {
        transform: translate(-50%, -50%) translateX(100px) scale(0.7);
    }

    .slider-indicators {
        bottom: -35px;
        gap: 5px;
    }

    .indicator {
        width: 5px;
        height: 5px;
    }

    .indicator.active {
        transform: scale(1.2);
    }

    .slider-progress {
        bottom: -45px;
        width: 100px;
        height: 1px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

/* Image Loading Animation */
img:not(.hero-slide){
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

/* About Section */
.about {
    background: #111;
}

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

.about-text {
    color: white;
}

.about-text h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

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

.stat-item h3 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.stat-item p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Portfolio Section */
.portfolio {
    background: #0a0a0a;
}

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

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

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

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem;
    transform: translateY(0);
    opacity: 0;
    transition: opacity 0.8s ease;
    border-top: 2px solid rgba(255, 215, 0, 0.5);
    animation: portfolioSequentialFade 8s infinite;
}

.portfolio-item:hover .portfolio-overlay {
    animation-play-state: paused;
    opacity: 1;
}

/* Sequential portfolio text fade animation - only one visible at a time */
@keyframes portfolioSequentialFade {
    0% { opacity: 0; transform: translateY(10px) scale(0.95); }
    5% { opacity: 1; transform: translateY(0) scale(1); }
    20% { opacity: 1; transform: translateY(0) scale(1); }
    25% { opacity: 0; transform: translateY(-10px) scale(0.95); }
    100% { opacity: 0; transform: translateY(-10px) scale(0.95); }
}

.portfolio-overlay h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.portfolio-overlay p {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    background: #111;
}

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

.testimonial-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.author-info h4 {
    color: #FFD700;
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.author-info p {
    color: #999;
    margin: 0;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    background: #0a0a0a;
}

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

.faq-item {
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #FFD700;
}

.faq-question h3 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.faq-toggle {
    font-size: 1.5rem;
    color: #FFD700;
    transition: all 0.3s ease;
    min-width: 30px;
    text-align: center;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #ccc;
    line-height: 1.7;
    margin: 0;
}

/* Mobile Responsive Styles for New Sections */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile-specific portfolio overlay adjustments */
    .portfolio-overlay {
        padding: 1.5rem;
        animation-duration: 2.5s;
    }
    
    .portfolio-overlay h3 {
        font-size: 1.2rem;
    }
    
    .portfolio-overlay p {
        font-size: 0.85rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-item {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Small mobile portfolio adjustments */
    .portfolio-overlay {
        padding: 1rem;
    }
    
    .portfolio-overlay h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .portfolio-overlay p {
        font-size: 0.8rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .faq-question {
        padding: 1rem 0;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Room Categories Grid Section */
.room-categories {
    background: #111;
    padding: 5rem 0;
}

.room-categories .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 15px;
    height: auto;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Grid layout positioning */
.grid-item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.grid-item:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.grid-item:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.grid-item:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.grid-item:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 300px;
}

.grid-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.grid-item-title {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Hover effects */
.grid-item:hover {
    transform: scale(1.08);
    z-index: 10;
    box-shadow: 0 20px 60px rgba(218, 165, 32, 0.8),
                 0 10px 30px rgba(218, 165, 32, 0.6),
                0 0 40px rgba(218, 165, 32, 0.4); /* Golden shadow */
}

.grid-item:hover img {
    transform: scale(1.2);
}

.grid-item:hover .grid-item-overlay {
    background: rgba(0, 0, 0, 0.5);
}

/* Responsive design for tablets */
@media (max-width: 1024px) {
    .grid-item-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .grid-item img {
        min-height: 250px;
    }
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .room-categories .container {
        padding: 0 10px;
    }
    
    .grid-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px;
    }
    
    .grid-item:nth-child(1),
    .grid-item:nth-child(2),
    .grid-item:nth-child(3),
    .grid-item:nth-child(4),
    .grid-item:nth-child(5) {
        grid-column: 1 / 2;
        grid-row: auto;
    }
    
    .grid-item-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .grid-item img {
        min-height: 200px;
    }
    
    .grid-item:hover {
        transform: scale(1.02);
        box-shadow: 0 10px 30px rgba(218, 165, 32, 0.7),
                    0 5px 15px rgba(218, 165, 32, 0.5); /* Golden shadow for mobile */
    }
    
    .grid-item:hover img {
        transform: scale(1.1);
    }
    
    .grid-item:hover .grid-item-overlay {
        background: rgba(0, 0, 0, 0.5);
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .grid-item-title {
        font-size: 1.5rem;
    }
    
    .grid-item img {
        min-height: 180px;
    }
}

/* Animation for initial load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.grid-item {
    animation: fadeInUp 0.6s ease forwards;
}

.grid-item:nth-child(1) { animation-delay: 0.1s; }
.grid-item:nth-child(2) { animation-delay: 0.2s; }
.grid-item:nth-child(3) { animation-delay: 0.3s; }
.grid-item:nth-child(4) { animation-delay: 0.4s; }
.grid-item:nth-child(5) { animation-delay: 0.5s; }

.location-icon {
    width: 24px;
    height: 24px;
    background: #ff9800;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    flex-shrink: 0;
    min-width: 24px;
  }
  
  .location-icon::after {
    content: '';
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
  }

  .location-text {
    font-size: 16px;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

/* Products Page Styles */
.products-hero {
    position: relative;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 8rem 0 5rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.products-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.products-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content-merged {
    text-align: center;
    margin-bottom: 6rem;
    padding-top: 2rem;
}

.hero-content-merged .hero-text {
    text-align: center;
}

.hero-content-merged .hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-content-merged .logo-text {
    font-size: 1.4rem;
    font-weight: 900;
    color: #FFD700;
    letter-spacing: 1.8px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-content-merged .hero-main-title {
    font-size: clamp(1.2rem, 2.8vw, 2.2rem);
    font-weight: 500;
    color: white;
    margin-bottom: 0.2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.4s forwards;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.hero-content-merged .hero-subtitle {
    font-size: clamp(0.9rem, 2.2vw, 1.4rem);
    font-weight: 600;
    background: linear-gradient(135deg, #FFD700 0%, rgb(255, 165, 0) 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.2px;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.6s forwards;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.products {
    background: #111;
    padding: 5rem 0;
}

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

.product-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.product-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

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

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 2px solid rgba(255, 215, 0, 0.5);
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.product-overlay h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.product-overlay p {
    margin: 0 0 1rem 0;
    color: #ccc;
    font-size: 0.9rem;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: black;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-decoration: none;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFA500, #FFD700);
    color: black;
}

/* Product Categories Section */
.product-categories {
    background: #0a0a0a;
    padding: 5rem 0;
}

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

.category-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.category-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.category-item:hover .category-icon {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.category-item h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.category-item:hover h3 {
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.category-item p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Active navigation link */
.nav-links a.active {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.nav-links a.active::after {
    width: 100%;
}

/* Mobile Responsive Styles for Products */
@media (max-width: 768px) {
    .products-hero {
        padding: 6rem 0 3rem 0;
        min-height: 90vh;
    }
    
    .hero-content-merged {
        margin-bottom: 4rem;
        padding-top: 1rem;
    }
    
    .hero-content-merged .logo-text {
        font-size: 1.1rem;
        letter-spacing: 1.4px;
    }
    
    .hero-content-merged .hero-main-title {
        font-size: clamp(0.9rem, 2.3vw, 1.3rem);
    }
    
    .hero-content-merged .hero-subtitle {
        font-size: clamp(0.7rem, 1.8vw, 1.1rem);
        letter-spacing: 1px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-image {
        height: 280px;
    }
    
    .product-overlay {
        padding: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .category-item {
        padding: 1.5rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .category-icon svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .products-hero {
        padding: 5rem 0 2rem 0;
        min-height: 80vh;
    }
    
    .hero-content-merged {
        margin-bottom: 3rem;
    }
    
    .hero-content-merged .logo-text {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .hero-content-merged .hero-main-title {
        font-size: clamp(0.7rem, 1.8vw, 1rem);
    }
    
    .hero-content-merged .hero-subtitle {
        font-size: clamp(0.6rem, 1.4vw, 0.9rem);
    }
    
    .products-grid {
        gap: 1rem;
    }
    
    .product-image {
        height: 250px;
    }
    
    .product-overlay {
        padding: 1rem;
    }
    
    .product-overlay h3 {
        font-size: 1.1rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-item {
        padding: 1rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .category-item h3 {
        font-size: 1.1rem;
    }
}

/* Social Media Icons Styles */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.6);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
}

.social-icon.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.social-icon.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: all 0.3s ease;
}

/* Instagram */
.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.instagram:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 20px rgba(188, 24, 136, 0.5);
}

/* WhatsApp */
.whatsapp {
    background: #25D366;
    color: white;
}

.whatsapp:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

/* YouTube */
.youtube {
    background: #FF0000;
    color: white;
}

.youtube:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .location-link {
        gap: 8px;
    }
    
    .location-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }
    
    .location-icon::after {
        width: 8px;
        height: 8px;
        top: 3px;
        left: 3px;
    }
    
    .location-text {
        font-size: 14px;
    }
}

.contact-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Mobile Responsive Styles for Contact Section */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .contact-info {
        gap: 2rem;
    }
    
    .contact-primary-row {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .contact-item {
        min-width: 280px;
        font-size: 15px;
    }
    
    .contact-location-row {
        margin: 0.5rem 0;
    }
    
    .location-link {
        max-width: 320px;
        text-align: center;
    }
    
    .location-icon {
        width: 22px;
        height: 22px;
    }
    
    .location-text {
        font-size: 15px;
    }
    
    .social-media-row {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .follow-text {
        font-size: 1rem;
    }
    
    .social-icons {
        gap: 1.2rem;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 50px 0;
    }
    
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .contact-info {
        gap: 1.8rem;
    }
    
    .contact-primary-row {
        gap: 1.2rem;
    }
    
    .contact-item {
        min-width: 260px;
        font-size: 14px;
    }
    
    .contact-icon {
        width: 18px;
        height: 18px;
    }
    
    .contact-item span {
        font-size: 13px;
    }
    
    .location-link {
        max-width: 300px;
    }
    
    .location-icon {
        width: 20px;
        height: 20px;
    }
    
    .location-text {
        font-size: 14px;
    }
    
    .follow-text {
        font-size: 0.9rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
}


/* Ravena Page Styles */
.video-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.video-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.video-item.portrait {
    aspect-ratio: 9/16;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-item .video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px 20px;
    color: white;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.video-item .video-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Ravena Gallery */
.ravena-gallery {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.gallery-item.portrait {
    aspect-ratio: 3/4;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 25px 20px 15px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.gallery-overlay p {
    font-size: 0.95rem;
    margin: 0;
    color: #ccc;
}

/* Ravena Features */
.ravena-features {
    padding: 80px 0;
    background: #111;
}

.ravena-features .section-header h2,
.ravena-features .section-header p,
.ravena-features .section-label {
    color: white;
}

.ravena-features .section-description {
    color: #ccc;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.feature-card:hover .feature-icon {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.feature-icon svg {
    color: #FFD700;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: white;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: #ccc;
}

/* Responsive adjustments for Ravena page */
@media (max-width: 768px) {
    .video-showcase {
        padding: 60px 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .video-item.portrait {
        aspect-ratio: 9/16;
        max-height: 600px;
    }
    
    .ravena-gallery {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-item.portrait {
        aspect-ratio: 3/4;
    }
    
    .gallery-overlay {
        padding: 20px 15px 12px;
    }
    
    .gallery-overlay h3 {
        font-size: 1.1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.85rem;
    }
    
    .ravena-features {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .video-showcase {
        padding: 40px 0;
    }
    
    .video-grid {
        gap: 20px;
        padding: 0 15px;
    }
    
    .video-item {
        border-radius: 15px;
    }
    
    .video-item.portrait {
        aspect-ratio: 9/16;
        max-height: 500px;
    }
    
    .video-item .video-overlay {
        padding: 20px 15px 15px;
    }
    
    .video-item .video-overlay h3 {
        font-size: 1.2rem;
    }
    
    .ravena-gallery {
        padding: 40px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item {
        border-radius: 15px;
    }
    
    .gallery-item.portrait {
        aspect-ratio: 3/4;
        max-height: 500px;
    }
    
    .gallery-overlay {
        padding: 15px 12px 10px;
    }
    
    .gallery-overlay h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
    
    .ravena-features {
        padding: 40px 0;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .feature-card {
        padding: 25px 18px;
        border-radius: 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .feature-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}
