@charset "utf-8";
/* CSS Document */

/*
Tooplate 2144 Parallax Depth
https://www.tooplate.com/view/2144-parallax-depth
*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #00d9ff;
	--secondary: #ff00ea;
	--dark: #0a0a0f;
	--light: #ffffff;
	--glow: #00ffcc;
	--font-display: 'Orbitron', monospace;
	--font-heading: 'Space Grotesk', sans-serif;
	--font-body: 'Inter', sans-serif;
}

body {
	font-family: var(--font-body);
	background: var(--dark);
	overflow-x: hidden;
	cursor: crosshair;
	font-weight: 300;
	letter-spacing: 0.02em;
}

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--primary), var(--secondary));
	border-radius: 10px;
}

/* === ESTILOS NUEVOS PARA GEO (FAQ & LOCATIONS) === */

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.15);
}

.faq-question {
    font-family: var(--font-display);
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.faq-answer {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
    font-family: var(--font-heading);
}

/* Location Box (About & Contact) */
.location-box {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(90deg, rgba(0, 217, 255, 0.05) 0%, transparent 100%);
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
}

.location-header {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #ddd;
    font-size: 0.95rem;
    font-family: var(--font-heading);
}

.location-list li svg {
    width: 16px;
    height: 16px;
    fill: var(--secondary);
    margin-right: 12px;
    filter: drop-shadow(0 0 5px var(--secondary));
}

/* === FIN ESTILOS NUEVOS === */

/* Rectangle Elements for Hero Section */
.rectangles-bottom-left {
	position: absolute;
	bottom: 15vh;
	left: 5%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	z-index: 5;
	transform: rotate(-45deg);
	transform-origin: center;
}

.rectangles-top-right {
	position: absolute;
	top: 15vh;
	right: 5%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	z-index: 5;
	transform: rotate(45deg);
	transform-origin: center;
}

.rect {
	background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 234, 0.1));
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
}

/* Bottom Left Rectangle Group - Different Sizes (25% larger) */
.rect-bl-1 { width: 88px; height: 56px; animation: float-rect 6s ease-in-out infinite; }
.rect-bl-2 { width: 113px; height: 69px; animation: float-rect 6s ease-in-out infinite; }
.rect-bl-3 { width: 94px; height: 75px; animation: float-rect 6s ease-in-out infinite; }
.rect-bl-4 { width: 106px; height: 50px; animation: float-rect 6s ease-in-out infinite; }
.rect-bl-5 { width: 81px; height: 63px; animation: float-rect 6s ease-in-out infinite; }
.rect-bl-6 { width: 119px; height: 81px; animation: float-rect 6s ease-in-out infinite; }

/* Top Right Rectangle Group - Different Sizes */
.rect-tr-1 { width: 80px; height: 70px; animation: float-rect 8s ease-in-out infinite; }
.rect-tr-2 { width: 100px; height: 55px; animation: float-rect 8s ease-in-out infinite; }
.rect-tr-3 { width: 75px; height: 65px; animation: float-rect 8s ease-in-out infinite; }
.rect-tr-4 { width: 90px; height: 50px; animation: float-rect 8s ease-in-out infinite; }

.rect-bl-2, .rect-tr-2 { animation-delay: 0.5s; }
.rect-bl-3, .rect-tr-3 { animation-delay: 1s; }
.rect-bl-4, .rect-tr-4 { animation-delay: 1.5s; }
.rect-bl-5 { animation-delay: 2s; }
.rect-bl-6 { animation-delay: 2.5s; }

@keyframes float-rect {
	0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
	50% { transform: translateY(-20px) rotate(2deg); opacity: 1; }
}

.rect:hover {
	background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(255, 0, 234, 0.3));
	border-color: var(--primary);
	box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

