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

:root {
    --primary: #00a8e8;
    --primary-light: #50c8f0;
    --accent: #00d4ff;
    --dark: #0a0e27;
    --dark-blue: #0d1b2a;
    --darker: #050811;
    --text: #e0e0e0;
    --text-light: #ffffff;
    --card-bg: #1b2838;
    --card-hover: #243447;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--dark);
    overflow-x: hidden;
}

/* Sticky Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0,168,232,0.3);
    border-bottom: 1px solid rgba(0,168,232,0.2);
}

.nav-menu.visible {
    transform: translateY(0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.nav-logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0,168,232,0.5));
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent);
}

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

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

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0,212,255,0.3);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--accent);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--accent);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 8, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Hero Section with Water Effects */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark-blue) 50%, var(--dark) 100%);
    cursor: pointer;
}

/* Water Wave Canvas */
.water-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Animated Water Drops */
.water-drops {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.water-drop {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(0,212,255,0.8) 0%, rgba(0,168,232,0.4) 100%);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0,212,255,0.6);
    will-change: transform, opacity;
}

/* Flowing Water Particles - Rising Up */
.flow-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.flow-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0,212,255,0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,212,255,0.8);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(5,8,17,0.3) 100%);
    z-index: 3;
}

/* Ripple Effect Container */
.ripple-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.ripple-wave {
    position: absolute;
    border-style: solid;
    border-radius: 50%;
    pointer-events: none;
    animation: ripple-wave-animation var(--ripple-duration, 2s) ease-out forwards;
}

@keyframes ripple-wave-animation {
    0% {
        width: 0;
        height: 0;
        opacity: var(--ripple-opacity, 0.7);
        transform: translate(-50%, -50%);
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
    }
    50% {
        opacity: calc(var(--ripple-opacity, 0.7) * 0.6);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    100% {
        width: var(--ripple-size, 400px);
        height: var(--ripple-size, 400px);
        opacity: 0;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 0 rgba(0, 212, 255, 0);
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
    pointer-events: none;
}

.hero-content * {
    pointer-events: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    width: 550px;
    height: auto;
    margin-bottom: 50px;
    filter: drop-shadow(0 0 30px rgba(0,168,232,0.6));
    animation: logoFloat 3s ease-in-out infinite, fadeInUp 1s ease;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0);
        filter: drop-shadow(0 0 30px rgba(0,168,232,0.6));
    }
    50% { 
        transform: translateY(-15px);
        filter: drop-shadow(0 0 50px rgba(0,212,255,0.8));
    }
}

.hero-subtitle {
    font-size: 1.9rem;
    margin-bottom: 50px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.3s backwards;
    text-shadow: 0 0 20px rgba(0,168,232,0.3);
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0,168,232,0.4);
    animation: fadeInUp 1s ease 0.6s backwards;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 50px rgba(0,212,255,0.6);
    border-color: var(--accent);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: bounce 2s infinite;
}

.scroll-indicator::after {
    content: '↓';
    display: block;
    color: var(--accent);
    font-size: 2.5rem;
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(0,212,255,0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
section {
    padding: 100px 20px;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.section-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Features Section */
.features {
    background: var(--dark-blue);
    position: relative;
    overflow: hidden;
}

@keyframes float-circle {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-100px, 100px); }
}

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

.feature-card {
    background: var(--card-bg);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,168,232,0.2);
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,168,232,0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.1s; }
.feature-card:nth-child(4) { transition-delay: 0.1s; }
.feature-card:nth-child(5) { transition-delay: 0.1s; }
.feature-card:nth-child(6) { transition-delay: 0.1s; }

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 15px 50px rgba(0,168,232,0.3);
    border-color: var(--accent);
    background: var(--card-hover);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 0 10px rgba(0,168,232,0.3));
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 20px rgba(0,212,255,0.6));
}

.feature-card h3 {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 18px;
    transition: color 0.3s;
}

.feature-card:hover h3 {
    color: var(--accent);
}

.feature-card p {
    color: var(--text);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Description Section */
.description {
    background: var(--dark);
}

.description-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.description-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.description-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.description-text h3 {
    font-size: 2.3rem;
    color: var(--accent);
    margin-bottom: 30px;
}

.description-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 25px;
}

.description-text ul {
    list-style: none;
    padding: 0;
}

.description-text ul li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,168,232,0.2);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: var(--text);
}

.description-text ul li:hover {
    padding-left: 10px;
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.description-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--dark-blue) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text);
    box-shadow: 0 10px 50px rgba(0,168,232,0.2);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,168,232,0.3);
}

.description-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.description-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(0,168,232,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}


/* Description Section */

.description-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.description-main {
    padding-right: 20px;
}

.description-main h3 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 25px;
    font-weight: 600;
}

.description-main p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 25px;
}

.description-main strong {
    color: var(--accent);
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(0,168,232,0.15) 0%, rgba(0,212,255,0.08) 100%);
    padding: 30px 35px;
    border-radius: 15px;
    border-left: 4px solid var(--accent);
    margin: 35px 0;
    box-shadow: 0 5px 20px rgba(0,168,232,0.15);
}

.highlight-box h4 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.highlight-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 0;
}

