/* 
========================================================================
   SAMKIT EVENTS - PREMIUM JAIN EVENT MANAGEMENT 
   GLOBAL DESIGN SYSTEM & STYLESHEET (VANILLA CSS)
========================================================================
*/

/* 1. Design Tokens & Root Variables */
:root {
    /* Color Palette */
    --color-primary: #780016;       /* Deep Sacred Crimson/Maroon */
    --color-primary-light: #9e0e29; /* Slightly brighter crimson for hover states */
    --color-primary-dark: #4e000d;  /* Dark rich mahogany */
    --color-accent: #d4af37;        /* Divine Gold */
    --color-accent-light: #e5c158;  /* Luminous golden accent */
    --color-accent-dark: #b8860b;   /* Antique Gold */
    --color-dark-bg: #121212;       /* Ultra premium charcoal background */
    --color-card-bg: #1c1c1c;       /* Subtle grey-dark for container cards */
    --color-light-bg: #fdfaf4;      /* Traditional warm cream/ivory background */
    --color-cream-dark: #f5eedc;    /* Deep cream */
    --color-white: #ffffff;
    --color-text-dark: #2c2c2c;     /* Highly readable charcoal for light bg */
    --color-text-muted: #666666;
    --color-text-light: #f5f5f5;
    
    /* Typography & Fonts */
    --font-heading: 'Jost', sans-serif;
    --font-title: 'Jost', sans-serif;
    --font-body: 'Jost', sans-serif;

    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(120, 0, 22, 0.12);
    --shadow-dark-card: 0 15px 35px rgba(0, 0, 0, 0.4);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

/* 2. Global Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-light-bg);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Common Styles */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-tagline {
    font-family: var(--font-heading);
    color: var(--color-accent-dark);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-family: var(--font-title);
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '❖';
    font-size: 14px;
    color: var(--color-accent);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-desc {
    max-width: 700px;
    text-align: center;
    margin: 0 auto 50px auto;
    color: var(--color-text-muted);
    font-size: 16px;
}

/* 3. Sticky Glassmorphic Navbar */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff; /* Premium solid white background */
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition-smooth);
}

.header-nav.scrolled {
    background: #ffffff;
    padding: 12px 0;
    box-shadow: var(--shadow-premium);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.header-nav.scrolled .nav-container {
    padding: 10px 24px;
}

/* Logo Design */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-logo-img {
    max-height: 80px; /* Set to 80px as requested */
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.header-nav.scrolled .main-logo-img {
    max-height: 60px; /* Proportional scrolled height */
}

/* Mobile responsive logo size adjustments */
@media (max-width: 768px) {
    .main-logo-img {
        max-height: 60px; /* Shrink logo to 60px on mobile screens */
    }
    .header-nav.scrolled .main-logo-img {
        max-height: 50px; /* Scrolled mobile state */
    }
}

.logo-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-accent);
    box-shadow: 0 4px 10px rgba(120, 0, 22, 0.2);
}

.logo-gold-icon {
    color: var(--color-accent);
    font-size: 18px;
    animation: goldPulse 4s infinite alternate;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-primary);
    line-height: 1;
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-accent-dark);
    line-height: 1.2;
    margin-top: 2px;
}

/* Nav Links */
.navbar {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text-dark);
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.5px;
}

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

.nav-link:hover {
    color: var(--color-primary);
}

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

.nav-link.active {
    color: var(--color-primary);
}

/* Nav Actions (CTA, Lang Selector) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    color: var(--color-primary-dark);
}

.flag-icon {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
}

.cta-nav-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50px;
    border: 1px solid var(--color-primary);
    box-shadow: 0 4px 15px rgba(120, 0, 22, 0.15);
}

.cta-nav-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* 4. Common Premium Button Designs */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(120, 0, 22, 0.25);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

/* 5. Home Page Sections Styles */

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    color: var(--color-white);
    overflow: hidden;
    padding: 0;
    margin: 0;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-overlay-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 58px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--color-white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Arrows styling */
.hero-prev-btn, .hero-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(88, 12, 31, 0.35); /* semi-transparent deep maroon */
    border: 1px solid rgba(212, 175, 55, 0.4); /* gold border */
    color: var(--color-white);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hero-prev-btn:hover, .hero-next-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.hero-prev-btn { left: 30px; }
.hero-next-btn { right: 30px; }