/* Section Navigation Buttons */
.nav-btn-prev, .nav-btn-next {
	position: absolute;
	z-index: 100;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-btn-prev { top: 80px; right: 50px; width: 80px; height: 80px; }

.hexagon {
	position: relative;
	width: 80px;
	height: 44px;
	background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 234, 0.1));
	margin: 18px 0;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.hexagon:before, .hexagon:after {
	content: "";
	position: absolute;
	width: 0;
	border-left: 40px solid transparent;
	border-right: 40px solid transparent;
	transition: all 0.3s ease;
}

.hexagon:before { bottom: 100%; border-bottom: 18px solid rgba(0, 217, 255, 0.1); }
.hexagon:after { top: 100%; border-top: 18px solid rgba(255, 0, 234, 0.1); }

.hex-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--light);
	font-size: 24px;
	z-index: 1;
	transition: all 0.3s ease;
}

.nav-btn-prev:hover .hexagon {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	transform: rotate(30deg);
	box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.nav-btn-prev:hover .hexagon:before { border-bottom-color: var(--primary); }
.nav-btn-prev:hover .hexagon:after { border-top-color: var(--secondary); }
.nav-btn-prev:hover .hex-content { transform: translate(-50%, -50%) rotate(-30deg) scale(1.2); }

/* Logo */
.logo-container {
	position: absolute;
	top: 50px;
	left: 60px;
	z-index: 100;
	opacity: 0;
	animation: fadeInLogo 1s ease forwards;
	animation-delay: 0.5s;
}

@keyframes fadeInLogo {
	from { opacity: 0; transform: translateY(-20px); }
	to { opacity: 1; transform: translateY(0); }
}

.logo { display: flex; align-items: center; gap: 20px; text-decoration: none; transition: all 0.3s ease; }
.logo:hover { transform: scale(1.05); }

.logo-svg {
	width: 70px;
	height: 70px;
	position: relative;
	animation: rotateLogo 20s linear infinite;
}

@keyframes rotateLogo {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.logo-text {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 900;
	color: var(--light);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

/* Bottom Right - Next Button - 3D Pyramid Shape */
.nav-btn-next { bottom: 80px; right: 50px; width: 80px; height: 80px; perspective: 200px; }

.pyramid {
	position: relative;
	width: 80px;
	height: 80px;
	transform-style: preserve-3d;
	transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	animation: float-pyramid 4s ease-in-out infinite 1s;
}

@keyframes float-pyramid {
	0%, 100% { transform: translateY(0) rotateX(-20deg) rotateY(45deg); }
	50% { transform: translateY(-10px) rotateX(-20deg) rotateY(45deg); }
}

.pyramid-face { position: absolute; width: 0; height: 0; border-style: solid; opacity: 0.9; }

.pyramid-face:nth-child(1) { border-left: 40px solid transparent; border-right: 40px solid transparent; border-bottom: 70px solid rgba(0, 217, 255, 0.6); transform: rotateY(0deg) rotateX(30deg) translateZ(20px); }
.pyramid-face:nth-child(2) { border-left: 40px solid transparent; border-right: 40px solid transparent; border-bottom: 70px solid rgba(255, 0, 234, 0.6); transform: rotateY(90deg) rotateX(30deg) translateZ(20px); }
.pyramid-face:nth-child(3) { border-left: 40px solid transparent; border-right: 40px solid transparent; border-bottom: 70px solid rgba(0, 255, 204, 0.6); transform: rotateY(180deg) rotateX(30deg) translateZ(20px); }
.pyramid-face:nth-child(4) { border-left: 40px solid transparent; border-right: 40px solid transparent; border-bottom: 70px solid rgba(0, 217, 255, 0.4); transform: rotateY(-90deg) rotateX(30deg) translateZ(20px); }

.pyramid-base {
	position: absolute;
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(255, 0, 234, 0.2));
	transform: rotateX(90deg) translateZ(-28px);
	left: 12px;
	top: 42px;
	backdrop-filter: blur(10px);
}

.pyramid-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--light);
	font-size: 24px;
	z-index: 2;
	pointer-events: none;
	text-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

.nav-btn-next:hover .pyramid { transform: rotateX(-30deg) rotateY(405deg) scale(1.2); animation-play-state: paused; }
.nav-btn-next:hover .pyramid-face:nth-child(1) { border-bottom-color: rgba(0, 217, 255, 0.9); }
.nav-btn-next:hover .pyramid-face:nth-child(2) { border-bottom-color: rgba(255, 0, 234, 0.9); }
.nav-btn-next:hover .pyramid-face:nth-child(3) { border-bottom-color: rgba(0, 255, 204, 0.9); }
.nav-btn-next:hover .pyramid-face:nth-child(4) { border-bottom-color: rgba(0, 217, 255, 0.7); }
.nav-btn-next:hover .pyramid-base { background: linear-gradient(135deg, var(--primary), var(--secondary)); box-shadow: 0 0 30px rgba(0, 217, 255, 0.6); }

.nav-btn-prev { animation: float-hex 4s ease-in-out infinite; }
.nav-btn-next { animation: float-diamond 4s ease-in-out infinite 2s; }

@keyframes float-hex { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes float-diamond { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Hero Section */
.hero-container {
	position: relative;
	height: 100vh;
	overflow: hidden;
	background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0f 100%);
}

.grid-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 2; }
.grid-diagonal-1 {
	position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
	background-image: repeating-linear-gradient(45deg, transparent, transparent 180px, rgba(0, 217, 255, 0.08) 180px, rgba(0, 217, 255, 0.08) 183px),
		repeating-linear-gradient(-45deg, transparent, transparent 180px, rgba(255, 0, 234, 0.08) 180px, rgba(255, 0, 234, 0.08) 183px);
	animation: grid-slide-1 40s linear infinite;
}
@keyframes grid-slide-1 { 0% { transform: translate(0, 0); } 100% { transform: translate(183px, 183px); } }

.grid-diagonal-2 {
	position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
	background-image: repeating-linear-gradient(45deg, transparent, transparent 250px, rgba(0, 255, 204, 0.05) 250px, rgba(0, 255, 204, 0.05) 254px),
		repeating-linear-gradient(-45deg, transparent, transparent 250px, rgba(0, 255, 204, 0.05) 250px, rgba(0, 255, 204, 0.05) 254px);
	animation: grid-slide-2 60s linear infinite reverse; opacity: 0.8;
}
@keyframes grid-slide-2 { 0% { transform: translate(0, 0); } 100% { transform: translate(254px, 254px); } }

.stars { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.star { position: absolute; width: 2px; height: 2px; background: white; border-radius: 50%; animation: twinkle 3s infinite; }
@keyframes twinkle { 0%, 100% { opacity: 0; } 50% { opacity: 1; } }

.parallax-layer { position: absolute; width: 110%; height: 100%; left: -5%; }
.layer-bg { background: linear-gradient(180deg, transparent 0%, rgba(0, 217, 255, 0.1) 50%, transparent 100%); transform: translateZ(-3px) scale(4); }
.layer-float { transform: translateZ(-1px) scale(2); }

.layer-fg { transform: translateZ(0) scale(1); pointer-events: none; }
.glowing-orb {
	position: absolute; width: 100px; height: 100px; border-radius: 50%;
	background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
	filter: blur(20px);
	animation: orb-float 15s infinite linear;
}
.orb-1 { top: 20vh; animation-delay: 0s; }
.orb-2 { top: 50vh; animation-delay: 5s; }
@keyframes orb-float { 0% { left: -100px; } 100% { left: calc(100% + 100px); } }

.hero-content {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	text-align: center; z-index: 10; color: var(--light);
	opacity: 0; animation: fadeInHero 1s ease forwards; animation-delay: 0.3s;
}
@keyframes fadeInHero { from { opacity: 0; transform: translate(-50%, calc(-50% + 20px)); } to { opacity: 1; transform: translate(-50%, -50%); } }

.hero-title {
	font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem); font-weight: 900;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
	margin-bottom: 20px; animation: glow-text 2s ease-in-out infinite alternate;
	text-transform: uppercase; letter-spacing: 0.1em;
}
@keyframes glow-text { from { filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5)); } to { filter: drop-shadow(0 0 30px rgba(255, 0, 234, 0.8)); } }

