/* ===================================
   LASER CUT 4U - MODERN WEBSITE STYLES
   Blue Dark Theme with Glass Blur Panels
   =================================== */

/* CSS Variables */
:root {
    /* Color Palette - Deep Blue Theme */
    --color-bg-primary: #0a0e17;
    --color-bg-secondary: #0f1623;
    --color-bg-tertiary: #151e2e;
    
    --color-accent-primary: #3b82f6;
    --color-accent-secondary: #60a5fa;
    --color-accent-glow: #93c5fd;
    --color-neon: #39ff14;
    --color-neon-dim: rgba(57, 255, 20, 0.4);
    --color-neon-subtle: rgba(57, 255, 20, 0.15);
    
    --color-text-primary: #f8fafc;
    --color-text-secondary: #cbd5e1;
    --color-text-muted: #a1a1aa;
    --color-text: #f8fafc;
    --color-text-light: #cbd5e1;
    
   --color-border: rgba(147, 197, 253, 0.1);
    --color-glass-bg: rgba(15, 26, 43, 0.7);
    --color-glass-border: rgba(147, 197, 253, 0.15);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;
    
    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.3);
    
    /* Glass Effect */
    --glass-bg: rgba(15, 26, 43, 0.7);
    --glass-border: rgba(147, 197, 253, 0.15);
    --glass-blur: blur(20px);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Border radius */
    --border-radius: 16px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-secondary);
}

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

a:hover {
    color: var(--color-accent-glow);
}

/* Glass Effect Class */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-bottom: 2px solid var(--color-neon-dim);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5), 0 0 15px var(--color-neon-subtle);
}

.btn-secondary {
    background: transparent;
    color: var(--color-accent-secondary);
    border: 2px solid var(--color-accent-primary);
    border-bottom: 2px solid var(--color-neon-dim);
}

.btn-secondary:hover {
    background: var(--color-accent-primary);
    color: white;
    box-shadow: 0 0 15px var(--color-neon-subtle);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: var(--font-size-lg);
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    transition: transform var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
    transform: translateY(0);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar.scrolled {
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--color-neon-dim), var(--shadow-md);
    border-bottom: 1px solid var(--color-neon-subtle);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    order: 1;
}

.nav-contact {
    order: 2;
}

.nav-menu {
    order: 3;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--color-neon-subtle);
    transition: all var(--transition-fast);
}

.nav-contact-item:hover {
    color: var(--color-accent-secondary);
    border-color: var(--color-neon-dim);
    background: rgba(57, 255, 20, 0.05);
    box-shadow: 0 0 10px var(--color-neon-subtle);
}

.nav-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--color-neon);
}

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

.logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.1)) drop-shadow(0 0 2px rgba(59, 130, 246, 0.35));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-link {
    color: var(--color-text-secondary);
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-neon);
    transition: width var(--transition-base);
    box-shadow: 0 0 6px var(--color-neon-dim);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-accent-glow);
}

.nav-link.active {
    color: var(--color-text-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition-fast);
    box-shadow: 0 0 4px var(--color-neon-dim);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 1080px;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
    contain: layout;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    aspect-ratio: 16 / 9;
}

/* Dark gradient overlay for text readability */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 23, 0.85) 0%, rgba(10, 14, 23, 0.7) 100%);
    z-index: 1;
}

/* Laser beam effect overlay */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.25) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(57, 255, 20, 0.03) 0%, transparent 50%);
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-title {
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    color: #f8fafc;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: #cbd5e1;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: #f8fafc;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
.section {
    padding: var(--spacing-xxl) 0;
}

.materials.section {
    background: rgba(11, 0, 112, 0.05);
    border-top: 1px solid rgba(11, 0, 112, 0.2);
    border-bottom: 1px solid rgba(11, 0, 112, 0.2);
}

.portfolio.section {
    background: rgba(11, 0, 112, 0.08);
    border-top: 1px solid rgba(11, 0, 112, 0.25);
    border-bottom: 1px solid rgba(11, 0, 112, 0.25);
    contain: layout;
}

.testimonials.section {
    background: rgba(11, 0, 112, 0.05);
    border-top: 1px solid rgba(11, 0, 112, 0.2);
    border-bottom: 1px solid rgba(11, 0, 112, 0.2);
}

.about.section {
    background: rgba(11, 0, 112, 0.05);
    border-top: 1px solid rgba(11, 0, 112, 0.2);
    border-bottom: 1px solid rgba(11, 0, 112, 0.2);
}

.rates.section {
    background: rgba(11, 0, 112, 0.05);
    border-top: 1px solid rgba(11, 0, 112, 0.2);
    border-bottom: 1px solid rgba(11, 0, 112, 0.2);
}

.contact.section {
    background: rgba(11, 0, 112, 0.05);
    border-top: 1px solid rgba(11, 0, 112, 0.2);
    border-bottom: 1px solid rgba(11, 0, 112, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--color-neon), var(--color-neon-dim), transparent);
    margin-top: var(--spacing-sm);
}

