
/* ==========================================================================
   Base & Variables
   ========================================================================== */
:root {
    /* Colors */
    --clr-primary: #801C31; /* Deep Burgundy/Maroon */
    --clr-primary-dark: #5c1423;
    --clr-bg: #FAFAFA;
    --clr-bg-alt: #F0F0F0;
    --clr-dark: #121212;
    --clr-dark-alt: #1A1A1A;
    --clr-text: #333333;
    --clr-text-light: #777777;
    --clr-white: #FFFFFF;
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    /* Spacing & Layout */
    --container-max: 1400px;
    --spacing-section: 70px;
    --radius: 0;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background-color: var(--clr-bg);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-dark);
    font-weight: 400;
    line-height: 1.2;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}
.section {
    padding: var(--spacing-section) 0;
}
.bg-light { background-color: var(--clr-bg-alt); }
.dark-section { 
    background: linear-gradient(135deg, var(--clr-primary-dark) 0%, #1a050b 100%); 
    color: var(--clr-white);
}
.text-center { text-align: center; }
.text-light { color: var(--clr-white); }
.section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--clr-primary);
}
.text-center.section-title::after {
    left: 50%;
    transform: translateX(-50%);
}
/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary, .btn-secondary, .btn-primary-outline, .btn-outline-light, .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
}
.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    border: 1px solid var(--clr-primary);
}
.btn-primary:hover {
    background-color: var(--clr-primary-dark);
    border-color: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(128, 28, 49, 0.3);
}
.btn-secondary {
    background-color: transparent;
    color: var(--clr-white);
    border: 1px solid var(--clr-white);
}
.btn-secondary:hover {
    background-color: var(--clr-white);
    color: var(--clr-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}
.btn-primary-outline {
    background-color: transparent;
    color: var(--clr-dark);
    border: 1px solid var(--clr-dark);
}
.btn-primary-outline:hover {
    background-color: var(--clr-dark);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.btn-outline-light {
    background-color: transparent;
    color: var(--clr-dark);
    border: 1px solid var(--clr-dark);
}
.btn-outline-light:hover {
    background-color: var(--clr-dark);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.btn-whatsapp {
    background-color: #25D366;
    color: var(--clr-white);
    border: 1px solid #25D366;
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}
/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background-color: transparent;
}
.header.sticky {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.brand-logo {
    max-height: 50px;
    width: auto;
    transition: var(--transition);
}
.logo-divider {
    font-size: 1.8rem;
    color: var(--clr-white);
    font-weight: 300;
    transition: var(--transition);
}
.header.sticky .logo-divider {
    color: var(--clr-dark);
}
.header-cta {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 768px) {
    .header-cta {
        position: static;
        transform: none;
        margin-top: 1rem;
    }
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.drawer-close {
    display: none;
}
    justify-content: center;
    padding: 1rem 0;
}
.main-nav a,
.nav-list li a {
    color: white;
    font-size: 1rem;
    font-weight: 400;
    position: relative;
}
.desktop-cta {
    display: inline-flex;
}
.mobile-cta-icon {
    display: none;
    color: var(--clr-primary);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
}
.mobile-cta-icon:hover {
    color: var(--clr-primary-dark);
}
.header.sticky .main-nav a {
    color: var(--clr-primary);
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--clr-primary);
    transition: var(--transition);
}
.main-nav a:hover::after {
    width: 100%;
}
/* Mega Menu */
.has-mega-menu {
    position: static;
}
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--clr-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    padding: 2rem 0;
}
.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, max-content));
    justify-content: center;
    gap: 1.5rem;
}
.mega-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    color: var(--clr-dark) !important;
}
.mega-item::after { display: none !important; }
.mega-item:hover {
    color: var(--clr-primary) !important;
}
.mega-img {
    width: 100px;
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.mega-item:hover .mega-img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--clr-white);
    cursor: pointer;
}
.header.sticky .mobile-toggle {
    color: var(--clr-dark);
}
.header .btn-primary-outline {
    color: var(--clr-white);
    border-color: var(--clr-white);
}
.header .btn-primary-outline:hover {
    background-color: var(--clr-white);
    color: var(--clr-dark);
}
.header.sticky .btn-primary-outline {
    color: var(--clr-dark);
    border-color: var(--clr-dark);
}
.header.sticky .btn-primary-outline:hover {
    background-color: var(--clr-dark);
    color: var(--clr-white);
}
/* ==========================================================================
   Hero Slider
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}
.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.slide.slide-active {
    opacity: 1;
    z-index: 2;
}
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: scale(1.05);
    transition: transform 6s linear;
}
.slide.slide-active .slide-bg {
    transform: scale(1);
}
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: -1;
}
.slide-content {
    max-width: 800px;
    padding: 0 2rem;
    color: var(--clr-white);
}
.slide-content h2 {
    font-size: 4.5rem;
    color: var(--clr-white);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
}
.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
}
.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
}
.slide.slide-active .animate-up {
    animation: fadeUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
.delay-1 { animation-delay: 0.2s !important; }
.delay-2 { animation-delay: 0.4s !important; }
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}
.slider-btn {
    pointer-events: auto;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--clr-white);
    width: 50px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}
.slider-btn:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    transform: scale(1.1);
}
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}
.dot.active {
    background: var(--clr-primary);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(128, 28, 49, 0.5);
}
/* ==========================================================================
   Carousels Common
   ========================================================================== */
