/*
Theme: EgoTrip
File: home.css - UPDATED
Description: Homepage specific styles using unified card design
Version: 3.0 - Uses curator card design for experiences and testimonials
Changes:
- Removed old .testimonial-card, .testimonials-carousel, .testimonials-track styles
- All sections now use .curator-card design
- Three carousels: Experiences, Curators, Testimonials
*/

/* ============================================
   HERO SECTION WITH VIDEO BACKGROUND
============================================ */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    max-height: 900px;
    margin: 0 2rem 2rem 2rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    padding: 0 2rem;
    width: 100%;
}

.hero-text {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--color-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin: 0 auto;
}

.hero-search {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.search-form {
    display: flex;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    transition: all var(--transition-base);
}

.search-input-wrapper:focus-within {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-2px);
}

.search-icon {
    color: var(--color-gray);
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 1.25rem 1rem;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: var(--color-primary);
    background: transparent;
}

.search-input::placeholder {
    color: var(--color-gray);
}

.popular-tag {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.875rem;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.popular-tag a {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.popular-tag a:hover {
    color: var(--color-accent-dark);
}

.search-submit {
    padding: 1.25rem 2.5rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    box-shadow: var(--shadow-accent);
}

.search-submit:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent-lg);
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.4s backwards, bounce 2s ease-in-out 1.4s infinite;
    cursor: pointer;
}

.hero-scroll svg {
    width: 20px;
    height: 20px;
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section {
        margin: 0 1.5rem 1.5rem 1.5rem;
        border-radius: var(--radius-lg);
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 100vh;
        margin: 0 1rem 1rem 1rem;
        border-radius: var(--radius-md);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-input-wrapper {
        padding: 0 1rem;
    }
    
    .search-input {
        padding: 1rem 0.5rem;
    }
    
    .popular-tag {
        display: none;
    }
    
    .search-submit {
        width: 100%;
        padding: 1.125rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        margin: 0 0.5rem 0.5rem 0.5rem;
        border-radius: var(--radius-sm);
    }
    
    .hero-text {
        margin-bottom: 2rem;
    }
    
    .hero-search {
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-text,
    .hero-search,
    .hero-scroll {
        animation: none;
    }
}

/* ============================================
   LOGO SCROLLER SECTION
============================================ */
.logo-scroller-section {
    padding: var(--section-padding);
    background: white;
    overflow: hidden;
}

.logo-scroller {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: logoScroll 40s linear infinite;
    width: fit-content;
}

.logo-track img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.4;
    transition: opacity var(--transition-base);
    filter: grayscale(100%);
}

.logo-track img:hover {
    opacity: 0.7;
}

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

/* ============================================
   UNIFIED CARD DESIGN
   Used for: Experiences, Curators, Testimonials
============================================ */

.curators-section {
    padding: 3rem 0;
    background: white;
}

/* Experience Section Styling */
.experiences-section {
    background: #fafafa;
}

/* Testimonials Section Styling */
.testimonials-section-v2 {
    background: var(--bg-gray-lightest);
}

.section-header {
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-top: 1rem;
    line-height: 1.6;
}

/* Curator Carousel */
.curator-carousel {
    position: relative;
    max-width: 100vw;
    overflow: hidden;
}

.curator-carousel-wrapper {
    overflow: hidden;
    padding: 2rem 0;
}

.curator-carousel-track {
    display: flex;
    gap: 0.5rem;
    transition: transform var(--transition-slow);
    padding-left: 50%;
    padding-right: 50%;
}

/* Curator Card */
.curator-card {
    flex: 0 0 320px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-slow);
    cursor: pointer;
    opacity: 0.6;
    transform: scale(0.85);
    box-shadow: var(--shadow-xs);
    position: relative;
}

.curator-card.active {
    flex: 0 0 360px;
    opacity: 1;
    transform: scale(1);
    box-shadow: var(--shadow-md);
    z-index: 10;
    margin: 0 0.5rem;
}

.curator-card:hover {
    opacity: 0.8;
}

.curator-card.active:hover {
    opacity: 1;
}

/* Curator Image */
.curator-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    background: var(--color-gray-light);
}

.curator-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.curator-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 3;
}

.curator-card:hover .curator-play-btn,
.curator-card.active .curator-play-btn {
    opacity: 1;
}

/* Quote icon for testimonials */
.quote-icon {
    display: block;
}

/* Curator Info - Overlay */
.curator-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.4) 80%,
        transparent 100%
    );
    z-index: 2;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-medium);
    pointer-events: none;
}

