/* 
    Opli TV - Premium Dark Theme
    Fonts: Inter 
*/

:root {
    --bg-main: #f0f8ff; /* Alice Blue, light blue background matching image */
    --bg-secondary: #ffffff; /* White */
    --bg-card: #ffffff;
    --bg-hover: #e0f2fe; /* Lighter blue for hover */
    
    --primary: #0ea5e9; /* Sky Blue accent */
    --primary-hover: #0284c7;
    --primary-glow: rgba(14, 165, 233, 0.4);
    
    --text-main: #0f172a; /* Dark slate for contrast */
    --text-muted: #475569; /* Slate for muted text */
    
    --border: #bae6fd; /* Light blue border */
    
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    
    --transition: all 0.3s ease;
}

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

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.overflow-hidden { overflow: hidden; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }

p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    font-size: 1rem;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px 0 var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 var(--primary-glow);
}

.btn-secondary {
    background-color: var(--bg-secondary);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--bg-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: white;
}

.btn-outline:hover {
    background: var(--bg-hover);
    border-color: var(--text-muted);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(240, 248, 255, 0.9), rgba(186, 230, 253, 0.9));
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.5rem 0;
    background: linear-gradient(to bottom, #f0f8ff, #bae6fd);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 1rem;
}

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

.logo-img {
    height: 40px; /* Adjust based on original image aspect ratio */
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.desktop-nav {
    flex-shrink: 0;
}

.desktop-nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.desktop-nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    background: #ffffff;
    border: 1.5px solid #d0d7e2;
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.hamburger:hover {
    border-color: var(--primary);
    background: #f8fafc;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2.2px;
    background-color: var(--text-main);
    border-radius: 2px;
    margin: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, background-color 0.25s ease;
}

.hamburger.active {
    border-color: var(--primary);
    background: #ffffff;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.2px) rotate(45deg);
    background-color: var(--primary);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.2px) rotate(-45deg);
    background-color: var(--primary);
}

/* Mobile Menu Backdrop Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

/* Mobile Menu Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 86%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(175deg, #ffffff 0%, #f0f8ff 45%, #e0f2fe 100%);
    padding: 85px 1.4rem 2rem;
    transition: right 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    box-shadow: -15px 0 40px rgba(14, 165, 233, 0.18), -4px 0 12px rgba(15, 23, 42, 0.08);
    border-left: 1.5px solid rgba(186, 230, 253, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.mobile-menu nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 2rem;
    padding: 0;
}

.mobile-menu nav li {
    list-style: none;
    width: 100%;
}

.mobile-menu nav li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1.15rem;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(186, 230, 253, 0.7);
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(14, 165, 233, 0.04);
    text-decoration: none;
}

.mobile-menu-link-content {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.mobile-menu nav li a::after {
    content: "›";
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
    transition: transform 0.2s ease;
}

.mobile-menu nav li a:hover,
.mobile-menu nav li a:active {
    background: #ffffff;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(3px);
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.16);
}

.mobile-menu nav li a:hover::after {
    transform: translateX(3px);
}

.mobile-menu nav li a[style*="font-weight: 700"],
.mobile-menu nav li a.active {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.14), rgba(2, 132, 199, 0.06)) !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
}

.mobile-menu nav .btn-primary {
    width: 100%;
    padding: 0.95rem 1.25rem;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
    border: none;
    transition: all 0.2s ease;
    margin-top: auto;
}

.mobile-menu nav .btn-primary:hover {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.45);
}

.mobile-menu-support {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.15rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-align: center;
}

.mobile-menu-support .dot-live {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f8ff 0%, #bae6fd 100%);
    z-index: 1;
}

.hero-overlay {
    display: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    column-gap: 3rem;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 680px;
    margin-left: -20px;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 3.5vw, 3.25rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-title-part1 {
    display: block;
    white-space: nowrap;
}

.hero-title-part2 {
    display: block;
    font-size: 0.88em;
    white-space: nowrap;
}

.hero-image-mobile {
    display: none;
}

.hero-image {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transform: scale(1.15);
    transform-origin: center right;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    margin-top: 2rem;
}

/* HERO STATS */
.hero-stats {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
    text-align: left;
}

.hero-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.1rem;
}

.hero-stats .stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* GALLERY (HORIZONTAL) */
.gallery-section {
    position: relative;
}

.gallery-wrapper {
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
    width: max-content;
    animation: scroll-gallery 40s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-gallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)); }
}