.nav-flash::after {
    animation: neon-flash 2s ease-in-out 1 !important;
}

.nav-flash {
    animation: neon-flash-glow 2s ease-in-out 1 !important;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    padding: var(--spacing-lg);
    transform: translateY(40px);
    opacity: 0;
    border: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-neon-subtle);
    transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow), 0 0 20px var(--color-neon-subtle);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--color-neon-subtle);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
}

.service-card > p {
    margin-bottom: var(--spacing-md);
}

/* Materials Section */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.material-category {
    padding: var(--spacing-lg);
    transform: translateY(40px);
    opacity: 0;
    border: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-neon-subtle);
    transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.material-category.visible {
    transform: translateY(0);
    opacity: 1;
}

.material-category h3 {
    margin-bottom: var(--spacing-md);
    color: var(--color-accent-glow);
}

.material-list,
.material-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.material-tag {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-accent-secondary);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
    white-space: nowrap;
}

.materials-warning {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-xl);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-bottom: 1px solid var(--color-neon-subtle);
}

.materials-warning h3 {
    margin-bottom: var(--spacing-md);
    color: #fca8a8;
}

.warning-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.warning-item {
    padding: var(--spacing-md);
    background: rgba(239, 68, 68, 0.05);
    border-left: 3px solid #fca8a8;
    border-radius: 0 8px 8px 0;
   color: var(--color-text-primary);
    line-height: 1.6;
}

.warning-item strong {
    color: #fca8a8;
}

.warning-item.amber {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.05);
}

.warning-item.amber strong {
    color: #f59e0b;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    padding: var(--spacing-xl);
    transform: translateY(40px);
    opacity: 0;
    border: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-neon-subtle);
    transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.2);
}

.testimonial-card blockquote {
    font-size: var(--font-size-lg);
    font-style: italic;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.testimonial-author cite {
    color: var(--color-accent-secondary);
    font-weight: 600;
    font-style: normal;
}

/* About Section */
/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.contact-info-card {
    padding: var(--spacing-lg);
    border: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-neon-subtle);
    animation: flash-three-glow 0.8s ease-in-out 1;
}

.contact-info h3,
.contact-map h3 {
    margin-bottom: var(--spacing-lg);
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes laser-pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 5px var(--color-neon-subtle), inset 0 0 5px var(--color-neon-subtle);
    }
    50% {
        box-shadow: 0 0 15px var(--color-neon-dim), inset 0 0 15px var(--color-neon-dim);
    }
}

@keyframes neon-flash {
    0% { opacity: 0.15; }
    50% { opacity: 1; }
    100% { opacity: 0.15; }
}

@keyframes neon-flash-glow {
    0% {
        box-shadow: 0 0 2px var(--color-neon-subtle), inset 0 0 2px var(--color-neon-subtle);
    }
    50% {
        box-shadow: 0 0 25px var(--color-neon-dim), inset 0 0 25px var(--color-neon-dim);
    }
    100% {
        box-shadow: 0 0 2px var(--color-neon-subtle), inset 0 0 2px var(--color-neon-subtle);
    }
}

.animate-fade-in {
    animation: fade-in 0.6s ease forwards;
}

.animate-fade-in-delay {
    animation: fade-in 0.6s ease 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fade-in 0.6s ease 0.4s forwards;
    opacity: 0;
}

.animate-fade-in-delay-3 {
    animation: fade-in 0.6s ease 0.6s forwards;
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: var(--font-size-4xl); }
    h2 { font-size: var(--font-size-3xl); }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 14, 23, 0.98);
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        transform: translateY(-150%);
        transition: transform var(--transition-base);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-contact {
        display: none;
    }
    
    .hero-stats {
        gap: var(--spacing-lg);
    }
    
   .stat-number {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-xxl: 3rem;
    }
    
    h1 { font-size: var(--font-size-3xl); }
    h2 { font-size: var(--font-size-2xl); }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
    }
}

