/* ==========================================================================
   Sri Durgambika Enterprises - Custom CSS Style Sheet
   ========================================================================== */

/* Design Tokens & Custom Variables */
:root {
    --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Sleek Dark Tech Palette */
    --bg-deep: #080c14;
    --bg-darker: #0d1321;
    --bg-dark: #141e30;
    --bg-card: #1c2a3e;
    --bg-card-hover: #24354f;
    
    /* Accent Colors (Electrical blue, Solar yellow) */
    --color-electric: #3b82f6;
    --color-electric-glow: rgba(59, 130, 246, 0.45);
    --color-solar: #f59e0b;
    --color-solar-glow: rgba(245, 158, 11, 0.45);
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #f3f4f6;
    --text-gray: #9ca3af;
    --text-dark: #4b5563;
    
    /* Borders & Transitions */
    --border-soft: rgba(255, 255, 255, 0.08);
    --border-active: rgba(59, 130, 246, 0.4);
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    
    /* Container Width */
    --container-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
    font-family: inherit;
}

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

/* Helper Utility Classes */
.text-accent { color: var(--color-electric); }
.text-solar { color: var(--color-solar); }
.btn-block { width: 100%; display: flex; justify-content: center; align-items: center; }

/* Section Header Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header .sub-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-electric);
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.section-header .sub-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--color-electric);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-electric);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 18px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-gray);
    font-size: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-electric), #1d4ed8);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}


.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--border-soft);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-white);
    transform: translateY(-3px);
}

/* Top Bar Styling */
.top-bar {
    background-color: var(--bg-deep);
    border-bottom: 1px solid var(--border-soft);
    padding: 10px 0;
    font-size: 13px;
    color: var(--text-gray);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Top Bar alignment fixes */
.top-bar-content .location a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-content .contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.top-bar-content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.top-bar-content a:hover {
    color: var(--text-white);
}

.top-bar-content i {
    width: 14px;
    height: 14px;
    color: var(--color-electric);
}

.top-bar-content .separator {
    margin: 0 4px;
    color: var(--border-soft);
}

.top-bar-content .proprietor i {
    color: var(--color-solar);
}

/* Header & Navigation Styling */
.main-header {
    background-color: rgba(13, 19, 33, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-soft);
    padding: 16px 0;
}

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

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

.logo-icon-svg {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.logo-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.4));
    transition: var(--transition-smooth);
}

.logo:hover .logo-svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 14px rgba(245, 158, 11, 0.8));
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--color-electric), var(--color-solar));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.logo-icon i {
    color: var(--text-white);
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.6));
}

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

.brand-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.brand-sub {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    color: var(--color-solar);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 32px;
}

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

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

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

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

.btn-whatsapp-header {
    background: #128c7e;
    box-shadow: 0 4px 10px rgba(18, 140, 126, 0.3);
}

.btn-whatsapp-header:hover {
    background: #075e54;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(18, 140, 126, 0.5);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-white);
    cursor: pointer;
}