.hero-subtitle {
	font-family: var(--font-heading); font-size: clamp(1rem, 3vw, 1.5rem); font-weight: 300;
	opacity: 0.8; margin-bottom: 40px; letter-spacing: 0.3em; text-transform: uppercase;
}

.cta-button {
	display: inline-block; padding: 15px 40px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: var(--light); text-decoration: none; border-radius: 50px;
	font-size: 1.1rem; font-weight: bold; position: relative; overflow: hidden; transition: all 0.3s ease;
}
.cta-button::before {
	content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
	background: rgba(255, 255, 255, 0.3); transition: left 0.5s ease;
}
.cta-button:hover::before { left: 100%; }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 217, 255, 0.5); }

/* Content Sections */
.content-section { position: relative; min-height: 100vh; padding: 100px 5%; background: var(--dark); z-index: 20; overflow: hidden; }
.section-gradient { background: linear-gradient(180deg, var(--dark) 0%, #1a1a2e 50%, var(--dark) 100%); }

/* Parallax Background for Features */
.features-section-bg { position: relative; background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0f 100%); }
.features-grid-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }

.features-grid {
	position: absolute; top: 0; left: 0; width: 100%; height: 100%;
	background-image: repeating-linear-gradient(0deg, transparent, transparent 150px, rgba(0, 217, 255, 0.06) 150px, rgba(0, 217, 255, 0.06) 153px),
		repeating-linear-gradient(90deg, transparent, transparent 150px, rgba(255, 0, 234, 0.06) 150px, rgba(255, 0, 234, 0.06) 153px);
	animation: grid-shift 30s linear infinite;
}
@keyframes grid-shift { 0% { transform: translate(0, 0); } 100% { transform: translate(153px, 153px); } }

