@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Oswald:wght@500;700&display=swap');

:root {
    --bg-dark: rgba(10, 10, 10, 0.95);
    --bg-light: rgba(230, 230, 230, 0.95);
    --text-light: #f5f5f5;
    --text-dark: #121212;
    --accent: #555;
    --blur: blur(10px);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    scroll-behavior: smooth;
}

img, canvas, video {
    max-width: 100%;
}

/* Background Canvas */
.canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    background-color: #000;
}

/* Custom Animated Cursor */
body {
    cursor: none; /* Hide default cursor */
}

a, button, input, textarea, select, .portfolio-item img, .portfolio-item video, .currency-btn {
    cursor: none !important;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #e50914; /* Theme red */
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    mix-blend-mode: difference;
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
}

.custom-cursor.cursor-hover {
    width: 60px;
    height: 60px;
    background-color: rgba(229, 9, 20, 0.1);
    border-color: rgba(229, 9, 20, 0.8);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.8);
}

canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Content Overlay */
.content-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Common Section Styles */
section {
    padding: 80px 10%;
    position: relative;
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-light {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Header / Nav */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header.scrolled {
    transform: translateY(0);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a, .nav-icons a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.nav-links a:hover, .nav-icons a:hover {
    color: #999;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-icons {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.mobile-nav-links a {
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-nav-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-nav-icons a {
    color: #aaa;
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding-top: 100px;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 9vw, 7rem);
    font-weight: 700;
    letter-spacing: clamp(1px, 2vw, 12px);
    margin: 20px 0;
    color: rgba(255,255,255,1);
    text-shadow: 0 2px 0 rgba(0,0,0,1);
    line-height: 1.1;
    padding: 0 20px;
    max-width: 1200px;
}

.hero-subtitle {
    font-size: clamp(0.8rem, 3vw, 1rem);
    font-weight: 300;
    letter-spacing: clamp(1px, 1vw, 4px);
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    padding: 0 15px;
}

.hero-text {
    margin-top: 20px;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    letter-spacing: 1px;
    max-width: 900px;
    color: #fff;
    line-height: 1.6;
    text-shadow: 0 2px 0 rgba(0,0,0,1);
    padding: 0 20px;
    text-align: center;
}

/* Slide Up Text Animation */
.slide-up-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    padding-top: 15px;
    margin-top: -15px;
    padding-bottom: 15px;
    margin-bottom: -15px;
}

.slide-up-text {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
}

/* Scroll Intersection Observer Reveal */
.reveal-up {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    display: inline-block;
    padding: 16px 42px;
    background: #e50914;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    border: 1px solid #e50914;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.btn:hover {
    background: transparent;
    color: #e50914;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.4);
}

.btn-primary {
    background-color: #000;
    color: #fff;
    border: 1px solid #333;
}

.btn-primary:hover {
    background-color: #222;
    transform: translateY(-2px);
}

.btn-light {
    background-color: #fff;
    color: #000;
}

.btn-light:hover {
    background-color: #eee;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
}

.watch-trailer {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.watch-trailer:hover {
    opacity: 1;
    color: #e50914;
    border-bottom: 1px solid #e50914;
}

/* Features/Services Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.feature-card p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Story/About Section */
.story-section {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.story-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.story-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Benefits Bar */
.benefits-bar {
    display: flex;
    justify-content: space-between;
    padding: 40px 10%;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-step {
    border-left: 2px solid #000;
    padding-left: 20px;
}

.step-num {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 10px;
}

.process-step h4 {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Portfolio Section */
.portfolio-categories {
    margin-bottom: 40px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
}

.portfolio-categories span {
    cursor: pointer;
    margin: 0 10px;
    transition: var(--transition);
}

.portfolio-categories span:hover {
    color: #888;
}

.portfolio-section {
    padding-top: 120px;
    padding-bottom: 120px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
}

.portfolio-item img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Website Packages / Pricing Section */
.pricing-section-container {
    max-width: 1200px;
    margin: 0 auto;
}
.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}
.pricing-subtitle {
    color: #aaa;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 10px;
    line-height: 1.5;
}
.pricing-meta {
    font-size: 0.9rem;
    color: #e50914;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Currency Switcher */
.currency-switcher {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}
.currency-btn {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid #444;
    color: #888;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}
.currency-btn:hover {
    border-color: #666;
    color: #fff;
}
.currency-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}
.pricing-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: left;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(5px);
}
.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #666;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}
.premium-card {
    border-color: #e50914;
    background: linear-gradient(180deg, rgba(30, 10, 10, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.15);
    transform: translateY(-15px);
}
.premium-card:hover {
    transform: translateY(-20px);
    border-color: #ff1a26;
    box-shadow: 0 20px 40px rgba(229, 9, 20, 0.3);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.premium-card .pricing-badge {
    background: #e50914;
}

.pricing-card h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}
.pricing-label {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 20px;
    min-height: 40px;
}
.price-block {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.main-price {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.1;
    display: block;
    color: #fff;
}
.sec-price {
    font-size: 1rem;
    color: #888;
    margin-top: 5px;
    display: block;
}

.pricing-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 30px;
}
.pricing-features li {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #ddd;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}
.pricing-features li i {
    color: #e50914;
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-pricing {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #555;
    background: transparent;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 1px;
}
.btn-pricing:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}
.premium-card .btn-pricing {
    background: #e50914;
    border-color: #e50914;
}
.premium-card .btn-pricing:hover {
    background: transparent;
    color: #e50914;
}
.small-note {
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    margin-top: 15px;
    display: block;
}

/* Info Sections below Pricing */
.info-blocks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}
.info-block {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 30px;
}
.info-block h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}
.info-block p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 15px;
}
.info-list {
    list-style: none;
    margin-bottom: 15px;
}
.info-list li {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}
.info-list li i {
    color: #e50914;
    flex-shrink: 0;
}
.highlight-box {
    background: rgba(229, 9, 20, 0.05);
    border: 1px solid rgba(229, 9, 20, 0.2);
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
}
.highlight-box div {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 5px;
}
.highlight-box div:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.highlight-box strong {
    color: #fff;
}
.highlight-box span {
    color: #aaa;
}

.worldwide-banner {
    margin-top: 40px;
    text-align: center;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
}
.worldwide-banner h5 {
    font-size: 1.2rem;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 10px;
}
.worldwide-banner p {
    color: #888;
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-final-cta {
    text-align: center;
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.pricing-final-cta h3 {
    font-size: 2rem;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 15px;
}
.pricing-final-cta p {
    color: #aaa;
    margin-bottom: 30px;
    font-size: 1.1rem;
}
.pricing-final-cta .btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 25px;
    border: 1px solid rgba(200, 200, 200, 0.3);
    border-radius: 4px;
}

.faq-item h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-item p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-methods a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.contact-methods a:hover {
    color: #888;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border: 1px solid #333;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid #444;
    color: #fff;
    font-family: 'Inter', sans-serif;
    outline: none;
    border-radius: 4px;
    transition: var(--transition);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-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='%23ffffff' 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 15px center;
    background-size: 16px;
    cursor: pointer;
}

/* Style the native option dropdown to fit the dark theme perfectly */
.form-group option {
    background-color: #1a1a1a;
    color: #ffffff;
    text-shadow: none;
    font-weight: 500;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #aaa;
    background: rgba(30, 30, 30, 0.8);
}

/* Footer */
footer {
    padding: 50px 10%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid #222;
}

.footer-col h5 {
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid, .pricing-grid, .portfolio-grid, .process-grid, .info-blocks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .story-section {
        flex-direction: column;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    .benefits-bar {
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* Impressive Footer Styles */
.impressive-footer {
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.9), rgba(0, 0, 0, 1));
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 10% 20px;
    position: relative;
    overflow: hidden;
}

.impressive-footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.impressive-footer > * {
    position: relative;
    z-index: 1;
}

.footer-cta {
    text-align: center;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-cta p {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e50914;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(229, 9, 20, 0.6);
    transform: translateY(-2px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .brand-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #888;
    font-size: 0.95rem;
    max-width: 300px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
}

.social-icon:hover {
    background: #e50914;
    border-color: #e50914;
    transform: translateY(-3px);
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.link-group h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group ul li {
    margin-bottom: 15px;
}

.link-group ul li a {
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.link-group ul li a:hover {
    color: #e50914;
    transform: translateX(5px);
}

.custom-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 10%;
    background-color: #000;
}

.legal-text {
    color: #888;
    font-size: 0.95rem;
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .hero {
        justify-content: flex-end;
        padding-bottom: 15vh;
        padding-top: 0;
    }
    .hero-title {
        padding: 0 10px;
        letter-spacing: 2px;
    }
    .hero-text {
        padding: 0 10px;
        max-width: 95%;
    }
    canvas {
        object-fit: cover;
        object-position: center top;
    }
    section {
        padding: 50px 20px;
    }
    header {
        padding: 15px 20px;
    }
    .desktop-nav, .nav-icons {
        display: none !important;
    }
    .hamburger {
        display: block;
    }
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 10px;
    }
    .hero-actions .btn, .hero-actions .watch-trailer {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }
    .features-grid, .pricing-grid, .portfolio-grid, .process-grid, .faq-grid, .info-blocks-grid {
        grid-template-columns: 1fr;
    }
    .contact-form {
        grid-template-columns: 1fr;
        padding: 25px 15px;
    }
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .story-content h2 {
        font-size: clamp(1.8rem, 6vw, 3.5rem);
    }
    .editions-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }
    .impressive-footer {
        padding: 40px 5% 20px;
        flex-direction: column;
        align-items: center;
    }
    .footer-cta {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-brand {
        padding-bottom: 30px;
        margin-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-brand p {
        margin-bottom: 15px;
    }
    .footer-socials {
        justify-content: center;
    }
    .link-group {
        padding-bottom: 30px;
        margin-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
    }
    .link-group:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .custom-footer-bottom {
        flex-direction: column-reverse;
        gap: 30px;
        padding: 40px 20px;
        text-align: center;
    }
    .legal-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-cta h2 {
        font-size: 2rem;
    }
    .benefits-bar {
        justify-content: center;
    }
    .benefit-item {
        width: 100%;
        justify-content: center;
    }
}

.video-close-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2147483647;
    transition: background-color 0.3s;
}

.video-close-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Show the close button only when the container is in fullscreen */
:fullscreen .video-close-btn {
    display: flex !important;
}
:-webkit-full-screen .video-close-btn {
    display: flex !important;
}

/* Restore system cursor when in fullscreen */
:fullscreen, :fullscreen * {
    cursor: auto !important;
}
:-webkit-full-screen, :-webkit-full-screen * {
    cursor: auto !important;
}


.portfolio-back-btn {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.portfolio-back-btn:hover {
    background-color: rgba(229, 9, 20, 0.8);
    border-color: #e50914;
    transform: translateX(-5px);
}


/* Sticky Mobile Contact Bar */
.mobile-sticky-contact {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.mobile-sticky-contact a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    gap: 5px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.mobile-sticky-contact a:last-child {
    border-right: none;
}

.mobile-sticky-contact a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-sticky-contact a i {
    font-size: 1.4rem;
}

.mobile-sticky-contact a[data-contact='whatsapp'] i {
    color: #25D366;
}

.mobile-sticky-contact a[data-contact='call'] i {
    color: #3498db;
}

/* Contact Form Validation */
.contact-form input:focus:invalid, .contact-form select:focus:invalid, .contact-form textarea:focus:invalid {
    border-color: rgba(231, 76, 60, 0.5);
}

.contact-form input:focus:valid, .contact-form select:focus:valid, .contact-form textarea:focus:valid {
    border-color: rgba(46, 204, 113, 0.5);
}

/* Loading Spinner for Buttons */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@media (max-width: 768px) {
    .mobile-sticky-contact {
        display: flex;
    }
    body {
        padding-bottom: 70px; /* Space for the sticky bar */
    }
}