/* Hero Section Styling */
.hero-section {
    position: relative;
    padding: 100px 0 120px 0;
    overflow: hidden;
    background-image: linear-gradient(rgba(8, 12, 20, 0.86), rgba(8, 12, 20, 0.92)), url('assets/hero_banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, var(--color-electric-glow) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content .badge {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--color-electric);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-electric);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--color-electric);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px var(--color-electric); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 850;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

#heroTitleRotate {
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

#heroTitleRotate.fade-out {
    opacity: 0;
    transform: translateY(-8px);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
}

.meta-item i {
    width: 20px;
    height: 20px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Hero Media & Glowing Image */
.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    padding: 10px;
    width: 100%;
    max-width: 460px;
}

.hero-img {
    width: 100%;
    height: 480px;
    border-radius: 16px;
    z-index: 2;
    position: relative;
    object-fit: cover;
    box-shadow: var(--box-shadow);
}

.glowing-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, var(--color-electric), var(--color-solar));
    padding: 2px;
    z-index: 0;
    opacity: 0.7;
    filter: blur(1px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.floating-badge {
    position: absolute;
    background-color: rgba(20, 30, 48, 0.95);
    border: 1px solid var(--border-soft);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.floating-badge i {
    color: var(--color-solar);
    width: 24px;
    height: 24px;
    background-color: rgba(245, 158, 11, 0.15);
    padding: 4px;
    border-radius: 8px;
}

.floating-badge h4 {
    font-size: 14px;
    color: var(--text-white);
    margin-bottom: 2px;
}

.floating-badge p {
    font-size: 11px;
    color: var(--text-gray);
}

.badge-top {
    top: 40px;
    left: -30px;
    animation: floatingEffect 4s ease-in-out infinite;
}

.badge-bottom {
    bottom: 40px;
    right: -25px;
    animation: floatingEffect 4s ease-in-out infinite 2s;
}

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

/* Stats Section Styling */
.stats-section {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    padding: 40px 0;
}

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

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    color: var(--color-electric);
    width: 24px;
    height: 24px;
}

.stat-card:nth-child(even) .stat-icon {
    background-color: rgba(245, 158, 11, 0.1);
}
.stat-card:nth-child(even) .stat-icon i {
    color: var(--color-solar);
}

.stat-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.stat-info p {
    font-size: 13px;
    color: var(--text-gray);
}

/* Services Section Styling */
.services-section {
    padding: 100px 0;
}

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

.service-card {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-soft);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-image-holder {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-icon-badge {
    position: absolute;
    bottom: -20px;
    right: 24px;
    width: 50px;
    height: 50px;
    background-color: var(--color-electric);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    z-index: 10;
    border: 3px solid var(--bg-dark);
}

.service-icon-badge i {
    color: var(--text-white);
    width: 22px;
    height: 22px;
}

.service-card:nth-child(2) .service-icon-badge {
    background-color: var(--color-solar);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.service-card:nth-child(3) .service-icon-badge {
    background-color: #10b981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.service-card:nth-child(4) .service-icon-badge {
    background-color: #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.service-card:nth-child(5) .service-icon-badge {
    background-color: #f43f5e;
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4);
}

.service-info {
    padding: 35px 24px 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.service-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.service-features li i {
    width: 14px;
    height: 14px;
    color: var(--color-electric);
}

.service-card:nth-child(2) .service-features li i { color: var(--color-solar); }
.service-card:nth-child(3) .service-features li i { color: #10b981; }
.service-card:nth-child(4) .service-features li i { color: #8b5cf6; }
.service-card:nth-child(5) .service-features li i { color: #f43f5e; }

.service-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
}

.service-link i {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Service Card Hover Actions */
.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-active);
    box-shadow: var(--box-shadow);
    background-color: var(--bg-card-hover);
}

.service-card:hover .service-image-holder img {
    transform: scale(1.08);
}

/* Highlighted Shop Card inside grid */
.service-card.Highlighted-card {
    background: linear-gradient(135deg, var(--bg-dark), #1d170b);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.service-card.Highlighted-card .service-icon-badge.shop-badge {
    background-color: var(--color-solar);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    border: 3px solid var(--bg-dark);
}

.service-card.Highlighted-card .card-badge {
    background-color: rgba(245, 158, 11, 0.15);
    color: var(--color-solar);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.service-card.Highlighted-card:hover {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.25);
    background: linear-gradient(135deg, var(--bg-card-hover), #291e0a);
}

.service-card.Highlighted-card .service-features li i {
    color: var(--color-solar);
}

.service-card.Highlighted-card .service-link {
    color: var(--color-solar);
}

/* ==========================================================================
   Shop & Catalog Section Styles
   ========================================================================== */
.shop-section {
    position: relative;
    padding: 100px 0;
    background-color: #080c14;
    overflow: hidden;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.shop-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.filter-btn {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-gray);
    border: 1px solid var(--border-soft);
    padding: 10px 22px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.filter-btn.active {
    background: linear-gradient(135deg, var(--color-electric), #1d4ed8);
    color: var(--text-white);
    border-color: var(--color-electric);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 10;
}

.product-card {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-soft);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-img-wrapper {
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(8, 12, 20, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
}

.product-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.product-content p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 18px;
    flex-grow: 1;
}

.product-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.brand-tag {
    font-size: 10px;
    font-weight: 700;
    background-color: rgba(59, 130, 246, 0.08);
    color: var(--color-electric);
    border: 1px solid rgba(59, 130, 246, 0.15);
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-active);
    box-shadow: var(--box-shadow);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.06);
}

/* ==========================================================================
   Gallery Section Styles
   ========================================================================== */
.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-soft);
    position: relative;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.gallery-filter-btn {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-gray);
    border: 1px solid var(--border-soft);
    padding: 10px 22px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.gallery-filter-btn.active {
    background: linear-gradient(135deg, var(--color-electric), #1d4ed8);
    color: var(--text-white);
    border-color: var(--color-electric);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 10;
}

.gallery-item {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-soft);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-img-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(8, 12, 20, 0.9) 0%, rgba(8, 12, 20, 0.2) 60%, transparent 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 24px;
    transition: var(--transition-fast);
}

.gallery-zoom-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(59, 130, 246, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    transform: scale(0.8);
    transition: var(--transition-fast);
}

.gallery-zoom-icon i {
    color: var(--text-white);
    width: 20px;
    height: 20px;
}

.gallery-item-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--border-active);
    box-shadow: var(--box-shadow);
}

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

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

.gallery-item:hover .gallery-zoom-icon {
    transform: scale(1);
}

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

/* Lightbox Modal Styles */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(8, 12, 20, 0.95);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 85%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-soft);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    animation: zoomEffect 0.3s ease-out;
}

@keyframes zoomEffect {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-caption {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-top: 15px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-gray);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 1001;
}

.lightbox-close:hover {
    color: var(--text-white);
    transform: scale(1.1);
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -30px;
    color: var(--text-gray);
    font-weight: bold;
    font-size: 30px;
    transition: var(--transition-fast);
    user-select: none;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-soft);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: rgba(59, 130, 246, 0.2);
    color: var(--text-white);
    border-color: var(--color-electric);
}