.features-grid-large {
	position: absolute; top: 0; left: 0; width: 100%; height: 100%;
	background-image: repeating-linear-gradient(0deg, transparent, transparent 300px, rgba(0, 255, 204, 0.04) 300px, rgba(0, 255, 204, 0.04) 304px),
		repeating-linear-gradient(90deg, transparent, transparent 300px, rgba(0, 255, 204, 0.04) 300px, rgba(0, 255, 204, 0.04) 304px);
	animation: grid-shift-slow 45s linear infinite reverse; opacity: 0.7;
}
@keyframes grid-shift-slow { 0% { transform: translate(0, 0); } 100% { transform: translate(-304px, -304px); } }

/* Parallax Background for Contact */
.contact-section-bg { position: relative; background: linear-gradient(45deg, #0a0a0f 0%, #1a1a2e 100%); }
.contact-section-bg::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
	background-image: linear-gradient(rgba(0, 217, 255, 0.03) 2px, transparent 2px), linear-gradient(90deg, rgba(0, 217, 255, 0.03) 2px, transparent 2px);
	background-size: 120px 120px; background-position: -1px -1px; animation: grid-slide 40s linear infinite; pointer-events: none;
}
@keyframes grid-slide { 0% { transform: translate(0, 0); } 100% { transform: translate(120px, 120px); } }
.contact-section-bg::after {
	content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
	background: linear-gradient(135deg, rgba(255, 0, 234, 0.04) 0%, rgba(0, 255, 204, 0.03) 100%); pointer-events: none;
}

.container { max-width: 1200px; margin: 0 auto; }

.section-title {
	font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700;
	color: var(--light); text-align: center; margin-bottom: 50px; position: relative;
	text-transform: uppercase; letter-spacing: 0.05em;
}
.section-title::after {
	content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
	width: 100px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* About Section */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin: 50px 0; }
.about-text { color: rgba(255, 255, 255, 0.9); }

.about-text h3 {
	font-family: var(--font-heading); font-size: 2rem; font-weight: 600; margin-bottom: 20px;
	background: linear-gradient(135deg, var(--primary), var(--glow));
	-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
	text-transform: uppercase; letter-spacing: 0.05em;
}

.about-text p {
	font-family: var(--font-heading); font-weight: 400; line-height: 1.9; margin-bottom: 25px;
	color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; letter-spacing: 0.03em;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.about-visual { position: relative; height: 400px; display: flex; align-items: center; justify-content: center; }
.orbit-container { position: absolute; width: 100%; height: 100%; max-width: 400px; max-height: 400px; animation: rotate 20s linear infinite; }
.orbit { position: absolute; border: 2px solid rgba(0, 217, 255, 0.2); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.orbit-1 { width: 200px; height: 200px; animation: pulse 3s ease-in-out infinite; }
.orbit-2 { width: 300px; height: 300px; animation: pulse 3s ease-in-out infinite 1s; }
.orbit-3 { width: 400px; height: 400px; animation: pulse 3s ease-in-out infinite 2s; }

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

.orbit-dot {
	position: absolute; width: 20px; height: 20px;
	background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
	border-radius: 50%; box-shadow: 0 0 20px var(--primary);
}
.dot-1 { top: -10px; left: 50%; transform: translateX(-50%); }
.dot-2 { right: -10px; top: 50%; transform: translateY(-50%); }
.dot-3 { bottom: -10px; left: 50%; transform: translateX(-50%); }

/* 3D Carousel Features */
.features-container { position: relative; height: 520px; perspective: 1200px; margin: 50px 0; }
.carousel-3d { position: absolute; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1); }

.feature-card-3d {
	position: absolute; width: 255px; height: 340px; left: 50%; top: 50%;
	margin-left: -127px; margin-top: -170px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
	backdrop-filter: blur(20px); border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 22px; padding: 32px; transition: all 0.5s ease;
	transform-style: preserve-3d; cursor: pointer; overflow: hidden; backface-visibility: hidden;
}

.feature-card-3d::before {
	content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
	background: linear-gradient(45deg, var(--primary), var(--secondary), var(--glow), var(--primary));
	border-radius: 22px; opacity: 0; z-index: -1; transition: opacity 0.5s ease;
	animation: gradient-border 3s linear infinite; background-size: 300% 300%;
}
@keyframes gradient-border { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.feature-card-3d:hover::before { opacity: 1; }

.feature-card-3d:nth-child(1) { transform: rotateY(0deg) translateZ(320px); }
.feature-card-3d:nth-child(2) { transform: rotateY(60deg) translateZ(320px); }
.feature-card-3d:nth-child(3) { transform: rotateY(120deg) translateZ(320px); }
.feature-card-3d:nth-child(4) { transform: rotateY(180deg) translateZ(320px); }
.feature-card-3d:nth-child(5) { transform: rotateY(240deg) translateZ(320px); }
.feature-card-3d:nth-child(6) { transform: rotateY(300deg) translateZ(320px); }

.feature-card-3d:hover {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
	box-shadow: 0 30px 60px rgba(0, 217, 255, 0.4), inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.feature-icon-3d {
	width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary), var(--secondary));
	border-radius: 16px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
	font-size: 28px; position: relative; transform: translateZ(20px); box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.feature-title-3d {
	font-family: var(--font-heading); color: var(--light); font-size: 1.25rem; font-weight: 600;
	margin-bottom: 12px; text-align: center; text-transform: uppercase; letter-spacing: 0.05em; transform: translateZ(10px);
}
.feature-description-3d {
	font-family: var(--font-heading); color: rgba(255, 255, 255, 0.9); line-height: 1.6;
	text-align: center; font-weight: 400; font-size: 0.9rem; letter-spacing: 0.02em;
}
.feature-number {
	position: absolute; top: 16px; right: 16px; font-family: var(--font-display); font-size: 2.4rem; font-weight: 900;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; opacity: 0.3;
}

.carousel-controls {
	position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%); display: flex; gap: 20px; z-index: 100;
}
.carousel-btn {
	width: 50px; height: 50px; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center;
	cursor: pointer; transition: all 0.3s ease; color: var(--light); font-size: 20px; user-select: none;
}
.carousel-btn:hover { background: linear-gradient(135deg, var(--primary), var(--secondary)); transform: scale(1.1); box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4); }
.carousel-btn:active { transform: scale(0.95); }

.carousel-indicators {
	position: absolute; bottom: -90px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px;
}
.indicator { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); transition: all 0.3s ease; cursor: pointer; }
.indicator.active { background: var(--primary); box-shadow: 0 0 10px var(--primary); transform: scale(1.3); }