.gallery-card {
    position: relative;
    flex: 0 0 200px;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
}

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

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    z-index: 2;
}

.card-overlay span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-number {
    position: absolute;
    bottom: -5px;
    left: -2px;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: #000;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.85);
    z-index: 10;
    pointer-events: none;
    font-family: 'Arial Black', Impact, sans-serif;
    letter-spacing: -3px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Soft shadow */
    border: none;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.recommended-badge-top {
    position: absolute;
    top: -15px;
    right: 20px;
    background: white;
    color: var(--text-main);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2);
    border: 2px solid var(--primary);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: var(--primary); /* Cyan/blue */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.pricing-icon svg {
    width: 32px;
    height: 32px;
}

.pricing-title {
    color: var(--text-main);
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pricing-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.price-left {
    display: flex;
    flex-direction: column;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
}

.duration {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 0.6rem;
}

.btn-round {
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.pricing-features {
    margin-bottom: 1.25rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.95rem;
    color: var(--text-muted);
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* FILMS GRID */
.sub-title {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

@keyframes floatCard {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)); } /* -50% of content, minus half the gap */
}

.marquee-container {
    overflow: hidden;
    width: 100%;
    margin-top: 3rem;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scrollMarquee 25s linear infinite;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.poster-card {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 2/3;
    cursor: pointer;
    width: 200px;
    flex-shrink: 0;
}

.poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.poster-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: var(--transition);
}

.poster-card:hover img { transform: scale(1.1); }
.poster-card:hover span { opacity: 1; }

/* CHANNELS */
.channel-marquee {
    gap: 0.5rem;
}

.channel-card {
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
}

.channel-card:hover {
    transform: translateY(-5px);
}

.channel-card img {
    height: 110px;
    width: 170px;
    object-fit: contain;
}

/* LARGE CTA */
.large-cta {
    position: relative;
    padding: 10rem 0;
    background: url('../tes.jpg') center/cover fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9,9,11,0.3);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: white;
}

.cta-content p {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: white;
}

/* CATALOGUE GLASS CARDS */
.catalogue-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.catalogue-image {
    width: 100%;
}

.catalogue-image img {
    width: 100%;
    height: auto;
    display: block;
}

.glass-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    max-width: 100%;
}

.glass-card {
    background: rgba(13, 31, 53, 0.85); /* Deep dark blue transparent */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.8rem;
    color: white;
    transition: transform 0.3s ease, background 0.3s ease;
    box-sizing: border-box;
    width: 100%;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(13, 31, 53, 0.95);
}

.glass-card .glass-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.8rem;
    color: var(--primary); /* A nice bright blue for icons */
}

.glass-card .glass-icon svg {
    width: 100%;
    height: 100%;
}

.glass-card h3 {
    font-size: 1.18rem;
    font-weight: 800;
    margin-bottom: 0.55rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.glass-card p {
    font-size: 0.96rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

/* Tablet & iPad screens: iPad Mini (768px), iPad Air (820px), iPad Pro (834px & 1024px) */
@media (max-width: 1024px) {
    .catalogue-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .catalogue-image {
        width: 100%;
        max-width: 860px;
        margin: 0 auto;
        text-align: center;
    }

    .catalogue-image img {
        width: 100%;
        max-width: 860px;
        margin: 0 auto;
    }

    .glass-cards-container {
        width: 100%;
        max-width: 860px;
        margin: 0 auto;
        gap: 1.35rem;
    }

    .glass-card {
        width: 100%;
        padding: 1.75rem 2.2rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }

    .glass-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.6rem;
    }

    .glass-card p {
        font-size: 1.02rem;
        line-height: 1.65;
    }
}

@media (max-width: 767px) {
    .glass-card {
        padding: 1.25rem 1.4rem;
    }

    .glass-card h3 {
        font-size: 1.1rem;
    }

    .glass-card p {
        font-size: 0.92rem;
    }
}

/* DEVICES */
.bg-darker {
    background: var(--bg-secondary);
}

.devices-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 4rem 0;
    display: flex;
}

.devices-icons {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    align-items: center;
    animation: marquee 20s linear infinite;
    min-width: 200%;
}

.devices-icons:hover {
    animation-play-state: paused;
}

.device-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex: 0 0 auto;
}

.device-brand:hover {
    transform: scale(1.1);
}

/* NO COMMITMENT */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    text-align: center;
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 50%;
    border: 1px solid var(--border);
}