@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-top: -22.5px;
    }
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }
    .lightbox-close { top: 20px; right: 20px; }
}

/* About Section Styling */
.about-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-soft);
}

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

.about-image-wrapper {
    position: relative;
}

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

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-dark));
    border: 2px solid var(--border-active);
    padding: 24px 30px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    max-width: 280px;
}

.about-experience .years {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--color-solar);
    line-height: 1;
}

.about-experience .exp-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-white);
}

.about-info-wrapper .sub-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-solar);
    display: inline-block;
    margin-bottom: 12px;
}

.about-info-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-info-wrapper p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 16px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    gap: 16px;
    background-color: var(--bg-darker);
    padding: 16px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-soft);
}

.value-icon {
    color: var(--color-electric);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.value-item h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.value-item p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

/* Contact Section Styling */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-soft);
}

.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-sidebar .sub-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.contact-sidebar h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-sidebar p {
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.contact-item .icon-holder {
    width: 46px;
    height: 46px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.contact-item .icon-holder i {
    color: var(--color-electric);
    width: 20px;
    height: 20px;
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.contact-item a:hover {
    color: var(--text-white);
}

.contact-item a.map-link {
    transition: var(--transition-fast);
}

.contact-item a.map-link:hover {
    color: var(--color-electric);
    text-decoration: underline;
}

.contact-map {
    margin-top: 30px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
}

.contact-map iframe {
    display: block;
    width: 100%;
    filter: grayscale(0.8) invert(0.9) contrast(1.2);
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.contact-map:hover iframe {
    filter: none;
    opacity: 1;
}

/* Booking Form Styling */
.contact-form-wrapper {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-soft);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.form-header p {
    font-size: 13px;
    color: var(--text-gray);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    width: 14px;
    height: 14px;
    color: var(--color-electric);
}

.form-group input, .form-group select, .form-group textarea {
    background-color: var(--bg-darker);
    border: 1px solid var(--border-soft);
    border-radius: var(--border-radius);
    padding: 14px 16px;
    color: var(--text-white);
    font-size: 14px;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-electric);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.form-group select option {
    background-color: var(--bg-dark);
}

.btn-submit {
    padding: 16px;
    background: #128c7e;
    box-shadow: 0 4px 15px rgba(18, 140, 126, 0.3);
}

.btn-submit:hover {
    background: #075e54;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.5);
}

/* Footer Styling */
.main-footer {
    background-color: var(--bg-deep);
    border-top: 1px solid var(--border-soft);
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

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

.footer-brand p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 24px;
    max-width: 320px;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    background-color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-soft);
}

.social-links a i {
    width: 18px;
    height: 18px;
    color: var(--text-gray);
}

.social-links a:hover {
    background-color: var(--color-electric);
    border-color: var(--color-electric);
}

.social-links a:hover i {
    color: var(--text-white);
}

.footer-links h3, .footer-contact h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-electric);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul a {
    font-size: 14px;
    color: var(--text-gray);
}

.footer-links ul a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact p i {
    color: var(--color-electric);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact a:hover {
    color: var(--text-white);
}

.copyright {
    margin-top: 40px;
    font-size: 12px;
    color: #4b5563;
    border-top: 1px solid var(--border-soft);
    padding-top: 20px;
}

/* Floating WhatsApp Button Styling */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 99;
    border: 1px solid rgba(255,255,255,0.15);
}

.whatsapp-floating:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.phone-anim {
    animation: phoneShake 1.5s infinite;
}

@keyframes phoneShake {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .hero-container, .about-container, .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-meta {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .about-image-wrapper {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-experience {
        right: 0;
        bottom: -20px;
    }

    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: var(--bg-darker);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 30px;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-soft);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .btn-whatsapp-header {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 38px;
    }
    
    .hero-img {
        height: 380px;
    }
    
    .floating-badge {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .whatsapp-floating span {
        display: none;
    }
    
    .whatsapp-floating {
        padding: 15px;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}
