* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
    padding: 20px;
    margin: 0;
}

/* ========================================
   FIXED HEADER STRUCTURE - OUTSIDE HERO
   ======================================== */

/* Header container - SEPARATE from hero */
.header-container {
    position: relative;
    z-index: 1000;
    height: 100px; /* Fixed header height */
}

/* Navbar - now independent of hero */
.navbar {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 80px;
    min-height: 80px;
}

/* Sticky navbar - will stick to top when scrolling */
.navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 15px 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.4s ease-out forwards;
    height: 70px;
    min-height: 70px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hero container - now SEPARATE from navbar */
.hero-container {
    height: calc(100vh - 40px);
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transform: translateY(0);
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: -80px; /* Overlap slightly with header */
    padding-top: 80px; /* Add padding to account for overlap */
}

.hero-container:hover {
    transform: scale(1.01);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
}

/* Background image implementation */
.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('lgictech.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: all 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.hero-container.image-loaded::before {
    opacity: 1;
    transform: scale(1);
}

.hero-container:hover::before {
    transform: scale(1.02);
}

.hero-container:hover .hero-bg {
    background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.05) 100%);
}

.hero-container:hover .hero-content {
    transform: translateY(-5px);
}

/* Background overlay */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
    transition: all 0.4s ease;
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 100%;
    overflow: hidden;
    z-index: 1001;
}

