/* 
   SR Vishvaksena Event Management - Visual System 
   Theme: Cinematic Night, Corporate Event, High-End Lighting
*/

:root {
    /* Colors */
    --color-bg-dark: #050810;
    --color-bg-darker: #020305;
    --color-bg-card: rgba(11, 16, 32, 0.4); 
    --color-bg-glass: rgba(11, 16, 32, 0.6);
    
    --color-text-main: #FFFFFF;
    --color-text-muted: #B0C4DE;
    --color-text-accent: #4CC3FF;

    --color-primary: #4CC3FF; /* Electric Blue */
    --color-secondary: #C13CFF; /* Magenta */
    --color-accent-glow: rgba(76, 195, 255, 0.8);
    --color-secondary-glow: rgba(193, 60, 255, 0.6);
    
    --gradient-brand: linear-gradient(135deg, #4CC3FF 0%, #C13CFF 100%);
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
    --font-accent: 'Cinzel', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 5rem;
    --spacing-xl: 10rem;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 90px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
}

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

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Cinematic Background Texture */
    background-image: url('../img/bg-lights.png'); 
    background-repeat: repeat;
    background-size: 800px; /* Seamless pattern size */
    background-attachment: fixed;
}

/* Dark overlay to ensure text readability on the pattern */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(5,8,16,0.5) 0%, rgba(5,8,16,0.85) 100%);
    z-index: -2;
    pointer-events: none;
}

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

ul {
    list-style: none;
}

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

/* Typography & Glows */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -2px;
    background: linear-gradient(to bottom, #fff 0%, #e0e0efff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(76, 195, 255, 0.5); /* Ambient glow */
}

h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
}

p {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
    font-size: 1.05rem;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-padding {
    padding: var(--spacing-lg) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-brand);
    margin: 1rem auto 0;
    box-shadow: 0 0 10px var(--color-secondary);
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-brand);
    color: white;
    box-shadow: 0 0 20px rgba(76, 195, 255, 0.4), inset 0 0 0 1px rgba(255,255,255,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(193, 60, 255, 0.6), inset 0 0 0 1px rgba(255,255,255,0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 10px rgba(76, 195, 255, 0.1);
}

.btn-outline:hover {
    background: rgba(76, 195, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(76, 195, 255, 0.3);
}

.btn-glow {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 150%; height: 150%;
    background: radial-gradient(circle, rgba(76,195,255,0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    z-index: -1;
}

.btn-glow:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px var(--color-accent-glow);
}

.btn-glow:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.btn-block {
    width: 100%;
}

/* Cinematic Glass Card */
.glass-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* Light reflection on top edge */
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Light shimmer on hover */
.glass-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.5s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(76, 195, 255, 0.1);
    border-color: rgba(76, 195, 255, 0.3);
}

.glass-card:hover::after {
    left: 100%;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding-top: 10px;
}

#header.scrolled {
    padding-top: 0;
    background: rgba(5, 8, 16, 0.85); /* Darker Scrolled Bg */
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar {
    background: linear-gradient(90deg, transparent, rgba(76, 195, 255, 0.05), transparent);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    text-align: right;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.top-bar a {
    color: var(--color-primary);
    font-weight: 700;
    margin-left: 0.5rem;
    text-transform: uppercase;
}

.main-nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.3));
}