.sub-section {
    margin-bottom: 4rem;
}
.sub-section-header {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}
.sub-section-title {
    font-size: 1.8rem;
    margin: 0;
    text-align: center;
}
.carousel-nav {
    display: flex;
    gap: 10px;
}
.nav-btn {
    background: transparent;
    border: 1px solid var(--clr-dark);
    color: var(--clr-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.nav-btn:hover {
    background: var(--clr-dark);
    color: var(--clr-white);
}
.dark-section .nav-btn {
    border-color: var(--clr-white);
    color: var(--clr-white);
}
.dark-section .nav-btn:hover {
    background: var(--clr-white);
    color: var(--clr-dark);
}
.carousel-container {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}
.carousel-container::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}
.carousel-container.overflow-visible {
    /* For native scrolling we need hidden to hide scrollbar but auto to scroll */
    overflow-x: auto;
    overflow-y: hidden;
}
.carousel-track {
    display: flex;
    gap: 2rem;
    padding-bottom: 1rem;
}
.carousel-progress {
    width: 100%;
    height: 4px;
    background-color: #E0E0E0;
    border-radius: 2px;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}
.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--clr-primary);
    border-radius: 2px;
}
/* ==========================================================================
   Cards (Specialization)
   ========================================================================== */
.carousel-card {
    flex: 0 0 calc(20% - 1.6rem);
    min-width: 300px;
    scroll-snap-align: start;
    cursor: pointer;
}
.card-img {
    height: auto;
    aspect-ratio: 3/4;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    transition: var(--transition);
}
.carousel-card:hover .card-img {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card-content h4 {
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 400;
}
.card-arrow {
    background: transparent;
    border: none;
    color: var(--clr-primary);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-10px);
}
.carousel-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}
/* ==========================================================================
   Design Studio Projects
   ========================================================================== */