.logo-img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.navbar.scrolled .logo-img {
    max-height: 50px;
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

/* Navigation container for desktop */
.nav-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Navigation links */
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-links a.active::after {
    display: none;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: 1002;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Links */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    list-style: none;
    transform: translateY(50px);
    transition: transform 0.4s ease;
}

.mobile-menu-overlay.active .mobile-nav-links {
    transform: translateY(0);
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    padding: 15px 30px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
    min-width: 200px;
}

.mobile-nav-links li:nth-child(1) a { animation-delay: 0.1s; }
.mobile-nav-links li:nth-child(2) a { animation-delay: 0.2s; }
.mobile-nav-links li:nth-child(3) a { animation-delay: 0.3s; }
.mobile-nav-links li:nth-child(4) a { animation-delay: 0.4s; }
.mobile-nav-links li:nth-child(5) a { animation-delay: 0.5s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.mobile-nav-links a.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Mobile Book Call Button */
.mobile-book-call {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-book-call .book-call-btn {
    display: inline-block;
    font-size: 16px;
    padding: 18px 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease 0.6s forwards;
}

/* Book call button */
.book-call-btn {
    background: #6c757d;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
    white-space: nowrap;
}

.book-call-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
    background: #5a6268;
}

.navbar.scrolled .book-call-btn {
    padding: 12px 24px;
    font-size: 12px;
}

/* Add padding to body when navbar is fixed */
body.navbar-fixed {
    padding-top: 70px;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 50;
    max-width: 700px;
    padding-left: 50px;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.4s ease;
    animation: heroSlideIn 1.2s ease-out 1s forwards;
}

@keyframes heroSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    color: white;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(30px);
    animation: titleSlideUp 1s ease-out 1.4s forwards;
}

@keyframes titleSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-section {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: categorySlideUp 1s ease-out 1.8s forwards;
}

@keyframes categorySlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.specialization-text {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: white;
    font-weight: 400;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.specialization-intro {
    color: rgba(255, 255, 255, 0.9);
}

.rotating-words {
    position: relative;
    display: inline-block;
    min-width: 300px;
    height: 1.8em;
    overflow: visible;
}

.word {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    color: #f8f9fa;
    font-weight: 700;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 1px;
    width: 0;
    border-right: 3px solid #f8f9fa;
}

.word.active {
    opacity: 1;
    animation: typeWriter 2s steps(25) forwards, blink 0.75s step-end infinite;
}

.word.exit {
    opacity: 0;
    animation: deleteText 0.8s steps(25) forwards;
}

.word.typing-done {
    border-right: none;
    animation: none;
}

@keyframes typeWriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes deleteText {
    from { width: 100%; }
    to { width: 0; }
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: #f8f9fa; }
}

/* What We Offer Section */
.what-we-offer {
    background: #000;
    padding: 100px 20px;
    margin-top: 40px;
}

.offer-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.offer-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.offer-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.offer-title {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.offer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.photography-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.grid-content {
    padding: 0 40px;
}

.grid-images {
    position: relative;
    height: 600px;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease-out;
}

.grid-images.visible {
    opacity: 1;
    transform: translateX(0);
}

.photo-card {
    position: absolute;
    width: 280px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.photo-card.visible {
    opacity: 1;
}

.photo-card:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 4;
    transform: rotate(-5deg);
    transition-delay: 0.2s;
}

.photo-card:nth-child(1).visible {
    transform: rotate(0deg);
}

.photo-card:nth-child(2) {
    top: 120px;
    right: 20px;
    z-index: 3;
    transform: rotate(8deg);
    transition-delay: 0.4s;
}

.photo-card:nth-child(2).visible {
    transform: rotate(3deg);
}

.photo-card:nth-child(3) {
    bottom: 60px;
    left: 60px;
    z-index: 2;
    transform: rotate(-8deg);
    transition-delay: 0.6s;
}

.photo-card:nth-child(3).visible {
    transform: rotate(-2deg);
}

.photo-card:hover {
    transform: translateY(-15px) scale(1.05) rotate(0deg) !important;
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-card:hover .card-overlay {
    opacity: 1;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-card:hover .card-content {
    transform: translateY(0);
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-category {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-section {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease-out;
}

.content-section.visible {
    opacity: 1;
    transform: translateX(0);
}

.section-title {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.section-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 15px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease-out;
}

.content-section.visible .feature-item:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.content-section.visible .feature-item:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.content-section.visible .feature-item:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.5s;
}

.content-section.visible .feature-item:nth-child(4) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}

.feature-item::before {
    content: '→';
    color: #667eea;
    margin-right: 15px;
    font-weight: bold;
    font-size: 14px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: #6c757d;
    color: white;
    padding: 18px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.content-section.visible .cta-button {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 40px rgba(108, 117, 125, 0.5);
    background: #5a6268;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.05);
    transition-duration: 0.1s;
}

.cta-button::after {
    content: '↗';
    margin-left: 10px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.cta-button:hover::after {
    transform: translateX(3px) translateY(-3px);
}

/* Category Sections */
.category-sections {
    margin-top: 60px;
}

.category-grid {
    margin-bottom: 100px;
}

.category-grid:nth-child(even) .photography-grid {
    grid-template-columns: 1fr 1fr;
}

.category-grid:nth-child(even) .grid-content {
    order: 2;
}

.category-grid:nth-child(even) .grid-images {
    order: 1;
}

.category-grid:nth-child(even) .content-section {
    transform: translateX(40px);
}

.category-grid:nth-child(even) .content-section.visible {
    transform: translateX(0);
}

/* Updated Why Choose Us Section - No Container, RGB Colors */
.why-choose-us {
    position: relative;
    background: rgb(20, 20, 25);
    padding: 140px 20px;
    overflow: hidden;
    margin: 40px 0;
}

/* Subtle animated background elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    animation: floatSilver 12s ease-in-out infinite;
    pointer-events: none;
}

.element-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

.element-2 {
    width: 250px;
    height: 250px;
    bottom: -125px;
    left: -75px;
    animation-delay: 6s;
}

.element-3 {
    width: 180px;
    height: 180px;
    top: 40%;
    left: 60%;
    animation-delay: 3s;
}

@keyframes floatSilver {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-40px) scale(1.1);
        opacity: 0.6;
    }
}

/* Minimal grid lines */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 25s linear infinite;
    pointer-events: none;
}

@keyframes gridShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Header with silver styling */
.why-header {
    text-align: center;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, rgb(255, 255, 255), rgb(233, 236, 239), rgb(173, 181, 189));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    position: relative;
}

.why-subtitle::before,
.why-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(135deg, transparent, rgb(255, 255, 255), transparent);
}

.why-subtitle::before {
    left: -80px;
}

.why-subtitle::after {
    right: -80px;
}

.why-title {
    color: rgb(255, 255, 255);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(248, 249, 250) 30%, rgb(233, 236, 239) 70%, rgb(173, 181, 189) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.why-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 20px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Cards layout - 2x2 grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Card reveal animation setup */
.advantage-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px 40px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    
    /* Initial hidden state for dramatic reveal */
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    visibility: hidden;
}

/* Revealed state */
.advantage-card.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

/* Staggered reveal delays */
.advantage-card:nth-child(1).revealed { transition-delay: 0.2s; }
.advantage-card:nth-child(2).revealed { transition-delay: 0.5s; }
.advantage-card:nth-child(3).revealed { transition-delay: 0.8s; }
.advantage-card:nth-child(4).revealed { transition-delay: 1.1s; }

/* Silver icon styling */
.advantage-icon {
    width: 100px;
    height: 100px;
    margin: 0 0 30px 0;
    background: linear-gradient(135deg, rgb(173, 181, 189), rgb(233, 236, 239), rgb(255, 255, 255));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Icon shine effect */
.advantage-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.8s ease;
}

.advantage-card:hover .advantage-icon::before {
    transform: rotate(45deg) translateX(100%);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.advantage-icon svg {
    width: 50px;
    height: 50px;
    color: rgb(0, 0, 0);
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Content styling */
.advantage-content h3 {
    color: rgb(255, 255, 255);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(248, 249, 250) 50%, rgb(233, 236, 239) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-content h3 {
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.advantage-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.advantage-card:hover .advantage-content p {
    color: rgba(255, 255, 255, 0.85);
}

/* Feature highlights with silver bullets */
.feature-highlights {
    list-style: none;
    padding: 0;
}

.feature-highlights li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
    font-weight: 500;
}

/* Reveal feature items after card appears */
.advantage-card.revealed .feature-highlights li:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1.5s;
}

.advantage-card.revealed .feature-highlights li:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1.7s;
}

.advantage-card.revealed .feature-highlights li:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1.9s;
}

.feature-highlights li::before {
    content: '●';
    color: rgb(173, 181, 189);
    margin-right: 12px;
    font-size: 8px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* CTA Section for Why Choose Us */
.why-cta {
    text-align: center;
    margin-top: 80px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.why-cta.visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.5s;
}

.why-cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgb(0, 0, 0), rgb(26, 26, 26));
    color: rgb(255, 255, 255);
    padding: 20px 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Button shine effect */
.why-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.why-cta-button:hover::before {
    left: 100%;
}

.why-cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(135deg, rgb(26, 26, 26), rgb(42, 42, 42));
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: rgb(255, 255, 255);
}

.why-cta-button::after {
    content: '→';
    margin-left: 15px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.why-cta-button:hover::after {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials-section {
    background: rgb(0, 0, 0);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.testimonials-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-subtitle {
    color: rgb(108, 117, 125);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
}

.testimonials-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(108, 117, 125), rgb(90, 98, 104));
    border-radius: 2px;
}

.testimonials-title {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.testimonials-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:nth-child(1).visible {
    transition-delay: 0.1s;
}

.testimonial-card:nth-child(2).visible {
    transition-delay: 0.2s;
}

.testimonial-card:nth-child(3).visible {
    transition-delay: 0.3s;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
    color: white;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    font-style: italic;
}

.testimonial-quote::before {
    content: '"';
    font-size: 60px;
    color: rgb(108, 117, 125);
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(108, 117, 125), rgb(90, 98, 104));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.author-info h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.author-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: rgb(0, 0, 0);
    padding: 120px 20px;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.faq-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-subtitle {
    color: rgb(108, 117, 125);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
}

.faq-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(108, 117, 125), rgb(90, 98, 104));
    border-radius: 2px;
}

.faq-title {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.faq-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.faq-content {
    margin-top: 60px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:nth-child(1).visible {
    transition-delay: 0.1s;
}

.faq-item:nth-child(2).visible {
    transition-delay: 0.2s;
}

.faq-item:nth-child(3).visible {
    transition-delay: 0.3s;
}

.faq-item:nth-child(4).visible {
    transition-delay: 0.4s;
}

.faq-item:nth-child(5).visible {
    transition-delay: 0.5s;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    margin-right: 20px;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgb(108, 117, 125), rgb(90, 98, 104));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.faq-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover .faq-toggle::before {
    opacity: 1;
}

.faq-question:hover .faq-toggle {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.4);
}

.faq-icon {
    color: white;
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.faq-answer p {
    padding: 30px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(135deg, rgb(26, 26, 26), rgb(51, 51, 51));
    margin-top: 40px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating geometric shapes */
.footer-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.footer-shape-1 {
    width: 150px;
    height: 150px;
    top: -75px;
    right: 100px;
    animation-delay: 0s;
}

.footer-shape-2 {
    width: 100px;
    height: 100px;
    bottom: -50px;
    left: 50px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.footer-container {
    position: relative;
    z-index: 10;
    padding: 60px 50px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: white;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.social-link.twitter:hover {
    background: linear-gradient(135deg, rgb(29, 161, 242), rgb(66, 165, 245));
}

.social-link.gmail:hover {
    background: linear-gradient(135deg, #EA4335, #FBBC04);
}

.social-link.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.social-link.youtube:hover {
    background: linear-gradient(135deg, rgb(255, 0, 0), rgb(255, 68, 68));
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(10px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
    font-weight: bold;
}

.footer-links a:hover {
    color: white;
    padding-left: 25px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Animation on scroll */
.footer {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-column {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.footer.visible .footer-column:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.footer.visible .footer-column:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.footer.visible .footer-column:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.footer.visible .footer-column:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.footer-bottom {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.footer.visible .footer-bottom {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 30px;
    }
    
    .navbar {
        padding: 20px 40px;
    }

    .hero-content {
        padding-left: 30px;
        max-width: 600px;
    }

    .rotating-words {
        min-width: 250px;
    }

    .photography-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .grid-content {
        padding: 0 20px;
        order: 1;
    }

    .grid-images {
        order: 2;
        height: 400px;
    }

    .category-grid:nth-child(even) .grid-content {
        order: 1;
    }

    .category-grid:nth-child(even) .grid-images {
        order: 2;
    }

    .photo-card {
        width: 220px;
        height: 160px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-container {
        padding: 50px 40px 30px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-subtitle::before,
    .why-subtitle::after {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .header-container {
        height: 80px;
    }

    .navbar {
        top: 10px;
        left: 10px;
        right: 10px;
        padding: 15px 30px;
        height: 70px;
        min-height: 70px;
    }

    .navbar.scrolled {
        padding: 12px 30px;
        height: 60px;
        min-height: 60px;
    }

    .logo-img {
        max-height: 50px;
    }

    .navbar.scrolled .logo-img {
        max-height: 40px;
    }

    /* Hide desktop navigation on mobile */
    .nav-links {
        display: none;
    }

    .nav-container .book-call-btn {
        display: none;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    .hero-container {
        height: calc(100vh - 20px);
        border-radius: 16px;
        margin-top: -70px;
        padding-top: 70px;
    }

    .hero-content {
        padding: 0 25px;
        max-width: none;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .what-we-offer {
        padding: 60px 10px;
    }

    .offer-header {
        margin-bottom: 50px;
    }

    .grid-images {
        height: 300px;
    }

    .photo-card {
        width: 180px;
        height: 130px;
    }

    .photo-card:nth-child(2) {
        right: 0;
    }

    .photo-card:nth-child(3) {
        left: 40px;
    }

    .specialization-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .rotating-words {
        min-width: 200px;
    }

    .footer {
        border-radius: 16px;
        margin-top: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        padding: 40px 30px 25px;
    }

    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-about {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .social-links {
        justify-content: center;
        gap: 12px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

    .footer-shape-1 {
        width: 100px;
        height: 100px;
        top: -50px;
        right: 50px;
    }

    .footer-shape-2 {
        width: 80px;
        height: 80px;
        bottom: -40px;
        left: 30px;
    }

    .why-choose-us {
        padding: 100px 20px;
    }

    .why-header {
        margin-bottom: 60px;
    }

    .why-title {
        font-size: 2.5rem;
    }

    .why-description {
        font-size: 18px;
    }

    .advantage-card {
        padding: 40px 30px;
    }

    .advantage-icon {
        width: 80px;
        height: 80px;
    }

    .advantage-icon svg {
        width: 40px;
        height: 40px;
    }

    .advantage-content h3 {
        font-size: 24px;
    }

    .mobile-nav-links a {
        font-size: 20px;
        padding: 12px 25px;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 70px;
    }

    .navbar {
        top: 5px;
        left: 5px;
        right: 5px;
        padding: 12px 20px;
        height: 60px;
        min-height: 60px;
    }

    .navbar.scrolled {
        padding: 10px 20px;
        height: 50px;
        min-height: 50px;
    }

    .logo-img {
        max-height: 40px;
    }

    .navbar.scrolled .logo-img {
        max-height: 35px;
    }

    .hero-container {
        border-radius: 12px;
        margin-top: -60px;
        padding-top: 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .rotating-words {
        min-width: 180px;
    }

    .footer {
        border-radius: 12px;
    }

    .footer-container {
        padding: 30px 20px 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .why-choose-us {
        padding: 80px 15px;
    }

    .advantage-card {
        padding: 30px 25px;
    }

    .why-cta-button {
        padding: 18px 40px;
        font-size: 14px;
    }

    .mobile-nav-links a {
        font-size: 18px;
        padding: 10px 20px;
        min-width: 160px;
    }
}

               /* Services Component Styles - Unique class names with prefix "svc-" */
        
        /* Custom Scrollbar Styles for Webkit browsers (Chrome, Brave, Safari, Edge) */
        .svc-services-section::-webkit-scrollbar {
            width: 12px;
        }

        .svc-services-section::-webkit-scrollbar-track {
            background: #1a1a1a;
            border-radius: 6px;
        }

        .svc-services-section::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #333, #555);
            border-radius: 6px;
            border: 2px solid #1a1a1a;
        }

        .svc-services-section::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #555, #777);
        }

        .svc-services-section::-webkit-scrollbar-thumb:active {
            background: linear-gradient(135deg, #777, #999);
        }

        /* Global scrollbar styles for the entire page when this component is present */
        body:has(.svc-services-section)::-webkit-scrollbar {
            width: 14px;
        }

        body:has(.svc-services-section)::-webkit-scrollbar-track {
            background: #0a0a0a;
            border-radius: 7px;
        }

        body:has(.svc-services-section)::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #2a2a2a, #444);
            border-radius: 7px;
            border: 2px solid #0a0a0a;
        }

        body:has(.svc-services-section)::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #444, #666);
        }

        body:has(.svc-services-section)::-webkit-scrollbar-thumb:active {
            background: linear-gradient(135deg, #666, #888);
        }

        /* Fallback for Firefox */
        .svc-services-section {
            scrollbar-width: thin;
            scrollbar-color: #444 #1a1a1a;
        }

        body:has(.svc-services-section) {
            scrollbar-width: thin;
            scrollbar-color: #444 #0a0a0a;
        }
        .svc-services-section {
            font-family: 'Arial', sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            padding: 60px 40px 80px 40px;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .svc-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .svc-header {
            text-align: center;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .svc-header.svc-animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .svc-header-label {
            background: rgba(255, 255, 255, 0.1);
            color: #888;
            padding: 6px 16px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .svc-header h1 {
            font-size: 3.5rem;
            font-weight: 300;
            color: #ffffff;
            margin: 0;
        }

        .svc-services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 25px;
            max-width: 1000px;
            margin: 0 auto;
            height: 700px;
            position: relative;
        }

        .svc-service-card {
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 20px;
            padding: 35px;
            display: flex;
            flex-direction: column;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            opacity: 0;
            transform: scale(0.8);
        }

        .svc-service-card.svc-animate-in {
            opacity: 1;
            transform: scale(1);
        }

        .svc-service-card.svc-focused {
            transform: scale(1.05);
            border-color: #ffffff;
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
            z-index: 10;
            position: relative;
        }

        .svc-service-card.svc-dimmed {
            opacity: 0.4;
            transform: scale(0.95);
        }

        .svc-service-card:hover {
            transform: translateY(-5px) scale(1.02);
            border-color: #e8e8e8;
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }

        /* Grid positions */
        .svc-service-card.svc-web-dev {
            grid-row: 1;
            grid-column: 1;
        }

        .svc-service-card.svc-maintenance {
            grid-row: 2;
            grid-column: 1;
        }

        .svc-service-card.svc-mobile-dev {
            grid-row: 1;
            grid-column: 2;
        }

        .svc-service-card.svc-ux-design {
            grid-row: 2;
            grid-column: 2;
        }

        .svc-service-image {
            width: 100%;
            height: 180px;
            background: #2a2a2a;
            border-radius: 12px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #333;
            transition: all 0.3s ease;
        }

        .svc-service-card:hover .svc-service-image {
            background: #333;
            border-color: #e8e8e8;
        }

        .svc-service-icon {
            width: 60px;
            height: 60px;
            fill: #888;
            transition: all 0.3s ease;
        }

        .svc-service-card:hover .svc-service-icon {
            fill: #e8e8e8;
            transform: scale(1.1);
        }

        .svc-service-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .svc-service-description {
            color: #aaa;
            line-height: 1.5;
            font-size: 0.9rem;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .svc-service-features {
            margin-top: auto;
        }

        .svc-feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            padding: 0;
        }

        .svc-feature-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #e8e8e8, #ffffff, #f5f5f5);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
        }

        .svc-service-card:hover .svc-feature-icon {
            background: linear-gradient(135deg, #ffffff, #f8f9fa, #e9ecef);
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.5);
        }

        .svc-feature-icon svg {
            width: 16px;
            height: 16px;
            fill: #666;
        }

        .svc-feature-text {
            color: #ccc;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .svc-feature-title {
            font-weight: 600;
            display: block;
            margin-bottom: 3px;
            color: #fff;
        }

        .svc-feature-desc {
            color: #999;
            font-size: 0.8rem;
        }

        /* Floating icon animation styles */
        .svc-floating-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #e8e8e8, #ffffff, #f5f5f5);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .svc-floating-icon svg {
            width: 40px;
            height: 40px;
            fill: #666;
        }

        /* Center rotation animation styles */
        .svc-service-card.svc-center-highlight {
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
            border-color: #e8e8e8;
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .svc-services-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, auto);
                height: auto;
                gap: 20px;
            }
            
            .svc-service-card {
                grid-column: 1 !important;
                grid-row: auto !important;
                padding: 25px;
            }
            
            .svc-header h1 {
                font-size: 2.5rem;
            }
            
            .svc-services-section {
                padding: 40px 20px 60px 20px;
            }
        }


        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset styles scoped to our unique class */
.nexus-contact-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main wrapper with unique class */
.nexus-contact-wrapper {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    /* Enable smooth scrolling like Chrome/Brave */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.nexus-contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(64, 64, 64, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(128, 128, 128, 0.05) 0%, transparent 50%);
    opacity: 0.5;
}

@keyframes nexus-pulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Background Image Container */
.nexus-contact-wrapper .nexus-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    opacity: 1;
    z-index: 1;
}

@keyframes backgroundFadeIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Main Section - Contact Info & Form */
.nexus-contact-wrapper .nexus-main-section {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    align-content: center;
    /* Flexible height to work with headers/footers */
    flex: 1;
}

.nexus-contact-wrapper .nexus-info-sphere {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
                url('lgictech.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(128, 128, 128, 0.1);
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 1.2s ease-out 1s forwards;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nexus-contact-wrapper .nexus-info-sphere:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7),
                inset 0 1px 0 rgba(128, 128, 128, 0.2);
    border-color: rgba(192, 192, 192, 0.4);
}

.nexus-contact-wrapper .nexus-info-sphere:hover .nexus-title {
    transform: scale(1.05);
}

.nexus-contact-wrapper .nexus-info-sphere:hover .nexus-contact-node {
    transform: translateX(5px);
}

.nexus-contact-wrapper .nexus-info-sphere:hover .nexus-social-orb {
    transform: scale(1.1);
}

/* Background shimmer effect for the container - DISABLED */
.nexus-contact-wrapper .nexus-info-sphere::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
    opacity: 0;
}

@keyframes containerShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nexus-contact-wrapper .nexus-form-portal {
    background: linear-gradient(145deg, rgba(128, 128, 128, 0.12), rgba(64, 64, 64, 0.08));
    border: 1px solid rgba(128, 128, 128, 0.15);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(128, 128, 128, 0.1);
    opacity: 0;
    transform: translateX(100px);
    animation: slideInRight 1.2s ease-out 1.2s forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nexus-contact-wrapper .nexus-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1.5s forwards;
    transition: transform 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nexus-contact-wrapper .nexus-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #c0c0c0);
    border-radius: 2px;
    transform: scaleX(0);
    animation: lineGrow 1s ease-out 2s forwards, nexus-line-glow 2s ease-in-out 3s infinite alternate;
}

@keyframes lineGrow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes nexus-line-glow {
    0% { box-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
    100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.8); }
}

.nexus-contact-wrapper .nexus-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 1.8s forwards;
}

.nexus-contact-wrapper .nexus-contact-matrix {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nexus-contact-wrapper .nexus-contact-node {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(128, 128, 128, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(128, 128, 128, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInContact 0.8s ease-out forwards;
}

.nexus-contact-wrapper .nexus-contact-node:nth-child(1) {
    animation-delay: 2s;
}

.nexus-contact-wrapper .nexus-contact-node:nth-child(2) {
    animation-delay: 2.2s;
}

.nexus-contact-wrapper .nexus-contact-node:nth-child(3) {
    animation-delay: 2.4s;
}

@keyframes slideInContact {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nexus-contact-wrapper .nexus-contact-node:hover {
    background: rgba(128, 128, 128, 0.15);
    border-color: rgba(192, 192, 192, 0.3);
    transform: translateX(10px);
}

.nexus-contact-wrapper .nexus-icon-sphere {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffffff, #c0c0c0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nexus-contact-wrapper .nexus-contact-text {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
}

.nexus-contact-wrapper .nexus-social-constellation {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 2.8s forwards;
}

.nexus-contact-wrapper .nexus-social-orb {
    width: 60px;
    height: 60px;
    background: rgba(128, 128, 128, 0.1);
    border: 2px solid rgba(128, 128, 128, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    transform: scale(0);
    animation: popIn 0.6s ease-out forwards;
}

.nexus-contact-wrapper .nexus-social-orb:nth-child(1) {
    animation-delay: 3s;
}

.nexus-contact-wrapper .nexus-social-orb:nth-child(2) {
    animation-delay: 3.1s;
}

.nexus-contact-wrapper .nexus-social-orb:nth-child(3) {
    animation-delay: 3.2s;
}

.nexus-contact-wrapper .nexus-social-orb:nth-child(4) {
    animation-delay: 3.3s;
}

@keyframes popIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.nexus-contact-wrapper .nexus-social-orb:hover {
    background: linear-gradient(135deg, #ffffff, #c0c0c0);
    border-color: #ffffff;
    transform: translateY(-5px) scale(1.1);
}

.nexus-contact-wrapper .nexus-social-orb:hover svg {
    fill: #000000;
}

.nexus-contact-wrapper .nexus-social-orb svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.nexus-contact-wrapper .nexus-form-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 1.6s forwards;
}

.nexus-contact-wrapper .nexus-form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #c0c0c0);
    border-radius: 2px;
    transform: translateX(-50%) scaleX(0);
    animation: lineGrowCenter 1s ease-out 2.2s forwards, nexus-line-glow 2s ease-in-out 3.5s infinite alternate;
}

@keyframes lineGrowCenter {
    from {
        transform: translateX(-50%) scaleX(0);
    }
    to {
        transform: translateX(-50%) scaleX(1);
    }
}

.nexus-contact-wrapper .nexus-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.nexus-contact-wrapper .nexus-input-cluster {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.nexus-contact-wrapper .nexus-form-row .nexus-input-cluster:nth-child(1) {
    animation-delay: 2s;
}

.nexus-contact-wrapper .nexus-form-row .nexus-input-cluster:nth-child(2) {
    animation-delay: 2.1s;
}

.nexus-contact-wrapper .nexus-input-cluster:nth-child(2) {
    animation-delay: 2.2s;
}

.nexus-contact-wrapper .nexus-input-cluster:nth-child(3) {
    animation-delay: 2.3s;
}

.nexus-contact-wrapper .nexus-input-cluster:nth-child(4) {
    animation-delay: 2.4s;
}

.nexus-contact-wrapper .nexus-input-cluster:nth-child(5) {
    animation-delay: 2.5s;
}

.nexus-contact-wrapper .nexus-input-field, 
.nexus-contact-wrapper .nexus-textarea-field, 
.nexus-contact-wrapper .nexus-select-field {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(128, 128, 128, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.nexus-contact-wrapper .nexus-input-field:focus, 
.nexus-contact-wrapper .nexus-textarea-field:focus, 
.nexus-contact-wrapper .nexus-select-field:focus {
    border-color: rgba(192, 192, 192, 0.5);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
}

.nexus-contact-wrapper .nexus-input-field::placeholder, 
.nexus-contact-wrapper .nexus-textarea-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.nexus-contact-wrapper .nexus-select-field {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    cursor: pointer;
}

.nexus-contact-wrapper .nexus-select-field option {
    background: #1a1a1a;
    color: #ffffff;
}

.nexus-contact-wrapper .nexus-textarea-field {
    min-height: 120px;
    resize: vertical;
}

.nexus-contact-wrapper .nexus-submit-beacon {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ffffff, #c0c0c0);
    color: #000000;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 2.8s forwards;
}

.nexus-contact-wrapper .nexus-submit-beacon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.nexus-contact-wrapper .nexus-submit-beacon:hover::before {
    left: 100%;
}

.nexus-contact-wrapper .nexus-submit-beacon:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.nexus-contact-wrapper .nexus-floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.nexus-contact-wrapper .nexus-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(128, 128, 128, 0.3);
    border-radius: 50%;
    animation: nexus-drift 15s linear infinite;
}

@keyframes nexus-drift {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) translateX(100px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nexus-contact-wrapper .nexus-main-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
        min-height: auto;
    }

    .nexus-contact-wrapper .nexus-title {
        font-size: 2.5rem;
    }

    .nexus-contact-wrapper .nexus-form-title {
        font-size: 2rem;
    }

    .nexus-contact-wrapper .nexus-info-sphere, 
    .nexus-contact-wrapper .nexus-form-portal {
        padding: 2rem;
    }

    .nexus-contact-wrapper .nexus-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nexus-contact-wrapper .nexus-title {
        font-size: 2rem;
    }

    .nexus-contact-wrapper .nexus-form-title {
        font-size: 1.5rem;
    }

    .nexus-contact-wrapper .nexus-info-sphere, 
    .nexus-contact-wrapper .nexus-form-portal {
        padding: 1.5rem;
    }

    .nexus-contact-wrapper .nexus-main-section {
        padding: 1rem;
    }
}

/* Header/Footer compatibility styles */
.nexus-contact-wrapper.with-header {
    min-height: calc(100vh - 80px); /* Adjust based on header height */
}

.nexus-contact-wrapper.with-footer {
    min-height: calc(100vh - 60px); /* Adjust based on footer height */
}

.nexus-contact-wrapper.with-header.with-footer {
    min-height: calc(100vh - 140px); /* Adjust based on header + footer height */
}

/* Reset for unique class scope */
.logictech-about-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logictech-about-container {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: #000000;
    color: #ffffff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    position: relative;
}

/* Sections */
.logictech-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
}

.logictech-section-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* Gradient Headers */
.logictech-gradient-header {
    text-align: center;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #ffffff, #c0c0c0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* About Section */
.logictech-about-section {
    background: #0a0a0a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.logictech-about-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.6;
    z-index: 1;
}

.logictech-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.logictech-about-text {
    opacity: 0;
    transform: translateX(-100px);
    text-align: center;
}

.logictech-about-text h2 {
    text-align: center;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #ffffff, #c0c0c0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logictech-about-text p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #c0c0c0;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
}

.logictech-about-image {
    opacity: 0;
    transform: translateX(100px);
    height: 600px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.logictech-about-image:hover {
    transform: translateX(100px) scale(1.05);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.logictech-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.logictech-about-image:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1);
}

/* Mission Section */
.logictech-mission-section {
    background: #1a1a1a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.logictech-mission-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.6;
    z-index: 1;
}

.logictech-mission-content {
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    z-index: 10;
}

.logictech-mission-content h2 {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #ffffff, #c0c0c0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logictech-mission-content p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #c0c0c0;
    max-width: 1000px;
    margin: 0 auto;
    font-weight: 300;
}

/* Process Section */
.logictech-process-section {
    background: #ffffff;
    color: #000;
    min-height: 400vh;
    position: relative;
    overflow: hidden;
}

.logictech-process-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.8;
    z-index: 1;
}

.logictech-process-header {
    text-align: center;
    margin-bottom: 8rem;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    z-index: 10;
}

.logictech-process-header h2 {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #000000, #333333);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logictech-process-intro {
    font-size: 1.4rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

.logictech-process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    min-height: 100vh;
    padding: 6rem 0;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    z-index: 10;
    margin-bottom: 4rem;
}

.logictech-process-step:nth-child(even) .logictech-process-image {
    order: -1;
}

.logictech-process-content h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #000;
    opacity: 0;
    transform: translateY(20px);
}

.logictech-process-number {
    font-size: 1.2rem;
    color: #666;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
}

.logictech-process-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #444;
    font-weight: 300;
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
}

.logictech-process-image {
    height: 500px;
    background: linear-gradient(135deg, #f8f8f8, #e5e5e5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.1);
    opacity: 0;
    transform: scale(0.8);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.logictech-process-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0), rgba(0,0,0,0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.logictech-process-image:hover {
    transform: scale(0.8) translateY(-10px);
    border-color: rgba(0,0,0,0.3);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.logictech-process-image:hover::before {
    opacity: 1;
}

.logictech-process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.logictech-process-image:hover img {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.1);
}

/* Vision Section */
.logictech-vision-section {
    background: #2a2a2a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.logictech-vision-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.4;
    z-index: 1;
}

.logictech-vision-content {
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    z-index: 10;
}

.logictech-vision-content h2 {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #ffffff, #c0c0c0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logictech-vision-content p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #c0c0c0;
    max-width: 1000px;
    margin: 0 auto 2rem;
    font-weight: 300;
}

/* Floating Shapes */
.logictech-floating-shape {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
    z-index: 5;
}

.logictech-shape-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ffffff, #c0c0c0);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation: logictechFloat1 8s ease-in-out infinite;
}

.logictech-shape-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #c0c0c0, #ffffff);
    transform: rotate(45deg);
    top: 60%;
    right: 15%;
    animation: logictechFloat2 10s ease-in-out infinite;
}

.logictech-shape-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ffffff, #c0c0c0);
    border-radius: 20px;
    bottom: 20%;
    left: 20%;
    animation: logictechFloat3 12s ease-in-out infinite;
}

@keyframes logictechFloat1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes logictechFloat2 {
    0%, 100% { transform: translateY(0px) rotate(45deg); }
    50% { transform: translateY(-40px) rotate(225deg); }
}

@keyframes logictechFloat3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(-180deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .logictech-section { 
        padding: 4rem 2rem; 
    }
    .logictech-about-grid, .logictech-process-step { 
        grid-template-columns: 1fr; 
        gap: 4rem; 
    }
    .logictech-process-step:nth-child(even) .logictech-process-image { 
        order: 0; 
    }
}

/* Ensure compatibility with headers/footers */
.logictech-about-container {
    position: relative;
    z-index: 1;
}


        
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Hero Section */
.platinum-hero-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, #2a2a2a 0%, #000000 100%);
    padding: 40px 20px;
}

.iridium-main-heading {
    font-size: 5rem;
    font-weight: 100;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 30%, #c0c0c0 70%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    animation: fadeInUp 1.2s ease-out;
}

.iridium-main-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c0c0c0, transparent);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Landing Page Showcase */
.mercury-main-showcase {
    width: 90%;
    max-width: 1200px;
    height: 70vh;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(192, 192, 192, 0.2);
    border: 2px solid #c0c0c0;
    transition: all 0.8s ease;
    overflow: hidden;
    position: relative;
    background: #000;
    animation: showcaseGlow 4s ease-in-out infinite alternate;
}

@keyframes showcaseGlow {
    0% {
        box-shadow: 0 20px 60px rgba(192, 192, 192, 0.2);
        border-color: #c0c0c0;
    }
    100% {
        box-shadow: 0 25px 80px rgba(192, 192, 192, 0.4);
        border-color: #e0e0e0;
    }
}

.mercury-main-showcase:hover {
    transform: scale(1.01);
    box-shadow: 0 30px 100px rgba(192, 192, 192, 0.5);
}

.main-showcase-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.showcase-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    color: #c0c0c0;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid #c0c0c0;
    backdrop-filter: blur(10px);
    z-index: 10;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        background: rgba(0, 0, 0, 0.9);
        color: #c0c0c0;
        border-color: #c0c0c0;
    }
    50% {
        background: rgba(192, 192, 192, 0.1);
        color: #ffffff;
        border-color: #ffffff;
        box-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
    }
}

/* Auto-scroll controls */
.scroll-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.scroll-btn {
    background: rgba(192, 192, 192, 0.2);
    border: 1px solid #c0c0c0;
    color: #c0c0c0;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.scroll-btn:hover {
    background: rgba(192, 192, 192, 0.3);
    transform: translateY(-2px);
}

.scroll-btn.active {
    background: rgba(192, 192, 192, 0.4);
    color: #ffffff;
}

/* Demo Section */
.sterling-demo-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.chromium-section-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 200;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 30%, #c0c0c0 70%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
}

.chromium-section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c0c0c0, transparent);
}

.titanium-demo-grid {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollLeft 30s linear infinite;
    will-change: transform;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0 20px;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.obsidian-demo-card {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(192, 192, 192, 0.2);
    border: 2px solid #c0c0c0;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    min-width: 400px;
    flex-shrink: 0;
}

.obsidian-demo-card:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(192, 192, 192, 0.3);
}

.graphite-demo-iframe {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    display: block;
    border: none;
    background: #000;
    transform: scale(0.75);
    transform-origin: top left;
    width: 133.33%;
    height: 400px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.obsidian-demo-card:hover .graphite-demo-iframe {
    pointer-events: auto;
}

.vanadium-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    padding: 20px;
    border-radius: 0 0 20px 20px;
    transition: all 0.3s ease;
}

.pearl-demo-title {
    font-size: 1.2rem;
    font-weight: 300;
    color: #ffffff;
    text-align: left;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.obsidian-demo-card:hover .pearl-demo-title {
    opacity: 1;
    transform: translateY(-2px);
}

.obsidian-demo-card:hover .vanadium-card-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

/* Full Screen Modal */
.platinum-fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platinum-fullscreen-overlay.silver-active {
    display: flex;
    opacity: 1;
}

.tungsten-fullscreen-demo {
    width: 90%;
    height: 80%;
    max-width: 1200px;
    border-radius: 15px;
    border: 2px solid #c0c0c0;
    box-shadow: 0 0 50px rgba(192, 192, 192, 0.3);
}

.nickel-close-button {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(145deg, #404040, #2a2a2a);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #606060;
}

.nickel-close-button:hover {
    background: linear-gradient(145deg, #606060, #404040);
    transform: scale(1.1);
    border-color: #c0c0c0;
}

/* Fallback Content */
.fallback-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.fallback-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fallback-description {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
}

.fallback-button {
    background: linear-gradient(135deg, #404040, #2a2a2a);
    color: #ffffff;
    border: 1px solid #c0c0c0;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fallback-button:hover {
    background: linear-gradient(135deg, #606060, #404040);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .chromium-section-title {
        font-size: 2rem;
    }
    
    .iridium-main-heading {
        font-size: 3rem;
        letter-spacing: 3px;
        margin-bottom: 30px;
    }
    
    .mercury-main-showcase {
        width: 95%;
        height: 50vh;
    }
    
    .tungsten-fullscreen-demo {
        width: 95%;
        height: 70%;
    }

    .pearl-demo-title {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .obsidian-demo-card {
        min-width: 320px;
    }

    .titanium-demo-grid {
        gap: 30px;
    }

    .fallback-title {
        font-size: 2rem;
    }

    .fallback-description {
        font-size: 1rem;
    }
}

/* Pause animation on hover */
.carousel-container:hover .titanium-demo-grid {
    animation-play-state: paused;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.carbon-loading-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 3px solid rgba(192, 192, 192, 0.3);
    border-top: 3px solid #c0c0c0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}




body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.content.blurred {
    filter: blur(10px);
    pointer-events: none;
}

.warning-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.warning-overlay.active {
    display: flex;
}

.warning-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.danger-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

::selection { background: transparent; }
::-moz-selection { background: transparent; }