/* Dots Container */
.hero-dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: var(--color-accent);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--color-accent);
    width: 28px;
    border-radius: 6px;
}

/* About Section */
.about-section {
    background-color: var(--color-light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text-content {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.about-title-left {
    font-family: var(--font-title);
    font-size: 32px;
    color: var(--color-primary-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-desc-para {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.about-desc-para strong {
    color: var(--color-primary);
}

.about-highlight-box {
    border-left: 4px solid var(--color-accent);
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: var(--color-primary-dark);
    font-weight: 500;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.about-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(120, 0, 22, 0.25), transparent);
}

/* Services Section (Dark Premium Theme) */
.services-section {
    background-color: var(--color-dark-bg);
    color: var(--color-text-light);
}

.services-section .section-title {
    color: var(--color-white);
}

.services-section .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--color-primary-dark);
    border: none;
    border-radius: var(--border-radius-md);
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-dark-card);
    transition: var(--transition-smooth);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: #ce9d43; /* Match the gold circle in the mockup */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    color: var(--color-white);
    font-size: 26px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    transform: scale(1.1);
}

.service-card-title {
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.service-card-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-read-more-btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-white);
    background-color: #ce9d43;
    padding: 12px 36px;
    border-radius: 30px;
    transition: var(--transition-smooth);
    margin-top: auto;
}

.service-read-more-btn:hover {
    background-color: var(--color-accent-light);
    transform: translateY(-2px);
    color: var(--color-primary-dark);
}

.services-action-center {
    text-align: center;
    margin-top: 50px;
}

/* Stats Counter Row */
.stats-section {
    background: linear-gradient(rgba(120, 0, 22, 0.9), rgba(78, 0, 13, 0.95)),
                url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?q=80&w=1200&auto=format&fit=crop') no-repeat center center/cover;
    padding: 60px 0;
    color: var(--color-white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    padding: 10px;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 48px;
    font-weight: 900;
    color: var(--color-accent-light);
    margin-bottom: 5px;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85);
}

/* Why Choose Us Section */
.why-choose-us-section {
    background-color: var(--color-white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 20px;
}

.why-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(214, 175, 55, 0.15);
    border: 1px solid var(--color-accent);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.why-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-primary-dark);
}

.why-text p {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.why-image-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    height: 400px;
}

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

/* Gallery Section Grid & masonry preview */
.gallery-section {
    background-color: var(--color-light-bg);
}

.gallery-grid-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(120, 0, 22, 0.8), rgba(0, 0, 0, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

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

.gallery-title {
    color: var(--color-white);
    font-size: 18px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.gallery-subtitle {
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 500;
}

/* Spans for masonry grid variety */
.gallery-item.col-span-2 { grid-column: span 2; }
.gallery-item.row-span-2 { grid-row: span 2; }

.gallery-btn-center {
    text-align: center;
    margin-top: 40px;
}

/* Testimonial Section */
.testimonial-section {
    background-color: var(--color-white);
    overflow: hidden;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide standard scrollbar */
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background-color: var(--color-light-bg);
    border: 1px solid var(--color-cream-dark);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 48px;
    color: rgba(120, 0, 22, 0.1);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--color-text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-primary-dark);
}

.testimonial-author-role {
    font-size: 13px;
    color: var(--color-accent-dark);
    font-weight: 600;
    text-transform: uppercase;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-cream-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: var(--color-primary);
    width: 25px;
    border-radius: 5px;
}

/* Social Media Instagram Grid */
.social-section {
    background-color: var(--color-light-bg);
    padding-bottom: 100px;
}

.social-platforms {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-platform {
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    background: var(--color-dark-bg);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-platform.insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.btn-platform.youtube {
    background: #ff0000;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.social-post-card {
    aspect-ratio: 1;
    position: relative;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.social-post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.social-post-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 24px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.social-post-card:hover img {
    transform: scale(1.08);
}

.social-post-card:hover .social-post-hover {
    opacity: 1;
}

/* 6. Fully Secure & Premium Contact Page Forms */
.contact-split-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: stretch;
}

.contact-info-panel {
    background-color: var(--color-white);
    border: 1px solid var(--color-cream-dark);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
}

.contact-info-title {
    font-family: var(--font-title);
    font-size: 26px;
    color: var(--color-primary-dark);
    margin-bottom: 25px;
}

.contact-info-desc {
    color: var(--color-text-muted);
    font-size: 15px;
    margin-bottom: 30px;
}

.contact-detail-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(120, 0, 22, 0.08);
    border: 1px solid rgba(120, 0, 22, 0.2);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: 16px;
    color: var(--color-primary-dark);
    margin-bottom: 4px;
}

.contact-detail-text p {
    color: var(--color-text-muted);
    font-size: 14px;
}

/* Map Mock Container */
.map-container {
    min-height: 250px;
    flex-grow: 1;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--color-cream-dark);
    background-color: #e5e3df;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Secure Form Panel Styling */
.contact-form-panel {
    background-color: var(--color-white);
    border: 1px solid var(--color-cream-dark);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-premium);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    background-color: var(--color-light-bg);
    border: 1px solid var(--color-cream-dark);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-dark);
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--color-accent);
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23780016' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 45px;
    cursor: pointer;
}