.project-card {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 300px;
    scroll-snap-align: start;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.project-img {
    height: auto;
    aspect-ratio: 3/4;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 40%, transparent 100%);
    pointer-events: none;
    transition: background 0.5s ease;
}
.project-card:hover::after {
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}
.project-card:hover .project-img {
    transform: scale(1.1);
}
.project-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.project-card:hover .project-info {
    transform: translateY(0);
}
.project-name {
    color: var(--clr-white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    font-weight: 400;
}
.view-project-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.view-project-link:hover {
    color: var(--clr-white);
}
.view-project-link::after {
    content: '→';
    transition: transform 0.3s ease;
}
.view-project-link:hover::after {
    transform: translateX(8px);
}
/* ==========================================================================
   Site Gallery
   ========================================================================== */
.gallery-item {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 200px;
    scroll-snap-align: start;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 350px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(3px);
}
.gallery-overlay span {
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: var(--transition);
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}
/* ==========================================================================
   Why Choose Us (Features Grid)
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.feature-card {
    background: var(--clr-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid transparent;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: rgba(212, 175, 55, 0.2); /* primary with opacity */
}
.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--clr-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--clr-primary);
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    background: var(--clr-primary);
    color: var(--clr-white);
}
.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: var(--font-body);
}
.feature-card p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}
/* ==========================================================================
   Video Gallery
   ========================================================================== */
.video-card {
    flex: 0 0 calc(50% - 1rem);
    min-width: 400px;
    scroll-snap-align: start;
}
.video-thumbnail {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 1rem;
}
.video-thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    border-radius: var(--radius);
    transition: var(--transition);
}
.video-card:hover .video-thumbnail::before {
    background: rgba(0,0,0,0.1);
}
.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--clr-primary);
    color: var(--clr-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
    flex-direction: column;
}
.video-card:hover .play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}
.video-info h4 {
    font-size: 1.2rem;
    font-family: var(--font-body);
    margin-bottom: 0.5rem;
}
.watch-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--clr-text-light);
    font-size: 0.9rem;
    font-weight: 500;
}
.watch-more svg {
    transition: transform 0.3s;
}
.watch-more:hover {
    color: var(--clr-primary);
}
.watch-more:hover svg {
    transform: translateX(5px);
}
/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-slider-container {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}
.testimonial-track {
    position: relative;
    height: 300px;
}
.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.testimonial-slide.slide-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.stars {
    color: var(--clr-primary);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}
.review {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--clr-dark);
    margin-bottom: 2rem;
}
.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}
.client-name {
    font-size: 1.1rem;
    font-family: var(--font-body);
}
.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}
.t-btn {
    background: transparent;
    border: none;
    color: var(--clr-dark);
    cursor: pointer;
    transition: var(--transition);
}
.t-btn:hover {
    color: var(--clr-primary);
}
.t-dots {
    display: flex;
    gap: 8px;
}
.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CCC;
    cursor: pointer;
    transition: var(--transition);
}
.t-dot.active {
    background: var(--clr-primary);
    transform: scale(1.3);
}
/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    position: relative;
    padding: 6rem 0;
    text-align: center;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(18, 18, 18, 0.85); /* Dark overlay */
}
.cta-container {
    position: relative;
    z-index: 2;
}
.cta-title {
    color: var(--clr-white);
    font-size: 2rem;
    margin-bottom: 2rem;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--clr-dark-alt);
    color: var(--clr-text-light);
    padding: 3rem 0;
    text-align: center;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-white);
    margin-bottom: 1rem;
}
.footer-logo span {
    color: var(--clr-primary);
    font-weight: 300;
}
.footer p {
    font-size: 0.9rem;
}
/* ==========================================================================
   Social Icons
   ========================================================================== */