.description-features {
    background: rgba(27,40,56,0.4);
    padding: 40px 35px;
    border-radius: 20px;
    border: 2px solid rgba(0,168,232,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.description-features h3 {
    font-size: 1.7rem;
    color: var(--accent);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,168,232,0.15);
	cursor: pointer;
	transition: transform 0.5s ease-in-out;
}

.features-list li:hover {
	transform: scale(1.02);
	transition: transform 0.5s ease-in-out;
}

.features-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.features-list li:first-child {
    padding-top: 0;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
}

@media (max-width: 1024px) {
    .description-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .description-main {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .description-main h3 {
        font-size: 1.6rem;
    }

    .description-main p {
        font-size: 1.05rem;
    }

    .highlight-box {
        padding: 25px;
    }

    .description-features {
        padding: 30px 25px;
    }

    .feature-icon {
        font-size: 2rem;
    }
}

/* Gallery Section */
.gallery {
    background: var(--dark-blue);
    position: relative;
}

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

.gallery-item {
    height: 350px;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--dark-blue) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.9);
    position: relative;
    border: 1px solid rgba(0,168,232,0.2);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

.gallery-item:nth-child(1) { transition-delay: 0.1s; }
.gallery-item:nth-child(2) { transition-delay: 0.1s; }
.gallery-item:nth-child(3) { transition-delay: 0.1s; }
.gallery-item:nth-child(4) { transition-delay: 0.1s; }

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0,168,232,0.4);
    border-color: var(--accent);
}

/* Technical Specs - 3 Cards for Symmetry */
.tech-specs {
    background: var(--dark);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.spec-item {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--primary);
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.spec-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.spec-item:nth-child(1) { transition-delay: 0.1s; }
.spec-item:nth-child(2) { transition-delay: 0.2s; }
.spec-item:nth-child(3) { transition-delay: 0.3s; }

.spec-item:hover {
    transform: translateY(-10px);
    border-left-color: var(--accent);
    box-shadow: 0 5px 40px rgba(0,168,232,0.3);
}

.spec-item h4 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.spec-item p {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--darker) 100%);
    position: relative;
}

.contact::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0,168,232,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,168,232,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: rgba(27,40,56,0.8);
    padding: 45px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(0,168,232,0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    backdrop-filter: blur(10px);
}

.contact-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-card:nth-child(1) { transition-delay: 0.1s; }
.contact-card:nth-child(2) { transition-delay: 0.1s; }

.contact-card:hover {
    transform: translateY(-10px);
    background: rgba(27,40,56,0.95);
    border-color: var(--accent);
    box-shadow: 0 10px 50px rgba(0,168,232,0.4);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--accent);
    display: inline-block;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 0 10px rgba(0,212,255,0.5));
}

.contact-card:hover .contact-icon {
    transform: scale(1.2) rotate(360deg);
}

.contact-card h4 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: var(--text-light);
}

.contact-card a {
    color: var(--accent);
    text-decoration: none;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    text-shadow: 0 0 10px rgba(0,212,255,0.5);
}

.contact-card p {
    color: var(--text);
    font-size: 1.15rem;
}


/* Contact Section - Informativo senza form */

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.contact-text {
    padding-right: 30px;
}

.contact-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 35px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--text);
    padding: 15px;
    background: rgba(27,40,56,0.3);
    border-left: 3px solid var(--accent);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(27,40,56,0.5);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: bold;
}

.contact-cta {
    background: linear-gradient(135deg, rgba(0,168,232,0.15) 0%, rgba(0,212,255,0.08) 100%);
    padding: 45px 40px;
    border-radius: 20px;
    border: 2px solid rgba(0,168,232,0.3);
    box-shadow: 0 10px 40px rgba(0,168,232,0.2);
    text-align: center;
}

.contact-cta h3 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-cta > p {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 35px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(27,40,56,0.6);
    border-radius: 15px;
    border: 2px solid rgba(0,168,232,0.25);
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,168,232,0.1), transparent);
    transition: left 0.6s;
}

.contact-link:hover::before {
    left: 100%;
}

.contact-link:hover {
    background: rgba(27,40,56,0.9);
    border-color: var(--accent);
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0,168,232,0.4);
}

.contact-link:hover .link-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 20px rgba(0,212,255,0.6));
}

.link-icon {
    font-size: 2.5rem;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: drop-shadow(0 0 10px rgba(0,168,232,0.3));
}

.link-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.link-label {
    font-size: 0.9rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.link-value {
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 600;
}

.availability {
    padding: 20px;
    background: rgba(0,168,232,0.1);
    border-radius: 10px;
    border: 1px solid rgba(0,168,232,0.2);
}

.availability p {
    font-size: 0.95rem;
    color: var(--text);
    margin: 0;
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .contact-cta {
        padding: 35px 30px;
    }

    .contact-link {
        padding: 20px;
    }

    .link-icon {
        font-size: 2rem;
    }

    .link-value {
        font-size: 1.1rem;
    }
}


/* Footer */
footer {
    background: var(--darker);
    color: var(--text);
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(0,168,232,0.2);
}

/* Responsive */
@media (max-width: 968px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-logo img {
        height: 40px;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(10px);
        width: 280px;
        height: calc(100vh - 80px);
        padding: 40px 20px;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        border-left: 1px solid rgba(0,168,232,0.3);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(0,168,232,0.1);
    }

    .nav-links a {
        display: block;
        padding: 20px 15px;
        font-size: 1.1rem;
        width: 100%;
        transition: all 0.3s ease;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        background: rgba(0,168,232,0.1);
        padding-left: 25px;
        border-left: 3px solid var(--accent);
    }

    .mobile-menu-overlay {
        display: block;
    }

    .hero-logo {
        width: 280px;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .description-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}