/* TESTIMONIALS */
.testimonials-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 4rem;
    display: flex;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    animation: marquee 30s linear infinite;
    min-width: 200%;
}

.testimonials-grid:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    width: 350px;
    height: 350px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
}

.google-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.google-logo {
    width: 24px;
    height: 24px;
}

.stars {
    color: #fbbf24; /* Yellow */
    font-size: 1.25rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-main);
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    object-fit: cover;
}

/* FAQ */
.faq-container {
    max-width: 800px;
}

.accordion {
    margin-top: 3rem;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--bg-hover);
}

.accordion-header .icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion-header.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: var(--bg-secondary);
}

.accordion-header.active + .accordion-content {
    padding: 1.5rem;
    max-height: 200px; /* Adjust if content is very long */
}

.accordion-content p {
    margin: 0;
}

/* FOOTER */
.footer {
    background: #060911;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.05fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    align-items: start;
    text-align: left;
}

.footer-brand .logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-brand .logo-img {
    height: 38px;
    width: auto;
}

.footer-brand p {
    margin-top: 1rem;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 320px;
}

.footer-links {
    text-align: left;
}

.footer-links h4 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.3px;
    text-align: left;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.92rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-contact-col {
    text-align: left;
}

.footer-contact-col h4 {
    text-align: left;
}

.footer-contact-col ul {
    align-items: flex-start;
    text-align: left;
}

.footer-contact-col > div {
    text-align: left !important;
}

.footer-pay-img {
    max-width: 210px;
    width: 100%;
    height: auto;
    display: block;
    margin-top: 1.25rem;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #64748b;
    letter-spacing: 0.01em;
    margin: 0;
}

/* ANIMATIONS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE DESIGN - IPAD & TABLETS (iPad Mini, iPad Air, iPad Pro) */
@media (min-width: 768px) and (max-width: 1200px) {
    .hero {
        padding-top: 110px;
        min-height: auto;
        padding-bottom: 4rem;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        width: 100%;
        max-width: 960px;
        margin: 0 auto;
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    .hero-content {
        width: 100%;
        max-width: 900px;
        margin: 0 auto !important;
        text-align: center;
    }

    .hero-content h1 {
        font-size: clamp(1.9rem, 3.5vw, 2.8rem);
        line-height: 1.25;
        margin-bottom: 1.5rem;
    }

    .hero-title-part1,
    .hero-title-part2 {
        display: inline-block !important;
        white-space: nowrap;
    }

    .hero-title-part2 {
        font-size: 1em !important;
        margin-left: 0.4rem;
    }

    .hero-image {
        display: none;
    }
    
    .hero-image-mobile {
        display: block;
        margin: 0 auto 2rem;
        width: 95%;
        max-width: 720px;
    }

    .hero-image-mobile img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        margin: 0 auto;
    }

    .hero-content p {
        font-size: 1.15rem;
        line-height: 1.65;
        max-width: 750px;
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        width: 100%;
        margin: 0 auto 2.5rem;
    }

    .hero-buttons .btn {
        padding: 1rem 2.25rem;
        font-size: 1.1rem;
        font-weight: 700;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3.5rem;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .hero-stats .stat-item {
        text-align: center;
    }

    .hero-stats .stat-number {
        font-size: 2.2rem;
        margin-bottom: 0.25rem;
    }

    .hero-stats .stat-label {
        font-size: 0.85rem;
    }

    .catalogue-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .pricing-card.highlighted {
        transform: scale(1);
    }
    .pricing-card.highlighted:hover {
        transform: translateY(-10px);
    }
}

/* ==========================================================================
   RESPONSIVE HEADER & NAVIGATION (iPads, Tablets, & Smartphones)
   ========================================================================== */

/* Universal Tablet & Mobile Navigation: All iPads (portrait & iPad Mini landscape) & Phones (<= 1024px) */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

    .header-container {
        height: 74px;
        gap: 0.85rem;
    }

    .logo-img {
        height: 38px;
    }
}