/* Print Styles */
@media print {
  .navbar,
    .hero-cta {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .glass {
        background: white;
        border: 1px solid #ddd;
    }
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: rgba(10, 14, 23, 0.95);
    color: var(--color-text-primary);
    padding: 1rem 1.5rem;
    border-radius: 999px;
    box-shadow: var(--shadow-glow), 0 0 20px var(--color-neon-subtle);
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
    border: 1px solid var(--color-neon-dim);
    z-index: 2000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Prices Section */
.prices.section {
    background: rgba(11, 0, 112, 0.05);
    border-top: 1px solid rgba(11, 0, 112, 0.2);
    border-bottom: 1px solid rgba(11, 0, 112, 0.2);
}

.prices-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.prices-note a {
    color: #93c5fd;
    text-decoration: underline;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--spacing-lg);
}

.price-card {
    padding: var(--spacing-xl);
    transform: translateY(40px);
    opacity: 0;
    border: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-neon-subtle);
    transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.price-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.price-card-title {
    font-size: var(--font-size-xl);
    color: var(--color-accent-glow);
    margin-bottom: var(--spacing-sm);
}

.price-card-size {
    font-size: var(--font-size-sm);
    font-weight: 400;
    color: var(--color-text-muted);
}

.price-card-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table thead th {
    text-align: left;
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--color-border);
}

.price-table thead th:first-child {
    width: 45%;
}

.price-table tbody td {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(147, 197, 253, 0.05);
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table tbody td:last-child {
    text-align: right;
    color: var(--color-accent-secondary);
    font-weight: 600;
}

.price-table tbody td:nth-child(2) {
    text-align: right;
}

/* ===================================
    SERVICE RATES SECTION
    =================================== */

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.rate-card {
    padding: var(--spacing-xl);
    text-align: center;
    border: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-neon-subtle);
    transform: translateY(40px);
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rate-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.rate-card-title {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.rate-price {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-accent-secondary);
}

.rate-unit {
    font-size: var(--font-size-sm);
    font-weight: 400;
    color: var(--color-text-muted);
}

.rate-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
    color: white;
    border: 1px solid var(--color-neon-subtle);
}

/* ===================================
    ABOUT SECTION
    =================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.about-text {
    padding: var(--spacing-xl);
    border: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-neon-subtle);
}

.about-text p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.about-text p:last-child {
    margin-bottom: var(--spacing-lg);
}

.about-features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
}

.about-features-list li {
    padding-left: 1.75rem;
    position: relative;
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.about-features-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 8px;
    height: 8px;
    background: var(--color-neon);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--color-neon-dim);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.stat-card {
    padding: var(--spacing-lg);
    border: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-neon-subtle);
    text-align: center;
    transition: transform var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    color: var(--color-accent-secondary);
}

.stat-card-label {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.stat-card-value {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-accent-secondary);
    margin-bottom: 2px;
}

.stat-card-detail {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

/* ===================================
    CONTACT SECTION
    =================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.contact-card {
    padding: var(--spacing-lg);
    border: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-neon-subtle);
    transition: transform var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    color: var(--color-accent-secondary);
    margin-bottom: var(--spacing-sm);
}

.contact-card-title {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-card-content a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.contact-card-content a:hover {
    color: var(--color-accent-secondary);
}

.contact-card-content address {
    font-style: normal;
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.contact-note {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-top: 4px;
    font-style: italic;
}

.contact-map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

/* ===================================
    FOOTER
    =================================== */

.footer {
    padding: var(--spacing-xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-col-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xl);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-md);
}

.footer-logo-img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.3));
}

.footer-brand-name {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text-primary);
}