select.form-control option {
    background-color: var(--color-white);
    color: var(--color-text-dark);
    padding: 10px;
}

/* Secure Form Feedback Alerts */
.alert {
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Hidden Honeypot Field (Bot prevention) */
.h-pot {
    display: none !important;
    visibility: hidden !important;
}

/* 7. Gallery Grid filter page & Lightbox Modal styles */
.filter-menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    background-color: var(--color-white);
    border: 1px solid var(--color-cream-dark);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 5px 15px rgba(120, 0, 22, 0.15);
}

/* Fullscreen Pure JS Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--color-white);
    font-size: 36px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.lightbox-close:hover {
    color: var(--color-accent);
}

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    transform: scale(0.9);
    transition: var(--transition-smooth);
    border: 4px solid var(--color-accent);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-dark-card);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-caption {
    position: absolute;
    bottom: 40px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

/* 8. Modern Footer & WhatsApp Float Styles */
.footer-section {
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
    border-top: 4px solid var(--color-accent);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 24px 60px 24px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1.2fr 0.8fr;
    gap: 45px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .main-logo-img {
    filter: brightness(0) invert(1); /* Turns the colored PNG logo completely white */
    opacity: 0.95; /* Elegant slight opacity for premium blending */
}

.text-white { color: var(--color-white); }
.text-gold { color: var(--color-accent); }

.footer-desc {
    color: rgba(245, 245, 245, 0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icon:hover {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: rgba(245, 245, 245, 0.7);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list li a i {
    font-size: 10px;
    color: var(--color-accent);
    transition: var(--transition-smooth);
}

.footer-links-list li a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-contact-list li .icon {
    color: var(--color-accent);
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact-list li .text {
    color: rgba(245, 245, 245, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-list li .text a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(245, 245, 245, 0.5);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-container .credit {
    color: var(--color-accent);
    font-weight: 500;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    background: linear-gradient(135deg, #f3b05a, #e69d45);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(230, 157, 69, 0.4);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, #e69d45, #d68930);
    box-shadow: 0 8px 20px rgba(230, 157, 69, 0.6);
    transform: translateY(-3px);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    background-color: #25d366;
    color: var(--color-white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.whatsapp-icon {
    font-size: 28px;
}

.whatsapp-badge {
    display: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    color: var(--color-white);
}

/* ==========================================
   TESTIMONIAL SECTION
   ========================================== */
.testimonial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #5b1a18 0%, #3a0e0c 100%);
    text-align: center;
}

.testimonial-section .section-title,
.testimonial-section .section-desc {
    color: #ffffff;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 15px 15px 30px 15px;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc((100% - 60px) / 3);
    scroll-snap-align: start;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(230, 157, 69, 0.25);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.quote-icon {
    font-size: 45px;
    color: rgba(230, 157, 69, 0.2);
    margin-bottom: 20px;
    display: block;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.testimonial-author-role a {
    color: #e69d45 !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.testimonial-author-role a:hover {
    color: var(--color-primary-dark) !important;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(230, 157, 69, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-dots .dot.active, .testimonial-dots .dot:hover {
    background-color: #e69d45;
    border-color: #e69d45;
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 991px) {
    .testimonial-slider {
        padding: 15px 16px 25px 16px !important;
        scroll-padding: 0 16px;
        gap: 20px;
    }
    .testimonial-card {
        flex: 0 0 calc(100% - 32px);
        scroll-snap-align: center;
        text-align: center;
        margin: 0 auto;
        padding: 25px 20px;
    }
    .testimonial-card .quote-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    .testimonial-card .testimonial-text {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .testimonial-card .testimonial-author {
        font-size: 17px;
        margin-bottom: 3px;
    }
}

/* On desktop, show only 2 paging dots (dot 1 and dot 4) */
@media (min-width: 992px) {
    .testimonial-dots .dot:nth-child(2),
    .testimonial-dots .dot:nth-child(3),
    .testimonial-dots .dot:nth-child(5),
    .testimonial-dots .dot:nth-child(6) {
        display: none;
    }
}

/* Language Item Display Control */
.mobile-lang-only {
    display: none !important;
}
.desktop-lang-only {
    display: flex !important;
}

@media (max-width: 768px) {
    .mobile-lang-only {
        display: flex !important;
    }
    .desktop-lang-only {
        display: none !important;
    }
}

/* Language Item in Menu */
.mobile-lang-item {
    display: flex;
    align-items: center;
    margin-left: 15px;
}
@media (max-width: 768px) {
    .mobile-lang-item {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        justify-content: flex-start;
    }
    .custom-lang-selector .lang-dropdown-menu {
        left: 0;
        right: auto;
        transform-origin: top left;
    }
}

/* Custom Language Selector */
.custom-lang-selector {
    position: relative;
    cursor: pointer;
    background: #fdfaf4;
    border: 1px solid rgba(230, 157, 69, 0.4);
    border-radius: 30px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}
.custom-lang-selector:hover {
    border-color: #e69d45;
}
.lang-active {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--color-primary-dark);
}
.lang-chevron {
    font-size: 10px;
    color: #e69d45;
    transition: transform 0.3s;
}
.custom-lang-selector.open .lang-chevron {
    transform: rotate(180deg);
}
.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 1px solid rgba(230, 157, 69, 0.2);
    border-radius: 12px;
    list-style: none;
    padding: 8px 0;
    min-width: 130px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}
.custom-lang-selector.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown-menu li {
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-dark);
    transition: background 0.3s;
}
.lang-dropdown-menu li:hover {
    background: #fdfaf4;
    color: var(--color-accent);
}
.flag-icon {
    width: 22px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Hide Google Translate Top Bar & Tooltips */
body {
    top: 0 !important;
}
.skiptranslate iframe,
.goog-te-banner-frame {
    display: none !important;
}
#goog-gt-tt {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* 9. Keyframes Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes goldPulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
    }
    100% {
        transform: scale(1.05);
        text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    }
}

/* 10. Responsive Breakpoints */
@media (max-width: 1024px) {
    .about-grid, .why-grid, .contact-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 46px;
    }
    
    .gallery-grid-masonry {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    /* Navigation Bar Mobile Layout */
    .mobile-toggle {
        display: flex;
    }
    
    .navbar {
        position: fixed;
        top: 80px; /* Under navbar */
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #ffffff;
        z-index: 999;
        display: flex;
        align-items: flex-start;
        padding: 40px 24px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(212, 175, 55, 0.15);
        overflow-y: auto;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }
    
    .nav-link {
        font-size: 18px;
        display: block;
        width: 100%;
        padding: 10px 0;
    }
    
    .header-nav.scrolled .navbar {
        top: 62px;
        height: calc(100vh - 62px);
    }
    
    .nav-actions {
        margin-right: 15px;
    }
    
    .lang-selector {
        padding: 4px 8px;
    }
    
    .cta-nav-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    /* Mobile Active Hamburger Animation */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-section {
        height: 75vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 28px !important;
        margin-bottom: 10px;
    }
    
    .hero-desc {
        font-size: 15px !important;
        line-height: 1.4 !important;
        margin-bottom: 20px !important;
    }

    .hero-prev-btn, .hero-next-btn {
        display: none !important;
    }
    
    .hero-dots-container {
        bottom: 30px; /* Lower dots to sit comfortably below buttons */
        gap: 15px;
    }
    
    .hero-dot {
        background: rgba(255, 255, 255, 0.75); /* Increase visibility of inactive dots */
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); /* Add shadow for better contrast */
    }
    
    .gallery-grid-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    
    .gallery-item.col-span-2 { grid-column: span 1; }
    .gallery-item.row-span-2 { grid-row: span 1; }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-col.contact-col {
        grid-column: span 1;
    }
    
    .contact-form-panel {
        padding: 30px 20px;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-info-panel {
        padding: 30px 20px;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-detail-text {
        min-width: 0;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    /* Testimonial Single Column on Mobile */
    .testimonial-slider {
        display: flex;
    }

    /* Social Media Mobile Single Column Fixes */
    .social-platforms {
        flex-direction: column;
        align-items: center;
    }
    .btn-platform {
        width: 100%;
        max-width: 100%;
    }
    .social-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    /* Tighten container padding for smaller screens to gain maximum screen width */
    .container {
        padding: 0 16px !important;
    }
    
    /* Responsive margins for sections (exclude hero so its custom padding works) */
    section:not(.hero-section) {
        padding: 45px 0 !important;
    }
    
    /* Section headers formatting for micro screens */
    .section-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    
    .section-title::after {
        font-size: 11px !important;
        bottom: -8px !important;
    }
    
    .section-desc {
        font-size: 14px !important;
        margin-bottom: 30px !important;
        padding: 0 8px !important;
    }
    
    /* Hero slider title & descriptions */
    .hero-title {
        font-size: 24px !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
        letter-spacing: 0.5px !important;
    }
    
    .hero-tagline {
        font-size: 12px !important;
        letter-spacing: 2px !important;
        margin-bottom: 8px !important;
    }
    
    .hero-desc {
        font-size: 14px !important;
        line-height: 1.35 !important;
        margin-bottom: 15px !important;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 10px !important;
    }
    
    .btn-primary, .btn-outline {
        width: 100% !important;
        padding: 10px 18px !important;
        font-size: 13px !important;
        height: auto !important;
    }
    
    /* About Us section alignment */
    .about-content {
        padding: 0 8px !important;
    }
    
    .about-title {
        font-size: 22px !important;
    }
    
    /* Gallery grid items masonry logic */
    .gallery-grid-masonry {
        grid-template-columns: 1fr !important; /* Full width items on ultra-small screens */
        grid-auto-rows: 200px !important;
        row-gap: 12px !important;
    }
    
    .gallery-item {
        border-radius: 12px !important;
        aspect-ratio: auto !important;
        height: 200px !important;
    }
    
    .gallery-item img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    .gallery-item-overlay {
        display: none !important;
    }
    
    /* Footer elements */
    .footer-section {
        padding: 40px 0 20px 0 !important;
    }
    
    .footer-col {
        margin-bottom: 25px !important;
        text-align: left !important;
    }
    
    .footer-links-list, .footer-contact-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .footer-contact-list li {
        justify-content: flex-start !important;
    }
    
    /* Floating buttons sizing */
    .whatsapp-float {
        bottom: 25px !important;
        left: 15px !important;
        width: 42px !important;
        height: 42px !important;
    }
    .scroll-top-btn {
        bottom: 25px !important;
        right: 15px !important;
        width: 42px !important;
        height: 42px !important;
    }
    
    .whatsapp-icon, .scroll-top-btn i {
        font-size: 18px !important;
    }
    
    .whatsapp-badge {
        display: none !important;
    }
    
    .lang-selector span {
        display: none !important;
    }
}

/* Screenshot Fixes */
.why-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.social-separator {
    text-align: center;
}

.social-platforms {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-platform {
    padding: 12px 20px;
    border-radius: 30px;
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex: 1;
    max-width: 220px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn-platform:hover {
    color: #fff;
    transform: translateY(-3px);
}
.btn-platform.insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.btn-platform.youtube {
    background: #ff0000;
}

.social-post-card {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.social-post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================================================
   SAMKIT EVENTS - SCROLL REVEAL VIEWPORT ANIMATIONS SYSTEM
   ======================================================================== */

/* Page Fade-in on Load */
body {
    opacity: 0;
    animation: pageFadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Viewport Scroll Reveal Base */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.reveal-left,
.reveal.reveal-right {
    transform: translateY(40px); /* Converted to smooth vertical animation globally */
}

.reveal.reveal-scale {
    transform: scale(0.92);
}

/* Active Class injected by IntersectionObserver */
.reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Staggered Delay Utility Classes */
.delay-100 { transition-delay: 100ms !important; }
.delay-200 { transition-delay: 200ms !important; }
.delay-300 { transition-delay: 300ms !important; }
.delay-400 { transition-delay: 400ms !important; }
.delay-500 { transition-delay: 500ms !important; }
.delay-600 { transition-delay: 600ms !important; }
.delay-700 { transition-delay: 700ms !important; }
.delay-800 { transition-delay: 800ms !important; }

/* ========================================================
   12. Secure Content & Image Protection (Anti-Copy Styles)
   ======================================================== */
/* Disable global text selection & copy across entire site */
body {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE 10+ */
    user-select: none;         /* Standard */
}

/* Explicitly allow text selection in form input/textarea for user friendliness */
input, textarea, select {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Disable user image dragging to block standard save shortcuts */
img {
    -webkit-user-drag: none !important;
    user-drag: none !important;
    -webkit-touch-callout: none !important; /* Disable iOS long-press callouts */
}

/* ========================================================
   13. Premium Welcome Preloader Screen (Glassmorphic)
   ======================================================== */
.welcome-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, #3c1011 0%, #0d0d0d 100%);
    z-index: 999999; /* Ensure it covers EVERYTHING */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader-glass-card {
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--border-radius-lg);
    padding: 55px 45px;
    width: 90%;
    max-width: 520px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 50px rgba(212, 175, 55, 0.1);
    transform: scale(0.9);
    opacity: 0;
    animation: preloaderCardFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

@keyframes preloaderCardFadeIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.preloader-logo-container {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 5px 20px rgba(230, 157, 69, 0.45));
    z-index: 2;
    animation: floatLogo 3s ease-in-out infinite alternate;
}

@keyframes floatLogo {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.preloader-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(12px);
    z-index: 1;
    animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
    100% { transform: rotate(360deg); }
}

.preloader-mantra {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-shadow: 0 3px 15px rgba(212, 175, 55, 0.4);
}

.preloader-welcome {
    font-family: var(--font-title);
    font-size: 34px;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.3;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.preloader-tagline {
    font-family: var(--font-heading);
    font-size: 15px;
    color: rgba(245, 245, 245, 0.75);
    margin-bottom: 40px;
    letter-spacing: 1.5px;
}

.preloader-action-box {
    margin-top: 30px;
}

.enter-btn {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    border: none;
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    padding: 15px 45px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.enter-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
}

.enter-icon {
    font-size: 18px;
    animation: pulseIcon 2s infinite alternate;
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    100% { transform: scale(1.25); }
}

/* Fade Out State */
.welcome-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 576px) {
    .preloader-glass-card {
        padding: 40px 25px;
    }
    .preloader-mantra {
        font-size: 24px;
        letter-spacing: 3px;
    }
    .preloader-welcome {
        font-size: 26px;
    }
    .preloader-tagline {
        font-size: 13px;
        margin-bottom: 30px;
    }
    .enter-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* ========================================================================
   SAMKIT EVENTS - MOBILE VIEWPORT BOUNDARY & HORIZONTAL SCROLL LOCKS
   ======================================================================== */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        position: relative;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Safe layout containment on main wrappers only to prevent vertical scroll bugs */
    .hero-section, 
    .hero-slides-container {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Make sure all images, canvas, and elements are contained */
    img, canvas, iframe, video {
        max-width: 100% !important;
    }
}

/* ========================================================================
   SAMKIT EVENTS - MICRO SMARTPHONE HEADER SCALING (320px - 360px)
   ======================================================================== */
@media (max-width: 360px) {
    /* Tighten navbar container padding and margins */
    .nav-container {
        padding: 10px 10px !important;
    }
    
    .header-nav.scrolled .nav-container {
        padding: 8px 10px !important;
    }
    
    /* Scale down logo image slightly to gain massive width */
    .logo-area .main-logo-img {
        max-height: 40px !important;
    }
    
    .header-nav.scrolled .logo-area .main-logo-img {
        max-height: 35px !important;
    }
    
    /* Make the Call Now button compact so it doesn't overlap */
    .cta-nav-btn {
        padding: 5px 10px !important;
        font-size: 11px !important;
        font-weight: 700 !important;
    }
    
    /* Keep actions compact */
    .nav-actions {
        margin-right: 0 !important;
        gap: 8px !important;
    }
    
    /* Squeeze toggle button slightly */
    .mobile-toggle {
        width: 22px !important;
        height: 14px !important;
    }
    
    .mobile-toggle .bar {
        height: 1.5px !important;
    }
}


