/* Color Variables */
:root {
    --primary-orange: #fc8601;
    --secondary-orange: #FFA800;
    --dark-bg: #12131b;
    --light-text: #ffffff;
    --gray-text: #b3b3b3;
    --dark-card: #1a1a1a;
    --hover-orange: #e67700;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adjust this value based on your header height */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header Styles */
.header-section {
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar {
    padding: 0.5rem 0;
}

.logo {
    width: 100px;   
    /* height: 100px; */
    object-fit: cover;
    margin-right: 0.5rem;
    margin-left: 10px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-orange);
}

.language-select {
    background-color: transparent;
    border: 1px solid var(--gray-text);
    color: var(--light-text);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    width: 100px;
    min-width: 100px;
}

.language-select option {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.btn-signin {
    background-color: var(--primary-orange);
    color: var(--light-text);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.btn-signin:hover {
    background-color: var(--hover-orange);
    color: var(--light-text);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: url('https://cdn.blazespinsmail.com/core/modules/hero/hero-banner-primary.jpg')center/cover no-repeat;*/
    background: url('19953639_6195678.jpg')center/cover no-repeat;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 19, 27, 0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, transparent 0%, rgba(18, 19, 27, 0.8) 100%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 200px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--gray-text);
}

.hero-signup {
    margin-top: 2rem;
}


.signup-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.email-form {
    max-width: 600px;
    margin: 0 auto;
}


.get-started-btn {
    background-color: var(--primary-orange);
    border: none;
    color: var(--light-text) !important;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px !important;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.get-started-btn:hover {
    background-color: var(--hover-orange);
    color: var(--light-text) !important;
    text-decoration: none;
}

.get-started-btn i {
    transition: transform 0.3s ease;
}

.get-started-btn:hover i {
    transform: translateX(4px);
}

/* Curved Border */
.curve-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.curve-border svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}



/* Owl Carousel Custom Styles */
.owl-nav {
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    pointer-events: none;
}

.owl-prev,
.owl-next {
    position: absolute;
    width: 40px !important;
    height: 40px !important;
    background-color: var(--primary-orange) !important;
    border-radius: 50% !important;
    color: var(--light-text) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: background-color 0.3s;
}

.owl-prev:hover,
.owl-next:hover {
    background-color: var(--hover-orange) !important;
}

.owl-prev {
    left: -20px;
}

.owl-next {
    right: -20px;
}

.owl-dots {
    display: none;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background-color: var(--dark-card);
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(252, 134, 1, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.feature-card p {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

.accordion-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: transparent;
    color: var(--light-text);
    border: none;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(252, 134, 1, 0.1);
    color: var(--light-text);
    box-shadow: none;
}

.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-orange);
    font-weight: bold;
    background-image: none;
    transition: transform 0.3s;
}

.accordion-button:not(.collapsed)::after {
    content: '×';
    transform: rotate(0deg);
}

.accordion-body {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--gray-text);
    padding: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

/* Footer */
.footer {
    background-color: var(--dark-card);
    padding: 3rem 0 2rem;
    color: var(--gray-text);
    text-align: center !important;
}

.footer-contact {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-contact a {
    color: var(--gray-text);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--primary-orange);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.language-select-footer {
    background-color: transparent;
    border: 1px solid var(--gray-text);
    color: var(--light-text);
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    width: 150px;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.language-select-footer option {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.footer-country {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-top: 1rem;
}

/* Netflix-style Curved Divider */
.netflix-curve-divider {
    overflow-x: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6.25rem;
    z-index: 1;
}

.curve-container {
    position: relative;
    height: 100%;
}

.curve-element {
    position: absolute;
    height: 100%;
    top: 0;
    margin: auto;
    display: flex;
    align-items: center;
    border: solid 0.25rem transparent;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    border-bottom: none;
    background: radial-gradient(
        50% 500% at 50% -420%,
        rgba(252, 134, 1, 0.4) 80%,
        rgba(0, 0, 0, 0.1) 100%
    ), var(--dark-bg);
    background-clip: padding-box;
    width: 120%;
    left: -10%;
}

.curve-element:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin-top: -0.25rem;
    border-radius: inherit;
    background: linear-gradient(
        to right, 
        rgba(18, 19, 27, 1) 16%, 
        rgba(252, 134, 1, 0.8), 
        var(--primary-orange), 
        rgba(255, 168, 0, 0.8), 
        rgba(18, 19, 27, 1) 84%
    );
}

.curve-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg);
    z-index: -2;
}
.input-group{
    justify-content: center;
}
.bottom-form {
    padding-top: 50px;
}

/* About/Promo Section Styles */
.about-section {
    padding: 1rem 0;
    background-color: var(--dark-bg);
}

.promo-bar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-icon {
    color: var(--primary-orange);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.promo-message {
    flex: 1;
    color: var(--light-text);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.promo-subtitle {
    color: var(--gray-text);
    font-weight: normal;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.promo-action {
    display: flex;
    align-items: center;
}

.btn-learn {
    color: var(--light-text);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.btn-learn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--light-text);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .promo-bar {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }

    .promo-message {
        flex-direction: column;
        gap: 0.25rem;
    }

    .promo-subtitle {
        margin-left: 0;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: row !important;
        gap: 0.5rem;
    }
    .hero-background{
        background-position-x: 70% !important;
    }
    
    .language-select {
        width: 80px;
        min-width: 80px;
        font-size: 0.8rem;
        padding: 0.25rem;
    }
    
    .btn-signin {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-section .container {
        padding-top: 0px;
        top: 25%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trending-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .trending-image {
        height: 250px;
    }
    
    .trending-item {
        flex: 0 0 150px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-btn-prev {
        left: -20px;
    }
    
    .slider-btn-next {
        right: -20px;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .email-form .input-group {
        flex-direction: column;
        max-width: 100%;
    }
    
    .email-input {
        border-radius: 4px;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .get-started-btn {
        border-radius: 4px;
        width: 100%;
    }
    .hero-signup input{
        width: 100% !important;
        border-radius: 5px !important;
    }
    .faq-section input{
        width: 100% !important;
        border-radius: 5px !important;
    }
    .get-started-btn{
        border-radius: 5px !important;
    }
    .accordion-button::after {
        display: flex;
        align-items: center;
    }
    .curve-element {
        width: 200%;
        left: -50%;
    }
    
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-card h4 {
        font-size: 1.2rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .trending-item {
        flex: 0 0 120px;
    }
    
    .trending-image {
        height: 180px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section .container > * {
    animation: fadeInUp 0.8s ease-out;
}

.trending-item {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card {
    animation: fadeInUp 0.7s ease-out;
}

/* Media query updates for trending section */
@media (max-width: 768px) {
    .trending-slider-container {
        margin: 0 -10px;
        padding: 20px 10px;
    }
    
    .trending-item {
        padding: 5px;
    }
    
    .trending-image {
        height: 240px;
    }
    
    .owl-prev,
    .owl-next {
        width: 35px !important;
        height: 35px !important;
    }
    
    .owl-prev {
        left: -10px;
    }
    
    .owl-next {
        right: -10px;
    }
}

@media (max-width: 576px) {
    .trending-slider-container {
        margin: 0 -5px;
        padding: 20px 5px;
    }
    
    .trending-image {
        height: 210px;
    }
    
    .owl-prev,
    .owl-next {
        width: 30px !important;
        height: 30px !important;
    }
}