.footer-tagline {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.footer-company {
    color: var(--color-text-muted);
    font-size: var(--font-size-xs);
    line-height: 1.5;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent-secondary);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-contact-list li {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact-list li svg {
    flex-shrink: 0;
    color: var(--color-accent-secondary);
}

.footer-contact-list a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact-list a:hover {
    color: var(--color-accent-secondary);
}

.footer-bottom {
    text-align: center;
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

/* ===================================
    CAROUSEL STYLES (Swiper.js)
    =================================== */

.portfolio-swiper {
    position: relative;
    width: 100%;
    margin-bottom: var(--spacing-lg);
    min-height: 350px;
}

.portfolio-divider {
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.portfolio-divider span {
    background: var(--color-bg-primary);
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.portfolio-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-neon-dim), transparent);
}

.portfolio-swiper .swiper-wrapper {
    align-items: center;
    min-height: 380px;
}

.portfolio-swiper .swiper-slide {
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transition: transform var(--transition-base), opacity var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0f1a;
}

.portfolio-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    border-radius: 16px;
}



/* Swiper Navigation Buttons */
.portfolio-swiper .swiper-button-next,
.portfolio-swiper .swiper-button-prev {
    color: var(--color-accent-secondary);
    width: 50px;
    height: 50px;
    background: rgba(15, 26, 43, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    transition: all var(--transition-base);
    border: 1px solid var(--color-neon-subtle);
}

.portfolio-swiper .swiper-button-next::after,
.portfolio-swiper .swiper-button-prev::after {
    font-size: 24px;
    font-weight: bold;
}

.portfolio-swiper .swiper-button-next:hover,
.portfolio-swiper .swiper-button-prev:hover {
    color: var(--color-accent-glow);
    background: rgba(59, 130, 246, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--color-neon-subtle);
}

.portfolio-swiper .swiper-button-next {
    right: -70px;
}

.portfolio-swiper .swiper-button-prev {
    left: -70px;
}

/* Swiper Pagination */
.portfolio-swiper .swiper-pagination {
    bottom: -40px;
}

.portfolio-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(147, 197, 253, 0.4);
    opacity: 1;
    transition: all var(--transition-base);
}

.portfolio-swiper .swiper-pagination-bullet-active {
    background: var(--color-accent-primary);
    width: 32px;
    border-radius: 6px;
}

/* Coverflow Effect */
.portfolio-swiper {
    --swiper-coverflow-rotate: 15deg;
    --swiper-coverflow-stretch: 0;
    --swiper-coverflow-depth: 300px;
    --swiper-coverflow-modifier: 1;
    --swiper-coverflow-slide-shadows: true;
}

/* Responsive Swiper */
@media (max-width: 1024px) {
    .portfolio-swiper .swiper-button-next {
        right: 10px;
    }
    
    .portfolio-swiper .swiper-button-prev {
        left: 10px;
    }
}

@media (max-width: 768px) {
    .portfolio-swiper {
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .portfolio-swiper .swiper-button-next,
    .portfolio-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .portfolio-swiper .swiper-button-next::after,
    .portfolio-swiper .swiper-button-prev::after {
        font-size: 18px;
    }
}

/* Hide carousel on very small screens */
@media (max-width: 360px) {
    .portfolio-swiper {
        display: none;
    }
}

/* Gallery Section */
.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.gallery-tab {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-light);
    border-radius: 20px;
    cursor: pointer;
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 10px var(--color-neon-subtle);
}

.gallery-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-neon-dim);
    box-shadow: 0 0 15px var(--color-neon-subtle);
}

.gallery-tab.active {
    background: var(--color-accent-secondary);
    border-color: var(--color-neon-dim);
    color: #0f172a;
    font-weight: 600;
    box-shadow: 0 0 20px var(--color-neon-subtle);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: var(--spacing-sm);
    max-height: 80vh;
    overflow-y: auto;
    padding: var(--spacing-sm);
    scroll-behavior: smooth;
    width: 100%;
}

.gallery-grid::-webkit-scrollbar {
    width: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.gallery-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Gallery responsive */
@media (max-width: 1400px) {
    .gallery-grid {
        grid-template-columns: repeat(7, 1fr);
    }
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        max-height: 60vh;
    }
    
    .gallery-tabs {
        gap: var(--spacing-xs);
    }
    
    .gallery-tab {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        max-height: 50vh;
    }
}

/* Inline style replacements */
.prices-subtitle {
    font-size: 0.6em;
    opacity: 0.7;
}

.prices-note-centered {
    text-align: center;
    margin-top: 2rem;
}

.map-embed {
    border: 0;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Responsive - About, Rates, Contact, Footer */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
    .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-cards {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    .footer-col:first-child {
        grid-column: auto;
    }
    .rates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    .rates-grid {
        grid-template-columns: 1fr;
    }
}