.marquee-container {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}
.marquee-content {
    display: flex;
    gap: 2rem;
    animation: marquee 20s linear infinite;
    padding: 0 1rem;
}
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.premium-social-wrap {
    /* uses marquee-content layout */
}
.ps-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--clr-bg-alt);
    color: var(--clr-primary);
    font-size: 1.2rem;
    transition: var(--transition);
}
.ps-icon:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-3px);
}
.elementor-screen-only {
    display: none;
}
/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .slide-content h2 { font-size: 3.5rem; }
    .project-card { min-width: 300px; }
    .carousel-card { min-width: 280px; flex: 0 0 calc(50% - 1rem); }
}
@media (max-width: 768px) {
    .header-container { flex-direction: row; justify-content: space-between; align-items: center; flex-wrap: wrap; }
    .logo { gap: 0.5rem; order: 2; flex: 1; justify-content: center; }
    .brand-logo { max-height: 40px; }
    .mobile-toggle { display: block; order: 1; margin: 0; padding: 0; position: relative; z-index: 1001; }
    
    .header-cta { order: 3; margin: 0; }
    .desktop-cta { display: none; }
    .mobile-cta-icon { display: block; }
    .main-nav { flex-basis: auto; order: 4; }
    .main-nav ul { 
        display: flex; 
        flex-direction: column; 
        position: fixed;
        top: 80px; /* Slide under the header */
        left: -100%;
        width: 320px;
        max-width: 85vw;
        height: calc(100vh - 80px);
        background: rgba(92, 20, 35, 0.95);
        backdrop-filter: blur(15px);
        z-index: 1000;
        padding: 2rem 2rem;
        transition: left 0.4s ease;
        overflow-y: auto;
        gap: 0; /* Handled by padding */
    }
    .main-nav ul.active {
        left: 0;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    .drawer-close {
        display: block;
        align-self: flex-end;
        background: transparent;
        border: none;
        color: var(--clr-white);
        margin-bottom: 1rem;
        cursor: pointer;
    }
    .drawer-socials {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .drawer-socials .ps-icon {
        width: 40px; height: 40px; font-size: 1.1rem;
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--clr-white);
    }
    .main-nav a { 
        color: var(--clr-white); 
        font-family: var(--font-heading); 
        font-size: 1.4rem; 
        display: flex; 
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .header.sticky .main-nav a { color: var(--clr-white); }
    .has-mega-menu { position: relative; }
    .mega-menu { position: static; visibility: visible; opacity: 1; transform: none; display: none; padding: 1rem 0 0 0; box-shadow: none; background: transparent; }
    .has-mega-menu.active .mega-menu { display: block; }
    .mega-menu-grid { 
        grid-template-columns: 1fr; 
        gap: 0.5rem; 
    }
    .mega-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding: 0.5rem 0;
    }
    .mega-img { 
        width: 40px; 
        height: 40px; 
        border-radius: 4px;
        flex-shrink: 0;
    }
    .mega-item span { color: var(--clr-white); font-size: 0.95rem; }
    
    .section { padding: 30px 0; }
    .sub-section { margin-bottom: 1.5rem; }
    .hero-section { min-height: 400px; height: 60vh; }
    
    .section-title { font-size: 1.6rem; margin-bottom: 1.2rem; }
    .sub-section-title { font-size: 1.1rem; }
    .slide-content h2 { font-size: 1.8rem; }
    .slide-content p { font-size: 0.95rem; margin-bottom: 1.2rem; }
    .cta-group { flex-direction: column; gap: 0.8rem; }
    
    .carousel-card { flex: 0 0 85%; min-width: 85%; }
    .project-card { flex: 0 0 85%; min-width: 85%; }
    .gallery-item { flex: 0 0 85%; min-width: 85%; }
    .video-card { flex: 0 0 85%; min-width: 85%; }
    
    .card-content h4 { font-size: 1.1rem; }
    .project-info { bottom: 1rem; left: 1rem; right: 1rem; }
    .project-name { font-size: 1.4rem; }
    
    .cta-title { font-size: 1.3rem; margin-bottom: 1.2rem; }
    .cta-buttons { flex-direction: column; gap: 0.8rem; }
    
    .btn-primary, .btn-secondary, .btn-primary-outline, .btn-outline-light, .btn-whatsapp {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .testimonial-track { height: auto; min-height: 400px; }
    .review { font-size: 1rem; margin-bottom: 1rem; }
    .testimonial-slide { position: absolute; height: 100%; }
}




/* Carousel Navigation */
.carousel-wrapper {
    width: 100%;
}
.carousel-nav-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.nav-arrow { width: 44px; height: 44px; background: var(--clr-white); color: var(--clr-primary); border: 1px solid var(--clr-primary); border-radius: 4px !important; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: var(--transition); padding: 0; margin: 0 5px; }
.nav-arrow:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary);
}