.nav-links {
    display: flex;
    gap: 2rem;
    background: rgba(255,255,255,0.03);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.nav-links a {
    font-weight: 600;
    position: relative;
    padding: 0.2rem 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.nav-links a:hover, .nav-links a.active {
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--color-primary);
}

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.mobile-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--color-primary);
    box-shadow: 0 0 5px var(--color-primary);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(5, 8, 16, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    text-align: center;
    width: 100%;
    padding: 2rem;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.mobile-menu a:hover {
    color: var(--color-primary);
    text-shadow: 0 0 20px var(--color-primary);
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
    color: var(--color-primary);
}

/* Hero Section */
.first-screen {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../img/hero-lights.png');
    background-size: cover;
    background-position: center bottom;
    z-index: -1;
    animation: zoomHero 20s infinite alternate linear;
}

@keyframes zoomHero {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Strong Overlay for text pop */
.hero-bg .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(5,8,16,0.6) 60%, rgba(5,8,16,1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding-top: var(--header-height);
}

.sub-heading {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px var(--color-secondary-glow);
    border-bottom: 1px solid var(--color-secondary);
    padding-bottom: 0.5rem;
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* Services Grid (Main) - Enforce Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.service-card {
    padding: 0;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.service-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: white;
}

.service-info .price {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(76, 195, 255, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* About Section Layout */
#about {
    background: radial-gradient(circle at 20% 50%, rgba(76, 195, 255, 0.08) 0%, transparent 40%);
}

.about-text-only {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
    border-radius: var(--border-radius-lg);
}

.about-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-row-2col .card {
    padding: 3rem;
    text-align: center;
    border-top: 4px solid var(--color-secondary);
}

.about-row-2col .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(193, 60, 255, 0.4));
}

.about-row-1col {
    margin-bottom: 3rem;
}

.founder-profile {
    display: grid;
    grid-template-columns: 1fr;
    border-left: 5px solid var(--color-primary);
    background: linear-gradient(90deg, rgba(76, 195, 255, 0.05) 0%, transparent 100%);
    padding: 4rem;
}

.profile-header h4 {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.founder-profile blockquote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    color: #fff;
}

.founder-profile cite {
    display: block;
    font-size: 1rem;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 700;
    margin-top: 1rem;
    color: var(--color-text-muted);
}

.about-row-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.about-row-3col .info-card {
    text-align: center;
    padding: 2.5rem;
}

.about-row-3col .icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(76, 195, 255, 0.4);
}

/* Portfolio / Group */
.section-portfolio {
    background: linear-gradient(to bottom, #020305 0%, #0B1020 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.portfolio-card {
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.portfolio-card h3 {
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}

.portfolio-card ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.portfolio-card ul li::before {
    content: '•';
    color: var(--color-secondary);
    font-size: 1.5rem;
    margin-right: 1rem;
    line-height: 0;
}

/* What We Do (Services List) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.feature-card h4 {
    color: var(--color-text-main);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    height: 3rem; /* Align lines */
    display: flex;
    align-items: center;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Consultation Form - Premium Design */
.consultation-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.consultation-form-wrapper {
    padding: 3rem;
    width: 100%;
    background: rgba(5, 8, 16, 0.9);
    border: 1px solid rgba(76, 195, 255, 0.2);
    box-shadow: 0 0 60px rgba(0,0,0,0.6);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

input, select, textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.2rem;
    font-size: 1rem;
    border-radius: 12px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 4px rgba(76, 195, 255, 0.1);
}

/* Checkbox Styling */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    cursor: pointer;
    background: rgba(255,255,255,0.02);
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.checkbox-group label:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
}

input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    accent-color: var(--color-primary);
    background: transparent;
}

.consultation-image img {
    width: 100%;
    filter: drop-shadow(0 0 30px rgba(76, 195, 255, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Gallery - Masonry feel */
.gallery-grid {
    column-count: 4;
    column-gap: 1.5rem;
}

@media (max-width: 1200px) { .gallery-grid { column-count: 3; } }
@media (max-width: 900px) { .gallery-grid { column-count: 2; } }
@media (max-width: 600px) { .gallery-grid { column-count: 1; } }

.gallery-item {
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    break-inside: avoid; /* Prevents item from being split across columns */
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

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

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials */
.testimonial-card {
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    position: relative;
    border-radius: 20px;
    height: 100%; /* Ensure equal height */
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonials-swiper {
    padding-bottom: 4rem; /* Space for pagination */
    padding-left: 1rem;
    padding-right: 1rem;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 8rem;
    position: absolute;
    top: -2rem;
    left: 2rem;
    color: rgba(255,255,255,0.05);
    line-height: 1;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: var(--color-primary);
    font-weight: 700;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    display: inline-block;
}

/* Swiper Custom Navigation */
.swiper-button-next, .swiper-button-prev {
    color: var(--color-primary);
    background: rgba(255,255,255,0.05);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 0 15px rgba(76, 195, 255, 0.4);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.testimonials-action {
    text-align: center;
    margin-top: 2rem;
}

/* FAQ */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    transition: all 0.3s ease;
}

.faq-item.active {
    background: rgba(255,255,255,0.05);
    border-color: var(--color-primary);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: none;
}

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

.faq-item.active .faq-answer {
    max-height: 300px; /* Approximate max height */
    padding-bottom: 1.5rem;
}

/* Footer */
footer {
    background: #020305;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: rgba(255,255,255,0.6);
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(76, 195, 255, 0.4);
}

.footer-socials svg {
    width: 20px;
    height: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .consultation-layout { grid-template-columns: 1fr; }
    .consultation-image { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-row-3col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .nav-links, .nav-actions .btn { display: none; }
    .mobile-toggle { display: flex; }
    .about-row-2col, .portfolio-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    h1 { font-size: 3rem; }
    .section-header h2 { font-size: 2rem; }
}

@media (max-width: 600px) {
    .about-row-3col { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; gap: 2rem; }
}

/* Fancybox Popup Styles */
#formOrder, #reviewFormPopup, #serviceDetailPopup {
    display: none; /* Hidden by default */
}

.popup-content {
    background: linear-gradient(135deg, rgba(8, 12, 24, 0.98), rgba(11, 16, 32, 0.98));
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(76, 195, 255, 0.3);
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    width: 90%;
    max-width: 600px;
    color: white;
}

.popup-content h2 {
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}

.popup-content .close-popup {
    display: none; /* Fancybox has its own close button */
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

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

.float-btn svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.call-btn {
    background: #4CC3FF;
}

.whatsapp-btn {
    background: #25D366;
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .float-btn {
        width: 50px;
        height: 50px;
    }
    .float-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* --- MicroModal Styles --- */
.modal {
    font-family: var(--font-body);
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 8, 16, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal__container {
    padding: 30px;
    max-width: 500px;
    max-height: 100vh;
    border-radius: 4px;
    overflow-y: auto;
    box-sizing: border-box;
}

.glass-modal {
    background: linear-gradient(135deg, rgba(8, 12, 24, 0.95), rgba(5, 8, 16, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(76, 195, 255, 0.25);
    box-shadow: 
        0 0 50px rgba(0, 0, 0, 0.9), 
        0 0 30px rgba(76, 195, 255, 0.1),
        inset 0 0 20px rgba(76, 195, 255, 0.05);
    border-radius: var(--border-radius-lg);
    color: white;
    width: 90%;
    position: relative;
    padding: 3rem;
    animation: modalBorderPulse 4s infinite alternate;
}

@keyframes modalBorderPulse {
    0% { border-color: rgba(76, 195, 255, 0.25); box-shadow: 0 0 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(76, 195, 255, 0.1); }
    100% { border-color: rgba(76, 195, 255, 0.5); box-shadow: 0 0 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(76, 195, 255, 0.2); }
}

.wide-modal {
    max-width: 800px;
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1rem;
}

.modal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.25;
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(76, 195, 255, 0.3);
    box-sizing: border-box;
}

.modal__close {
    background: transparent;
    border: 0;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.modal__close:before { content: "\2715"; font-size: 1.5rem; color: #fff; opacity: 0.7; transition: all 0.3s; }
.modal__close:hover:before { color: var(--color-primary); opacity: 1; text-shadow: 0 0 10px var(--color-primary); }

.modal__content {
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

/* Animations */
@keyframes mmfadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes mmslideIn {
  from { transform: translateY(30px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes mmslideOut {
    from { transform: translateY(0) scale(1); opacity: 1; }
    to { transform: translateY(-30px) scale(0.95); opacity: 0; }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}

/* --- Fancybox Inline Modal Styles --- */
.fancybox-modal {
    display: none;
    font-family: var(--font-body);
    background: linear-gradient(135deg, rgba(8, 12, 24, 0.95), rgba(5, 8, 16, 0.98));
    border: 1px solid rgba(76, 195, 255, 0.25);
    box-shadow:
        0 0 50px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(76, 195, 255, 0.1),
        inset 0 0 20px rgba(76, 195, 255, 0.05);
    border-radius: var(--border-radius-lg);
    color: white;
    width: min(92vw, 640px);
    max-height: 85vh;
    overflow-y: auto;
    padding: 3rem;
    box-sizing: border-box;
}

.fancybox-modal.wide-modal {
    width: min(92vw, 900px);
}

.fancybox__content:not(.fancybox-modal) {
    padding: 0;
    background: transparent;
}

.fancybox__button--close {
    color: #fff;
}

.fancybox__slide {
    padding: 2rem;
}

.fancybox__content.fancybox-modal {
    background: linear-gradient(135deg, rgba(8, 12, 24, 0.95), rgba(5, 8, 16, 0.98));
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow:
        0 0 50px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(76, 195, 255, 0.1),
        inset 0 0 20px rgba(76, 195, 255, 0.05);
}

.fancybox-modal .modal__header {
    margin-bottom: 1.5rem;
}

.fancybox-modal .modal__title {
    text-align: left;
}

.fancybox-modal .consultation-form,
.fancybox-modal .review-form {
    display: grid;
    gap: 1rem;
}

.fancybox-modal .form-group {
    margin-bottom: 0;
}

.fancybox-modal .btn-block {
    margin-top: 0.5rem;
}

.service-detail {
    display: grid;
    gap: 1.5rem;
}

.service-detail-hero img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.service-detail-heading {
    text-align: center;
    margin-top: 1rem;
}

.service-detail-price {
    color: var(--color-primary);
    font-weight: 600;
}

.service-detail-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.service-detail-meta {
    display: grid;
    gap: 1rem;
}

.service-detail-box,
.service-detail-tags {
    padding: 1.25rem;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.service-detail-box h4,
.service-detail-tags h4 {
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.service-detail-box ul {
    display: grid;
    gap: 0.5rem;
}

.service-detail-box li strong {
    color: rgba(255,255,255,0.85);
}

.service-detail-tags .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.service-detail-tags .tag {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(76, 195, 255, 0.35);
    color: var(--color-primary);
    font-size: 0.9rem;
    background: rgba(76, 195, 255, 0.08);
}

.service-detail-cta {
    margin-top: 0.5rem;
}

@media (max-width: 600px) {
    .fancybox__slide {
        padding: 1.25rem;
    }

    .fancybox-modal {
        padding: 2rem 1.5rem;
    }

    .service-detail-hero img {
        height: 220px;
    }
}

/* Services Filter Tabs */
.services-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-text-muted);
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--color-primary);
    color: white;
}

.filter-btn.active {
    background: var(--gradient-brand);
    border-color: transparent;
    color: white;
    box-shadow: 0 0 20px rgba(76, 195, 255, 0.4);
}

/* Service Card Enhancements */
.service-card .service-subtitle {
    font-size: 0.9rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card .service-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.8rem;
}

.service-card .location-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    background: rgba(76, 195, 255, 0.1);
    border: 1px solid rgba(76, 195, 255, 0.2);
    border-radius: 20px;
    color: var(--color-primary);
}

/* Enhanced Service Detail Popup */
.package-tiers {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.package-tier {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.package-tier.silver {
    border-top: 3px solid #c0c0c0;
}

.package-tier.gold {
    border-top: 3px solid #ffd700;
}

.package-tier.platinum {
    border-top: 3px solid var(--color-primary);
    background: linear-gradient(135deg, rgba(76, 195, 255, 0.08) 0%, rgba(193, 60, 255, 0.05) 100%);
}

.package-tier h4 {
    color: white;
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
}

.package-tier .tagline {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.package-tier .package-details {
    display: grid;
    gap: 0.6rem;
}

.package-tier .detail-row {
    display: flex;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.package-tier .detail-label {
    color: var(--color-primary);
    font-weight: 600;
    min-width: 110px;
}

.package-tier .detail-value {
    color: var(--color-text-muted);
}

.package-tier .bonus {
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(193, 60, 255, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--color-secondary);
}

.package-tier .bonus-label {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 0.85rem;
}

/* Service Locations in Detail */
.service-locations-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.service-locations-detail .loc-tag {
    padding: 0.4rem 0.8rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: white;
}

/* Highlights Box */
.highlights-box {
    background: linear-gradient(135deg, rgba(76, 195, 255, 0.08) 0%, rgba(193, 60, 255, 0.05) 100%);
    border: 1px solid rgba(76, 195, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.highlights-box h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.highlights-box ul {
    list-style: none;
}

.highlights-box li {
    padding: 0.5rem 0;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.highlights-box li::before {
    content: '✓';
    color: var(--color-secondary);
    font-weight: 700;
}

/* Inquiry Form Enhancements */
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inquiry-form .form-group {
    margin-bottom: 0.5rem;
}

.inquiry-service-label {
    text-align: center;
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Empty State for Corporate */
.services-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
}

.services-empty-state h3 {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.services-empty-state p {
    max-width: 400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .services-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .package-tier .detail-row {
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .package-tier .detail-label {
        min-width: auto;
    }
}