/* Contact Section */
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin: 50px 0; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { position: relative; }

.form-input {
	width: 100%; padding: 15px 20px; background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.1); border-radius: 10px; color: var(--light);
	font-size: 1rem; transition: all 0.3s ease; font-family: 'Inter', sans-serif;
}
.form-input:focus {
	outline: none; border-color: var(--primary); background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}
.form-input::placeholder { color: rgba(255, 255, 255, 0.3); }
.form-textarea { min-height: 150px; resize: vertical; }

.submit-btn {
	padding: 15px 40px; background: linear-gradient(135deg, var(--primary), var(--secondary));
	border: none; border-radius: 50px; color: var(--light); font-size: 1.1rem; font-weight: bold;
	cursor: pointer; position: relative; overflow: hidden; transition: all 0.3s ease;
}
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 217, 255, 0.5); }

.contact-info {
	padding: 40px; background: rgba(255, 255, 255, 0.03); border-radius: 20px;
	backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-info h3 {
	font-family: var(--font-heading); color: var(--primary); margin-bottom: 30px; font-size: 1.6rem;
	font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.info-item {
	display: flex; align-items: center; margin-bottom: 20px; color: rgba(255, 255, 255, 0.85);
	font-family: var(--font-heading); font-weight: 400; letter-spacing: 0.02em;
}
.info-icon {
	width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary), var(--secondary));
	border-radius: 10px; display: flex; align-items: center; justify-content: center;
	margin-right: 15px; font-size: 18px; flex-shrink: 0;
}