.nav-arrow svg { width: 22px; height: 22px; stroke-width: 2.5px; }


/* Infinite Testimonial Marquee */
#testimonials-marquee.marquee-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    position: relative;
    background-color: transparent !important;
}
#testimonials-marquee .marquee-row {
    display: flex;
    width: max-content;
    gap: 20px;
}
#testimonials-marquee .marquee-row.left {
    animation: marquee-left 45s linear infinite;
}
#testimonials-marquee .marquee-row.right {
    animation: marquee-right 45s linear infinite;
}
#testimonials-marquee .marquee-item {
    width: 200px;
    height: 360px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
#testimonials-marquee:hover .marquee-row {
    animation-play-state: paused;
}
@media (max-width: 768px) {
    #testimonials-marquee .marquee-item {
        width: 144px;
        height: 256px;
    }
}



                    @media (max-width: 768px) {
                        /* Main categories 2-column grid instead of slider */
                        #stone-plus .carousel-track, #opulent-homes .carousel-track {
                            display: grid !important;
                            grid-template-columns: 1fr 1fr;
                            gap: 8px;
                            overflow: visible !important;
                            flex-wrap: wrap;
                        }
                        #stone-plus .carousel-card, #opulent-homes .carousel-card {
                            min-width: unset;
                            width: 100%;
                        }
                        #stone-plus .carousel-nav-controls, #opulent-homes .carousel-nav-controls {
                            display: none !important;
                        }

                        /* Interior Consultation slider with 2 columns */
                        .interior-grid {
                            display: flex !important;
                            flex-wrap: nowrap !important;
                            overflow-x: auto;
                            scroll-snap-type: x mandatory;
                            gap: 8px;
                            -webkit-overflow-scrolling: touch;
                        }
                        .interior-grid > div {
                            min-width: calc(50% - 7.5px);
                            scroll-snap-align: start;
                        }
                    }
                    
                    @media (max-width: 768px) {
                        #stone-plus .carousel-card .card-img, #opulent-homes .carousel-card .card-img {
                            height: 200px !important;
                            border-radius: 12px !important; margin-bottom: 0.5rem !important;
                        }
                        #stone-plus .carousel-card .card-content h4, #opulent-homes .carousel-card .card-content h4 {
                            font-size: 0.85rem !important;
                        }
                    }
                    
                        @media (max-width: 768px) {
                            #stone-plus .carousel-card .card-content, #opulent-homes .carousel-card .card-content {
                                padding: 5px 0 !important;
                            }
                        }
                        

.mega-item-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mega-child-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mega-child-list li a {
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    font-family: 'Poppins', sans-serif;
}
.mega-child-list li a:hover {
    color: var(--clr-primary, #801c31);
    padding-left: 5px;
}
.dark-section .mega-child-list li a {
    color: #ccc;
}
.dark-section .mega-child-list li a:hover {
    color: #fff;
}
@media (max-width: 991px) {
    .mega-child-list li a {
        color: #fff;
    }
}


        .shorts-container::-webkit-scrollbar { display: none; }
        .short-wrapper { flex: 0 0 calc(20% - 16px); min-width: 250px; scroll-snap-align: start; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
        .short-wrapper iframe { width: 100%; height: 450px; border: none; }
        @media(max-width: 1024px) { .short-wrapper { flex: 0 0 calc(33.333% - 14px); } }
        @media(max-width: 768px) { .short-wrapper { flex: 0 0 calc(50% - 10px); height: 400px; } .short-wrapper iframe { height: 400px; } }
        @media(max-width: 480px) { .short-wrapper { flex: 0 0 85%; height: 450px; } .short-wrapper iframe { height: 450px; } }
    