/* Tablet screens: iPad Mini (768px), iPad Air (820px), iPad Pro portrait (834px & 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .header-actions {
        gap: 1.15rem;
    }

    .header-actions .btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        padding: 0.65rem 1.35rem;
        font-size: 0.9rem;
        font-weight: 700;
        white-space: nowrap;
        border-radius: 12px;
    }

    .mobile-menu {
        width: 400px;
        max-width: 82vw;
        padding: 90px 1.8rem 2.5rem;
    }

    .mobile-menu nav li a {
        padding: 1.05rem 1.25rem;
        font-size: 1.05rem;
    }
}

/* Landscape iPad Air (1180px), iPad Pro 11" (1194px) & Small Laptops (1025px to 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
    .desktop-nav {
        display: block !important;
    }

    .hamburger {
        display: none !important;
    }

    .desktop-nav ul {
        gap: 1.15rem;
    }

    .desktop-nav a {
        font-size: 0.88rem;
        white-space: nowrap;
    }

    .header-actions {
        gap: 1rem;
    }

    .header-actions .btn {
        padding: 0.62rem 1.15rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .logo-img {
        height: 38px;
    }
}

/* RESPONSIVE DESIGN - SMARTPHONES */
@media (max-width: 767px) {
    .header-actions .btn {
        display: none !important;
    }

    .header-actions {
        gap: 0.75rem;
    }
    
    .header-container {
        height: 70px;
    }

    .logo-img {
        height: 34px;
    }
    
    .hero {
        text-align: center;
        padding-top: 90px;
    }
    
    .catalogue-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-container {
        margin: 0 auto;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-content {
        margin: 0 auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .hero-content h1 {
        font-size: clamp(1.55rem, 5.8vw, 2.1rem);
        line-height: 1.2;
        margin: 0 auto 1.25rem !important;
        text-align: center !important;
        width: 100% !important;
    }

    .hero-title-part1,
    .hero-title-part2 {
        display: block !important;
        text-align: center !important;
        margin: 0 auto !important;
        white-space: normal !important;
    }

    .hero-title-part2 {
        font-size: 0.9em;
    }
    
    .hero-image {
        display: none !important;
    }

    .hero-image-mobile {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto 1.5rem !important;
        width: 100% !important;
        max-width: 440px !important;
        text-align: center !important;
    }
    
    .hero-image-mobile img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    .hero-content p {
        font-size: 0.96rem;
        line-height: 1.6;
        padding: 0 0.5rem;
        text-align: center !important;
        margin: 0 auto 1.75rem !important;
        max-width: 500px !important;
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 330px !important;
        margin: 0 auto 2rem !important;
        gap: 0.75rem !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        white-space: normal;
        padding: 0.88rem 1.25rem;
        font-size: 0.95rem;
        text-align: center !important;
    }
    
    .hero-stats {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 380px !important;
        gap: 1.5rem !important;
    }

    .hero-stats .stat-item {
        text-align: center !important;
    }
    
    .hero-overlay {
        display: none;
    }
    
    .price {
        font-size: 3rem;
    }
    
}

/* ==========================================================================
   RESPONSIVE FOOTER SYSTEM (Smartphones, Tablets, & iPad Pro)
   ========================================================================== */

/* iPad Pro (1024px portrait & landscape, 1194px, 1366px) & Desktops (>= 992px) */
@media (min-width: 992px) {
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1.6fr 1fr 1.05fr 1.2fr !important;
        gap: 2.5rem !important;
        text-align: left !important;
    }

    .footer-brand {
        text-align: left !important;
    }

    .footer-brand .logo {
        justify-content: flex-start !important;
    }

    .footer-brand p {
        margin: 1rem 0 0 !important;
        max-width: 320px;
        text-align: left !important;
    }

    .footer-links,
    .footer-contact-col {
        text-align: left !important;
    }

    .footer-links h4,
    .footer-contact-col h4 {
        text-align: left !important;
        margin-bottom: 1.25rem;
    }

    .footer-links ul,
    .footer-contact-col ul {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .footer-contact-col > div {
        text-align: left !important;
    }

    .footer-pay-img {
        margin: 1.25rem 0 0 0 !important;
        max-width: 210px;
    }
}

/* Tablets: iPad Mini (768px), iPad Air (820px), iPad Pro 11" (834px), & 640px-991px */
@media (min-width: 640px) and (max-width: 991px) {
    .footer {
        padding: 3.5rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        column-gap: 3.5rem !important;
        row-gap: 2.75rem !important;
        text-align: left !important;
    }

    .footer-brand {
        text-align: left !important;
    }

    .footer-brand .logo {
        justify-content: flex-start !important;
    }

    .footer-brand p {
        max-width: 320px;
        margin: 0.9rem 0 0 !important;
        text-align: left !important;
    }

    .footer-links,
    .footer-contact-col {
        text-align: left !important;
    }

    .footer-links h4,
    .footer-contact-col h4 {
        text-align: left !important;
        margin-bottom: 1.15rem;
    }

    .footer-links ul,
    .footer-contact-col ul {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .footer-contact-col > div {
        text-align: left !important;
    }

    .footer-pay-img {
        margin: 1.25rem 0 0 0 !important;
        max-width: 200px;
    }
}

/* Smartphones (< 640px): Centered titles, links, and payment methods */
@media (max-width: 639px) {
    .footer {
        padding: 3.2rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 2.5rem !important;
    }

    .footer-brand {
        text-align: center !important;
    }

    .footer-brand .logo {
        justify-content: center !important;
        margin: 0 auto;
    }

    .footer-brand p {
        margin: 1rem auto 0 !important;
        max-width: 320px;
        text-align: center !important;
    }

    .footer-links,
    .footer-contact-col {
        text-align: center !important;
    }

    .footer-links h4,
    .footer-contact-col h4 {
        text-align: center !important;
        margin-bottom: 1.1rem !important;
        width: 100% !important;
    }

    .footer-links ul,
    .footer-contact-col ul {
        align-items: center !important;
        text-align: center !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .footer-links li,
    .footer-contact-col li {
        width: 100% !important;
        text-align: center !important;
    }

    .footer-links a,
    .footer-contact-col a {
        display: inline-block;
        text-align: center !important;
    }

    .footer-contact-col > div {
        text-align: center !important;
        margin-top: 1.5rem !important;
        width: 100% !important;
    }

    .footer-pay-img {
        margin: 1.25rem auto 0 !important;
        max-width: 210px !important;
        display: block !important;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(1.4rem, 6.4vw, 1.85rem);
    }

    h2 { font-size: 1.6rem; }

    .hero-image-mobile {
        width: 100%;
        max-width: 380px;
    }

    .hero-stats {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        width: 100%;
        gap: 0.5rem;
    }

    .hero-stats .stat-item {
        flex: 1;
        min-width: 0;
        padding: 0 2px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.1rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.55rem;
        line-height: 1.2;
    }
    
    .posters-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

/* ==========================================================================
   LANGUAGE SELECTOR
   ========================================================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.lang-selector {
    position: relative;
    display: inline-block;
    user-select: none;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.85rem;
    background: #ffffff;
    border: 1.5px solid #d0d7e2;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
    height: 42px;
    outline: none;
}

.lang-btn:hover,
.lang-selector.open .lang-btn {
    border-color: var(--primary);
    background: #f8fafc;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.18);
}

.lang-flag-current,
.lang-flag-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.lang-code-current {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #0f172a;
}

.lang-chevron {
    transition: transform 0.25s ease;
    color: #1e293b;
    margin-left: 2px;
    display: flex;
    align-items: center;
}

.lang-selector.open .lang-chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
    padding: 0.4rem;
    min-width: 175px;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.85rem;
    border: none;
    background: transparent;
    border-radius: 9px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;
    transition: background 0.15s ease, color 0.15s ease;
}

.lang-option:hover {
    background: #f1f5f9;
}

.lang-option.active {
    background: rgba(14, 165, 233, 0.1);
}

.lang-option .lang-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f172a;
}

.lang-option .lang-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: auto;
}

.lang-option.active .lang-name,
.lang-option.active .lang-label {
    color: var(--primary);
    font-weight: 700;
}

/* Hide Google Translate top banner, iframes & artifacts completely */
iframe.goog-te-banner-frame,
iframe.skiptranslate,
.goog-te-banner-frame,
.goog-te-banner,
#goog-gt-tt,
.goog-te-balloon-frame,
.VIpgJd-ZVi9od-OR9Bgd-OAZmUc,
.VIpgJd-ZVi9od-l4eHX-hSRGPd,
div[id^="goog-gt-"],
iframe[id^=":"],
iframe[class*="goog"],
iframe[src*="translate.google"] {
    display: none !important;
    visibility: hidden !important;
    height: 0px !important;
    width: 0px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    border: none !important;
    clip: rect(0, 0, 0, 0) !important;
}

html {
    top: 0px !important;
}

body {
    top: 0px !important;
    position: static !important;
}

.header {
    top: 0px !important;
}

.goog-tooltip, .goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

#google_translate_element {
    display: none !important;
}