.curator-card:hover .curator-info,
.curator-card.active .curator-info {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.curator-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.curator-location {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.curator-location a {
    color: var(--color-white);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.curator-location a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.curator-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.carousel-nav:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.carousel-nav:hover svg {
    stroke: white;
}

.carousel-prev {
    left: 2rem;
}

.carousel-next {
    right: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .curator-card {
        flex: 0 0 280px;
    }
    
    .curator-card.active {
        flex: 0 0 320px;
        margin: 0 0.375rem;
    }
    
    .curator-image {
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .logo-track {
        gap: 3rem;
    }
    
    .logo-track img {
        height: 30px;
    }
    
    .curators-section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .curator-carousel-track {
        gap: 0.375rem;
    }
    
    .curator-card {
        flex: 0 0 240px;
    }
    
    .curator-card.active {
        flex: 0 0 280px;
        margin: 0 0.3rem;
    }
    
    .curator-image {
        min-height: 400px;
    }
    
    .curator-info {
        padding: 1.5rem 1rem 1rem 1rem;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 1rem;
    }
    
    .carousel-next {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .curator-card {
        flex: 0 0 220px;
    }
    
    .curator-card.active {
        flex: 0 0 260px;
        margin: 0 0.25rem;
    }
    
    .curator-image {
        min-height: 380px;
    }
}

/* ============================================
   TIME IS PRECIOUS SECTION
============================================ */
.time-precious-section {
    margin: 4rem 2rem;
    padding: var(--section-padding);
    background-image: url('https://www.elsewhere.io/img/trip-splash.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.time-precious-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.time-precious-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}

.time-precious-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.time-precious-left {
    padding-right: 2rem;
}

.time-precious-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.time-precious-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 500;
    color: var(--color-gray-dark);
    line-height: 1.5;
}

.time-precious-right {
    padding-left: 2rem;
}

.time-precious-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-gray-dark);
}

@media (max-width: 1024px) {
    .time-precious-section {
        margin: 3rem 1.5rem;
        padding: 3rem 0;
    }
    
    .time-precious-container {
        padding: 0 2rem;
    }
    
    .time-precious-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .time-precious-section {
        margin: 2rem 1rem;
        padding: 2.5rem 0;
        border-radius: var(--radius-md);
    }
    
    .time-precious-container {
        padding: 0 2rem;
    }
    
    .time-precious-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .time-precious-left,
    .time-precious-right {
        padding: 0;
    }
    
    .time-precious-title {
        font-size: 1.75rem;
    }
    
    .time-precious-subtitle {
        font-size: 1.125rem;
    }
    
    .time-precious-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .time-precious-section {
        margin: 1.5rem 0.5rem;
        padding: 2rem 0;
        border-radius: var(--radius-sm);
    }
    
    .time-precious-container {
        padding: 0 1.5rem;
    }
}

/* ============================================
   HOW IT WORKS SECTION
============================================ */
.how-it-works-section {
    padding: var(--section-padding);
    background: white;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 4rem;
}

.how-it-works-content {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 3rem;
    align-items: start;
}

.how-it-works-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.how-tabs {
    display: flex;
    gap: 1rem;
}

.how-tab {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--color-purple-lighter);
    border: 2px solid transparent;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-base);
}

.how-tab.active {
    background: var(--color-purple-light);
    border-color: var(--color-purple);
}

.how-tab:hover {
    background: var(--color-purple-light);
}

.tab-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-purple);
    line-height: 1;
}

.tab-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.tab-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gray-dark);
}

.tab-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.how-content {
    position: relative;
    min-height: 200px;
}

.content-panel {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeIn 0.4s ease;
}

.content-panel.active {
    display: flex;
}

.content-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.content-icon {
    flex-shrink: 0;
    color: var(--color-gray);
    margin-top: 0.25rem;
}

.content-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-dark);
}

.how-it-works-right {
}

.video-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-purple-light);
    aspect-ratio: 16/9;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-text {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 2rem;
    max-width: 300px;
    text-align: right;
}

.video-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
}

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

@media (max-width: 1024px) {
    .how-it-works-content {
        grid-template-columns: 55% 45%;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: var(--section-padding);
    }
    
    .section-title {
        margin-bottom: 2.5rem;
    }
    
    .how-it-works-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .how-tabs {
        flex-direction: column;
    }
    
    .how-tab {
        padding: 1rem 1.25rem;
    }
    
    .tab-number {
        font-size: 2rem;
    }
    
    .video-text {
        padding: 1.5rem;
        max-width: 250px;
    }
    
    .video-text h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .how-tab {
        gap: 0.75rem;
        padding: 0.875rem 1rem;
    }
    
    .tab-number {
        font-size: 1.75rem;
    }
    
    .tab-title,
    .tab-subtitle {
        font-size: 0.875rem;
    }
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
    padding: var(--section-padding);
    background: white;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.faq-item {
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    background: white;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.active {
    border-color: var(--color-accent);
    background: var(--bg-red-light);
}

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

.faq-question:hover {
    color: var(--color-accent);
}

.faq-item.active .faq-question {
    color: var(--color-accent);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--color-accent);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-dark);
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .faq-section {
        padding: var(--section-padding);
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
}

/* ============================================
   FINAL CTA SECTION
============================================ */
.final-cta-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('https://www.elsewhere.io/webflow/images/Jordan-destination.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 2rem;
    overflow: hidden;
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.final-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.final-cta-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .final-cta-section {
        min-height: 350px;
        padding: 4rem 1.5rem;
    }
    
    .final-cta-title br,
    .final-cta-text br {
        display: none;
    }
    
    .final-cta-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.5) 100%
        );
    }
}

@media (max-width: 480px) {
    .final-cta-section {
        min-height: 300px;
        padding: 3rem 1rem;
    }
    
    .final-cta-content {
        padding: 0 1rem;
    }
}

/* ============================================
   NEWSLETTER SECTION
============================================ */
.newsletter-section {
    padding: var(--section-padding);
    background: white;
    text-align: center;
}

.newsletter-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-dark);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 1rem;
    padding: 0.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-pill);
    transition: border-color 0.3s ease;
}

.newsletter-input-wrapper:focus-within {
    border-color: var(--color-accent);
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: var(--color-primary);
    background: transparent;
}

.newsletter-input::placeholder {
    color: var(--color-gray);
}

.newsletter-btn {
    padding: 0.875rem 2rem;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
}

.newsletter-btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent-sm);
}

.newsletter-disclaimer {
    font-size: 0.875rem;
    color: var(--color-gray);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: var(--section-padding);
    }
    
    .newsletter-subtitle br {
        display: none;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
        border-radius: var(--radius-lg);
        padding: 1rem;
    }
    
    .newsletter-input {
        padding: 0.75rem 1rem;
    }
    
    .newsletter-btn {
        width: 100%;
        border-radius: var(--radius-md);
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 3rem 0;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
}