/* Mouse Follower */
.mouse-follower {
	position: fixed; width: 20px; height: 20px; border: 2px solid var(--primary);
	border-radius: 50%; pointer-events: none; z-index: 9999;
	transition: all 0.1s ease; transform: translate(-50%, -50%);
}

/* Footer Section */
.footer {
	background: linear-gradient(180deg, var(--dark) 0%, #0a0a0f 100%);
	padding: 60px 5% 30px; border-top: 1px solid rgba(255, 255, 255, 0.1);
	position: relative; overflow: hidden;
}
.footer::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
	background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
	animation: glow-line 3s ease-in-out infinite;
}
@keyframes glow-line { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

.footer-content { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 40px; margin-bottom: 30px; flex-wrap: wrap; }
.footer-link {
	color: rgba(255, 255, 255, 0.8); text-decoration: none; font-family: var(--font-heading);
	font-size: 1rem; font-weight: 400; transition: all 0.3s ease; position: relative; letter-spacing: 0.02em;
}
.footer-link:hover { color: var(--primary); transform: translateY(-2px); }
.footer-divider {
	width: 100px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	margin: 30px auto;
}
.footer-copyright { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; font-family: var(--font-heading); }

/* Language Switch */
.language-switch {
  position: absolute; right: 20px; top: 14px; z-index: 11000;
  display: flex; align-items: center; gap: 8px; padding: 6px 10px;
  border-radius: 999px; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15); box-shadow: 0 0 10px rgba(0, 217, 255, 0.25);
}
.lang-btn {
  min-width: 42px; height: 32px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 10px; border: none; border-radius: 8px; background: transparent; color: #eaf7ff;
  font-weight: 700; letter-spacing: 0.5px; font-size: 13px; cursor: pointer; transition: all 0.2s ease;
}
.lang-btn:hover { color: #00e5ff; text-shadow: 0 0 6px #00e5ff; }
.lang-btn.active { background: rgba(0, 217, 255, 0.15); color: #00e5ff; box-shadow: 0 0 12px rgba(0, 217, 255, 0.3); }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .faq-container { width: 100%; }
    .faq-item { padding: 20px; }
	.hero-content { top: calc(30vh + 120px); }
	.rectangles-bottom-left, .rectangles-top-right { gap: 10px; }
	.rectangles-bottom-left { bottom: 8vh; left: 3%; grid-template-columns: repeat(2, 1fr); transform: rotate(-45deg); }
	.rectangles-top-right { top: 12vh; right: 3%; transform: rotate(45deg); }
	.about-content { grid-template-columns: 1fr; gap: 40px; margin: 40px 0; }
	.about-text { order: 1; }
	.about-visual { order: 2; height: 350px; }
	.orbit-container { max-width: 350px; max-height: 350px; }
	.orbit-1 { width: 150px; height: 150px; } .orbit-2 { width: 225px; height: 225px; } .orbit-3 { width: 300px; height: 300px; }
	.features-container { height: 400px; margin: 30px 0 80px; perspective: 800px; }
	.feature-card-3d { width: 195px; height: 315px; margin-left: -97px; margin-top: -157px; padding: 20px; }
	.feature-card-3d:nth-child(1) { transform: rotateY(0deg) translateZ(180px); }
	.feature-card-3d:nth-child(2) { transform: rotateY(60deg) translateZ(180px); }
	.feature-card-3d:nth-child(3) { transform: rotateY(120deg) translateZ(180px); }
	.feature-card-3d:nth-child(4) { transform: rotateY(180deg) translateZ(180px); }
	.feature-card-3d:nth-child(5) { transform: rotateY(240deg) translateZ(180px); }
	.feature-card-3d:nth-child(6) { transform: rotateY(300deg) translateZ(180px); }
	.contact-content { grid-template-columns: 1fr; gap: 40px; margin: 30px 0; }
    .language-switch { right: 10px; top: 10px; padding: 4px 6px; }
    .lang-btn { font-size: 12px; min-width: 36px; height: 28px; }
}

@media (max-width: 480px) {
    .location-box { margin-top: 15px; padding: 15px; }
	.about-text h3 { font-size: 1.4rem; }
	.about-visual { height: 280px; }
	.orbit-container { max-width: 280px; max-height: 280px; }
	.orbit-1 { width: 120px; height: 120px; } .orbit-2 { width: 180px; height: 180px; } .orbit-3 { width: 240px; height: 240px; }
	.features-container { height: 350px; perspective: 600px; }
	.feature-card-3d { width: 165px; height: 285px; margin-left: -82px; margin-top: -142px; padding: 18px; }
	.feature-card-3d:nth-child(1) { transform: rotateY(0deg) translateZ(140px); }
	.feature-card-3d:nth-child(2) { transform: rotateY(60deg) translateZ(140px); }
	.feature-card-3d:nth-child(3) { transform: rotateY(120deg) translateZ(140px); }
	.feature-card-3d:nth-child(4) { transform: rotateY(180deg) translateZ(140px); }
	.feature-card-3d:nth-child(5) { transform: rotateY(240deg) translateZ(140px); }
	.feature-card-3d:nth-child(6) { transform: rotateY(300deg) translateZ(140px); }
}