@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;600;700&family=Be+Vietnam+Pro:wght@300;400;500;600;700&display=swap');

/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --primary-yellow: #FDB813;
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --border-color: #333333;
    --hover-yellow: #ffc933;
    --gradient-yellow: linear-gradient(135deg, #FDB813 0%, #ffc933 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container: padding vừa phải, tránh dư thừa so với index.html */
.container {
    margin: 0 auto;
    padding: 0 120px;
    max-width: 100%;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: #FFD728;
    z-index: 1000;
    padding: 22px 0;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.nav-container {
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    color: var(--primary-black);
}

.nav-link.active {
    background-color: var(--primary-black);
    color: var(--text-white);
    border: 2px solid var(--primary-black);
}

.nav-link:not(.active) {
    background-color: transparent;
    border: 2px solid var(--primary-black);
    color: var(--primary-black);
}

.nav-link:hover {
    opacity: 0.8;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
}

.btn-download,
.btn-login {
    padding: 10px 20px;
    font-weight: 700;
    font-size: 13px;
    border: 1.5px solid #000000;
    transition: all 0.3s ease;
    background-color: transparent;
    color: #000000;
}

.btn-download:hover,
.btn-login:hover {
    opacity: 0.8;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000000;
}

.language-selector:hover {
    opacity: 0.9;
}

.language-selector select.langSel {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 4px;
    outline: none;
}

.language-selector .dropdown-icon {
    font-size: 10px;
    margin-left: 4px;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../sportcast-web/images/hero.png') center/cover no-repeat;
    padding-top: 0;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    padding-left: 60px;
    padding-right: 40px;
    margin-left: 0;
    margin-right: auto;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: clamp(80px, 12vw, 150px) 0 clamp(40px, 6vw, 80px) 0;
    width: 100%;
    max-width: min(1050px, 55vw);
    margin-left: clamp(40px, 5vw, 80px);
}

.hero-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(32px, 4.8vw + 1.25rem, 60px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-black);
    margin-bottom: clamp(15px, 2vw, 30px);
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--text-white);
}

.app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-store-btn img,
.google-play-btn img {
    height: clamp(35px, 3.5vw + 10px, 45px);
    width: auto;
    display: block;
}

.app-store-btn,
.google-play-btn {
    transition: transform 0.3s ease;
}

.app-store-btn:hover,
.google-play-btn:hover {
    transform: translateY(-2px);
}

.hero-image {
    display: none;
}

/* ===========================
   Features Section
   =========================== */
.features {
    padding: 120px 0;
    background-color: var(--primary-black);
}

.section-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.features-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    width: 100%;
    height: 600px;
    border: 1px solid var(--primary-yellow);
    display: grid;
    grid-template-columns: 65% 35%;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(253, 184, 19, 0.2);
    z-index: 10;
}

/* Odd cards: Image left (65%), text right (35%) */
.feature-card:nth-child(odd) .feature-image {
    order: 1;
}

.feature-card:nth-child(odd) .feature-label {
    order: 2;
}

/* Even cards: Text left (35%), image right (65%) */
.feature-card:nth-child(even) {
    grid-template-columns: 35% 65%;
}

.feature-card:nth-child(even) .feature-image {
    order: 2;
}

.feature-card:nth-child(even) .feature-label {
    order: 1;
}

.feature-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-left: 1px solid var(--primary-yellow);
    border-right: 1px solid var(--primary-yellow);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-label {
    position: relative;
    padding: 24px 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    background-color: var(--secondary-black);
}

.feature-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0 16px;
}

.label-tag {
    display: inline-block;
    background-color: #FFD435;
    color: var(--primary-black);
    padding: 8px 18px;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    width: fit-content;
}

.title-outside-box {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
}

.label-desc {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 6px;
    margin-left: 16px;
    margin-right: 16px;
}

/* ===========================
   Podcasts Section
   =========================== */
.podcasts {
    padding: 48px 0 64px;
    background-color: var(--primary-black);
}

.podcast-section {
    margin-bottom: 40px;
}

.podcast-section:last-child {
    margin-bottom: 0;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.podcast-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.podcast-frame {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
}

.podcast-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../sportcast-web/images/PodcastFrame.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 10;
}

.podcast-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(
    160deg,
    #FFD435 50%,
    transparent 50%
);
}

.podcast-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    pointer-events: none;
    z-index: 2;
}

.podcast-image-wrapper img {
    width: 100%;
    height: 100%;
    padding: 15px 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 25px;
}

.podcast-card:hover .podcast-image-wrapper img {
    transform: scale(1.05);
}

.podcast-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    margin-top: 400px;
}

.podcast-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-white);
    flex: 1;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.play-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.play-icon:hover {
    transform: scale(1.15);
}

.podcast-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    padding: 8px 20px 20px 0;
    position: relative;
    z-index: 3;
    margin-top: auto;
}

.podcast-time,
.podcast-author {
    color: var(--text-white);
    font-weight: 500;
}

.podcast-time {
    padding: 4px 5px;
    background-color: rgba(26, 26, 26, 0.8);
    border: 1.5px solid #FFD728;
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: 48px 0 64px;
    background-color: var(--primary-black);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 32px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-feature {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-icon {
    margin-bottom: 8px;
}

.icon-svg {
    width: 60px;
    height: 60px;
    display: block;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
}

.feature-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: #FFF;
}

.about-image {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 480px;
    overflow: hidden;
}

.about-main-image {
    width: auto;
    height: 550px;
    max-width: 100%;
    border-radius: 12px;
    display: block;
}

.quote-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 10;
}

.quote-black-box {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 380px;
    min-width: 380px;
    height: 170px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 60%, rgba(0, 0, 0, 0.85) 80%, transparent 100%);
    border-radius: 0 0 12px 12px;
    z-index: 5;
}

.quote-left {
    top: 310px;
    left: 55%;
    transform: translateX(-210px);
}

.quote-right {
    top: 400px;
    right: 55%;
    transform: translateX(210px);
}

.quote-box {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 400px;
    padding: 10px 25px;
    background-color: transparent;
    border: none;
    text-align: center;
    z-index: 10;
}

.quote-box .quote-text,
.quote-box p {
    font-size: 14px;
    font-weight: 300;
    color: #FFF;
}

/* ===========================
   Difference Section
   =========================== */
.difference {
    padding: 48px 0 64px;
    background-color: var(--primary-black);
}

.difference-table {
    margin-top: 32px;
}

/* Header Row */
.difference-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.header-cell {
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-left {
    background-color: #727272;
    border-right: 2px solid #FFD435;
}

.header-left h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.header-right {
    background-color: #FFD435;
}

.header-right img {
    height: 50px;
    width: auto;
}

/* Content Row */
.difference-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.body-cell {
    padding: 32px 0;
    background-color: var(--primary-black);
    position: relative;
}

.body-cell::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 20%;
    height: 2px;
    background-color: #FFD435;
}

.body-left {
    border-right: 2px solid #FFD435;
}

.body-left::after {
    right: 0;
}

.body-right::after {
    left: 0;
}

.difference-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.difference-list li {
    position: relative;
    padding-left: 35px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-white);
}

.body-left .difference-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0.7em;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 20px;
    line-height: 1;
}

.body-right .difference-list li::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    top: 0;
}

.body-right .difference-list li[data-icon="stars.svg"]::before {
    background-image: url('../sportcast-web/images/stars.svg');
}

.body-right .difference-list li[data-icon="change_circle.svg"]::before {
    background-image: url('../sportcast-web/images/change_circle.svg');
}

.body-right .difference-list li[data-icon="diversity_3.svg"]::before {
    background-image: url('../sportcast-web/images/diversity_3.svg');
}

.body-right .difference-list li[data-icon="clinical_notes.svg"]::before {
    background-image: url('../sportcast-web/images/clinical_notes.svg');
}

.body-right .difference-list li[data-icon="artist.svg"]::before {
    background-image: url('../sportcast-web/images/artist.svg');
}

.body-right .difference-list li[data-icon="analytics.svg"]::before {
    background-image: url('../sportcast-web/images/analytics.svg');
}

/* ===========================
   Partners Section
   =========================== */
.partners {
    padding: 48px 0 0 0;
    background-color: var(--primary-black);
    overflow: visible;
    position: relative;
}

.partners .container {
    padding: 0 80px;
}

.partners .section-title {
    color: var(--text-white);
    text-align: left;
    margin-bottom: 24px;
}

.partners-background {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../sportcast-web/images/truyenthong.png') center/cover no-repeat;
    position: relative;
    padding: 120px 0 240px 0;
    margin-top: -80px;
}

/* Rhombus Section - Overlaying Background */
.rhombus-section {
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    margin-bottom: -100px;
}

.rhombus-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.partners-logos {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 0 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.partner-icon {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(1);
}

.partner-icon:hover {
    transform: scale(1.15);
    filter: brightness(1.2);
}

/* Contact Section within Partners */
.contact-section {
    position: relative;
    z-index: 2;
}

.contact-section .section-title {
    color: var(--text-white);
    text-align: center;
    margin-bottom: 24px;
}

.section-title-left {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: var(--text-white);
    text-align: left;
}

.contact-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 120px;
    align-items: start;
}

.contact-form-wrapper {
    background-color: transparent;
    max-width: 420px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.form-row-two {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 10px 18px;
    background-color: #FFFFFF !important;
    border: 2px solid #FFFFFF;
    color: #000000 !important;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.4) !important;
}

.phone-input-group {
    display: flex;
    gap: 12px;
}

.phone-input-group select {
    width: 100px;
    flex-shrink: 0;
    background-color: #FFFFFF !important;
    color: #000000 !important;
}

.phone-input-group input {
    flex: 1;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD728;
    background-color: #FFFFFF !important;
}

.btn-submit {
    padding: 16px 48px;
    background-color: #FFD728;
    color: #000000;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #FFD728;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(253, 184, 19, 0.3);
}

.download-app-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.download-card {
    position: relative;
    padding: 48px 40px;
    max-width: 500px;
    text-align: center;
}

.download-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid #FFD728;
    border-radius: 4px;
    pointer-events: none;
}

.download-card-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.download-card-title {
    display: inline-block;
    background-color: #FFD728;
    color: var(--primary-black);
    font-size: 22px;
    font-weight: 800;
    padding: 10px 28px;
    border-radius: 2px;
}

.download-card-desc {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

.download-card-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.download-card-btn {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.download-card-btn img {
    height: 48px;
    width: auto;
}

.download-card-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.95)),
        url('https://placehold.co/1920x1080/1a1a1a/333333?text=Background') center/cover;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var (--text-white);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 10px 18px;
    background-color: var(--secondary-black);
    border: 2px solid var(--border-color);
    color: var(--text-white);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background-color: rgba(253, 184, 19, 0.05);
}

.btn-submit {
    padding: 16px 48px;
    background-color: #FFD728;
    color: #000000;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: var(--hover-yellow);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(253, 184, 19, 0.3);
}

.download-app-box {
    padding: 130px 40px;
    border-radius: 16px;
    text-align: center;
    color: var(--primary-black);
}

.download-app-box h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.download-app-box p {
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.app-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.app-btn {
    transition: transform 0.3s ease;
}

.app-btn:hover {
    transform: translateY(-4px);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--secondary-black);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: visible;
    margin-top: -200px;
    z-index: 15;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    min-height: 600px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 40px;
}

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

.footer-info,
.footer-links {
    margin-bottom: 30px;
}

.footer-info h4,
.footer-links h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-info p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

.footer-links li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.footer-links ul {
    list-style: none;
}
.footer-links ul {
    padding-left: 0;
}

.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 10px;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(253, 184, 19, 0.3);
    background-color: var(--hover-yellow);
}

/* Footer Social & Apps Container */
.footer-social-apps-container {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
    max-width: 600px;
}

.footer-left-container {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.footer-right-container {
    flex-shrink: 0;
    position: relative;
    z-index: 25;
}

.facebook-page-link {
    display: block;
    transition: transform 0.3s ease;
}

.facebook-page-link img {
    height: 140px;
    width: auto;
    display: block;
}

.facebook-page-link:hover {
    transform: translateY(-4px);
}

.footer-apps {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.footer-app-link {
    transition: transform 0.3s ease;
}

.footer-app-link img {
    height: 45px;
    width: auto;
}

.footer-app-link:hover {
    transform: translateY(-4px);
}

.footer-bottom {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

.footer-graphic {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 20;
    pointer-events: none;
}

.footer-graphic img {
    width: auto;
    height: auto;
    max-width: 800px;
    max-height: 800px;
    display: block;
}

/* ===========================
   Responsive Design
   =========================== */

/* Laptop 14-15" (1440px) - Prevent overlap, scale with viewport */
@media (max-width: 1440px) {
    .nav-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .nav-content {
        gap: 50px;
        flex-wrap: wrap;
    }

    .nav-left,
    .nav-right {
        gap: 16px;
        flex-shrink: 0;
    }

    .nav-link {
        font-size: 12px;
        padding: 8px 14px;
    }

    .btn-download,
    .btn-login {
        font-size: 12px;
        padding: 8px 14px;
    }

    .language-selector {
        font-size: 11px;
        padding: 8px 12px;
        gap: 6px;
    }

    .logo-image {
        height: 36px;
    }

    .hero-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-content {
        margin-left: 40px;
        max-width: min(600px, 42vw);
    }
}

/* Laptop 14" (1366px) - Common resolution */
@media (max-width: 1366px) {
    .nav-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .nav-content {
        gap: 30px;
    }

    .nav-left,
    .nav-right {
        gap: 10px;
    }

    .nav-link {
        font-size: 11px;
        padding: 6px 10px;
    }

    .btn-download,
    .btn-login {
        font-size: 11px;
        padding: 6px 10px;
    }

    .language-selector {
        font-size: 10px;
        padding: 6px 8px;
    }

    .logo-image {
        height: 32px;
    }

    .hero-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-content {
        margin-left: 24px;
        max-width: min(480px, 36vw);
    }
}

/* Large tablets and small desktops */
@media (max-width: 1200px) {

    .nav-container,
    .hero-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-content {
        margin-left: 40px;
        max-width: 550px;
    }

    .hero-title {
        font-size: clamp(42px, 5.5vw, 64px);
    }

    .container {
        padding: 0 40px;
    }

    .features {
        padding: 40px 0 56px;
    }

    .feature-card {
        height: 520px;
    }

    .feature-label {
        padding: 20px 18px;
    }

    .feature-title-wrapper {
        margin: 0 12px;
    }

    .label-tag,
    .title-outside-box {
        font-size: 40px;
    }

    .label-desc {
        font-size: 16px;
        margin-left: 12px;
        margin-right: 12px;
    }

    /* Podcast grid - 2 columns on large tablets */
    .podcast-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* .podcast-frame {
        height: 600px;
    } */

    .podcast-image-wrapper {
        height: 420px;
    }

    .podcast-content {
        margin-top: 430px;
    }

    /* About features - 2 columns on large tablets */
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Tablets */
@media (max-width: 968px) {
    .nav-container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .nav-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .nav-left,
    .nav-right {
        gap: 15px;
    }

    .logo {
        position: static;
        transform: none;
        order: -1;
        margin-bottom: 10px;
    }

    .logo-image {
        height: 35px;
    }

    .hero-container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero-content {
        margin-left: 20px;
        max-width: 600px;
        padding: 120px 0 60px 0;
    }

    .hero-title {
        font-size: 56px;
    }

    .app-store-btn img,
    .google-play-btn img {
        height: 40px;
    }

    .features {
        padding: 80px 0;
    }

    .features-grid {
        gap: 0;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    /* Feature cards - adjust for tablets */
    .feature-card {
        height: auto;
        min-height: 420px;
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Reset grid for even cards */
    .feature-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    /* Image always on top on tablets */
    .feature-card .feature-image {
        order: 1 !important;
        height: 320px;
        border-left: 1px solid var(--primary-yellow);
        border-right: 1px solid var(--primary-yellow);
        border-top: 1px solid var(--primary-yellow);
    }

    .feature-card .feature-label {
        order: 2 !important;
        padding: 32px 24px;
    }

    .feature-title-wrapper {
        margin: 0 20px;
    }

    .label-tag,
    .title-outside-box {
        font-size: 34px;
    }

    .label-desc {
        font-size: 15px;
        margin-left: 20px;
        margin-right: 20px;
    }

    /* Podcast grid - 2 columns on tablets */
    .podcast-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* .podcast-frame {
        height: 550px;
    } */

    .podcast-image-wrapper {
        height: 380px;
    }

    .podcast-content {
        margin-top: 390px;
    }

    .podcast-title {
        font-size: 15px;
    }

    .play-icon {
        width: 42px;
        height: 42px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-main-image {
        height: 250px;
    }

    .quote-black-box {
        height: 200px;
    }

    .quote-left {
        top: 280px;
        transform: translateX(-180px);
    }

    .quote-right {
        top: 320px;
        transform: translateX(180px);
    }

    .difference-table {
        overflow-x: auto;
    }

    .difference-header,
    .difference-body {
        grid-template-columns: 1fr;
    }

    .header-left {
        border-right: none;
        border-bottom: 2px solid #FFD435;
    }

    .body-left {
        border-right: none;
    }

    .body-cell::after {
        display: none;
    }

    .partners .container {
        padding: 0 30px;
    }

    .partners {
        padding: 60px 0 0 0;
    }

    .partners .section-title {
        font-size: 36px;
        margin-bottom: 35px;
    }

    .partners-background {
        padding: 140px 0 100px 0;
        margin-top: -75px;
    }

    .rhombus-section {
        margin-bottom: -75px;
    }

    .partners-logos {
        gap: 40px;
        flex-wrap: wrap;
        padding: 0 80px;
    }

    .partner-icon {
        height: 50px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-form-wrapper {
        max-width: 100%;
    }

    .section-title-left {
        font-size: 36px;
        text-align: center;
    }

    .download-app-box {
        justify-content: center;
    }

    .download-card {
        max-width: 400px;
        padding: 40px 32px;
    }

    .download-card-title {
        font-size: 20px;
    }

    .download-card-desc {
        font-size: 16px;
    }

    .download-card-btn img {
        height: 42px;
    }

    .footer {
        padding: 60px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        min-height: 500px;
    }

    .footer-logo-img {
        height: 50px;
    }

    .footer-graphic {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .footer-graphic img {
        max-width: 600px;
        max-height: 600px;
    }

    .footer-info h4,
    .footer-links h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-info p,
    .footer-links li {
        font-size: 13px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .footer-app-link img {
        height: 40px;
    }
}

/* Medium tablets and landscape phones - iPad Air (820px) */
@media (max-width: 820px) and (min-width: 769px) {

    .feature-card {
        min-height: 400px;
    }

    .feature-card .feature-image {
        height: 300px;
    }

    .label-tag,
    .title-outside-box {
        font-size: 30px;
    }

    .label-desc {
        font-size: 14px;
    }

    .partners-logos {
        gap: 35px;
        padding: 0 50px;
    }

    .partner-icon {
        height: 45px;
    }

    .contact-content {
        gap: 55px;
    }

    .download-card {
        max-width: 360px;
        padding: 36px 28px;
    }

    .download-card-title {
        font-size: 18px;
        padding: 8px 22px;
    }

    .download-card-desc {
        font-size: 15px;
    }

    .download-card-btn img {
        height: 38px;
    }

    /* Podcast grid - 3 columns on iPad Air */
    .podcast-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .podcast-frame {
        height: 350px;
    }

    .podcast-image-wrapper {
        height: 250px;
    }

    .podcast-content {
        margin-top: 260px;
    }

    .podcast-title {
        font-size: 14px;
    }
}

/* Additional breakpoint for small tablets */
@media (max-width: 640px) and (min-width: 481px) {
    .feature-card {
        min-height: 360px;
    }

    .feature-card .feature-image {
        height: 240px;
    }

    .label-tag,
    .title-outside-box {
        font-size: 26px;
    }

    .label-desc {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 20px 0;
    }

    .nav-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav-content {
        gap: 15px;
    }

    .nav-left,
    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav-link,
    .btn-download,
    .btn-login {
        font-size: 12px;
        padding: 8px 16px;
    }

    .language-selector {
        font-size: 11px;
        padding: 8px 12px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-content {
        margin-left: 0;
        padding: 100px 0 50px 0;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .app-buttons {
        gap: 10px;
    }

    .app-store-btn img,
    .google-play-btn img {
        height: 38px;
    }

    .features {
        padding: 60px 0;
    }

    .features-grid {
        gap: 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    /* Stack feature cards vertically on mobile */
    .feature-card {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 380px;
        margin-bottom: 0;
    }

    /* Reset grid for even cards */
    .feature-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .feature-card .feature-image {
        order: 1 !important;
        height: 260px;
        border-top: 1px solid var(--primary-yellow);
    }

    .feature-card .feature-label {
        order: 2 !important;
        padding: 28px 20px;
    }

    .feature-title-wrapper {
        margin: 0 16px;
    }

    .label-tag,
    .title-outside-box {
        font-size: 28px;
        line-height: 1.3;
    }

    .label-tag {
        padding: 10px 20px;
    }

    .label-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 12px;
        margin-left: 16px;
        margin-right: 16px;
    }

    .container {
        padding: 0 20px;
    }

    /* Podcast grid - single column on mobile */
    .podcast-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* .podcast-frame {
        height: 550px;
    } */

    .podcast-image-wrapper {
        height: 380px;
    }

    .podcast-content {
        margin-top: 390px;
        padding: 0 16px;
    }

    .podcast-title {
        font-size: 14px;
    }

    .play-icon {
        width: 40px;
        height: 40px;
    }

    .podcast-meta {
        padding: 8px 16px 16px 0;
    }

    .podcast-time,
    .podcast-author {
        font-size: 12px;
        padding: 3px 10px;
    }

    /* About section - mobile */
    .about-main-image {
        height: 350px;
    }

    .quote-black-box {
        height: 150px;
    }

    .quote-icon {
        width: 40px;
        height: 40px;
    }

    .quote-left {
        top: 220px;
        transform: translateX(-140px);
    }

    .quote-right {
        top: 250px;
        transform: translateX(140px);
    }

    .quote-box {
        bottom: 80px;
        padding: 15px 20px;
    }

    /* .quote-text {
        font-size: 16px;
        font-weight: 300;
    } */

    /* Difference section - mobile */
    .header-cell {
        padding: 20px 25px;
    }

    .header-left h3 {
        font-size: 22px;
    }

    .header-right img {
        height: 40px;
    }

    .body-cell {
        padding: 35px 25px;
    }

    .difference-list {
        gap: 18px;
    }

    .difference-list li {
        font-size: 14px;
        padding-left: 32px;
    }

    .body-right .difference-list li::before {
        width: 20px;
        height: 20px;
    }

    .partners .container {
        padding: 0 20px;
    }

    .partners {
        padding: 50px 0 0 0;
    }

    .partners .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .partners-background {
        padding: 120px 0 220px 0;
        margin-top: -75px;
    }

    .rhombus-section {
        height: 150px;
        margin-bottom: -75px;
    }

    .partners-logos {
        gap: 30px;
        padding: 0 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .partner-icon {
        height: 42px;
    }

    .contact-content {
        gap: 50px;
    }

    .contact-form-wrapper {
        max-width: 100%;
    }

    .section-title-left {
        font-size: 32px;
        text-align: center;
        margin-bottom: 25px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-row-two {
        grid-template-columns: 1fr;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 16px;
        font-size: 14px;
    }

    .form-group textarea {
        min-height: 140px;
        resize: vertical;
    }

    .btn-submit {
        width: 100%;
        text-align: center;
        align-self: stretch;
    }

    .download-app-box {
        display: flex;
        justify-content: center;
    }

    .download-card {
        max-width: 320px;
        padding: 32px 24px;
    }

    .download-card-title {
        font-size: 16px;
        padding: 8px 20px;
    }

    .download-card-desc {
        font-size: 14px;
    }

    .download-card-btn img {
        height: 34px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 50px 0 0;
    }

    .footer-content {
        min-height: 450px;
    }

    .footer-logo-img {
        height: 45px;
    }

    .footer-graphic {
        display: none;
    }

    .footer-graphic img {
        max-width: 500px;
        max-height: 500px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .footer-social-apps-container {
        flex-direction: column;
        gap: 25px;
    }

    .footer-left-container {
        width: 100%;
    }

    .footer-right-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .facebook-page-link img {
        height: 120px;
    }

    .footer-app-link img {
        height: 38px;
    }
}

/* Small mobile */
@media (max-width: 480px) {

    .nav-link,
    .btn-download,
    .btn-login {
        font-size: 11px;
        padding: 6px 12px;
    }

    .logo-image {
        height: 30px;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero-content {
        padding: 80px 0 40px 0;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }

    .app-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .app-store-btn img,
    .google-play-btn img {
        height: 35px;
        width: auto;
    }

    .features {
        padding: 50px 0;
    }

    .features-grid {
        gap: 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .feature-card {
        min-height: 340px;
    }

    .feature-card .feature-image {
        height: 220px;
    }

    .feature-card .feature-label {
        padding: 24px 16px;
    }

    .feature-title-wrapper {
        margin: 0 12px;
        gap: 6px;
    }

    .label-tag,
    .title-outside-box {
        font-size: 24px;
        line-height: 1.3;
    }

    .label-tag {
        font-size: 24px;
        padding: 8px 16px;
    }

    .label-desc {
        font-size: 13px;
        line-height: 1.5;
        margin-top: 10px;
        margin-left: 12px;
        margin-right: 12px;
    }

    .title-outside-box {
        font-size: 24px;
    }

    .feature-label {
        gap: 12px;
    }

    /* Podcast adjustments for small mobile */
    .podcast-section {
        margin-bottom: 60px;
    }

    .podcast-grid {
        gap: 25px;
    }

    /* .podcast-frame {
        height: 500px;
    } */

    .podcast-image-wrapper {
        height: 340px;
    }

    .podcast-content {
        margin-top: 350px;
        padding: 0 12px;
    }

    .podcast-title {
        font-size: 13px;
        line-height: 1.4;
    }

    .play-icon {
        width: 36px;
        height: 36px;
    }

    .podcast-meta {
        padding: 6px 12px 12px 0;
    }

    .podcast-time,
    .podcast-author {
        font-size: 11px;
        padding: 2px 8px;
    }

    .partners {
        padding: 40px 0 0 0;
    }

    .partners .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .partners-background {
        padding: 100px 0 200px 0;
        margin-top: -60px;
    }

    .rhombus-section {
        height: 120px;
        margin-bottom: -60px;
    }

    .partners-logos {
        gap: 20px;
        padding: 0 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .partner-icon {
        height: 35px;
    }

    .contact-content {
        gap: 40px;
    }

    .contact-form-wrapper {
        max-width: 100%;
    }

    .section-title-left {
        font-size: 28px;
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-form {
        gap: 18px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 11px 14px;
        font-size: 13px;
    }

    .form-group textarea {
        min-height: 130px;
        resize: vertical;
    }

    .phone-input-group select {
        width: 85px;
    }

    .btn-submit {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }

    .download-app-box {
        justify-content: center;
    }

    .download-card {
        max-width: 280px;
        padding: 28px 20px;
    }

    .download-card-title {
        font-size: 15px;
        padding: 7px 18px;
    }

    .download-card-desc {
        font-size: 13px;
    }

    .download-card-buttons {
        gap: 8px;
    }

    .download-card-btn img {
        height: 30px;
    }

    .footer {
        padding: 50px 0 0;
    }

    .footer-content {
        gap: 40px;
        min-height: 350px;
    }

    .footer-logo-img {
        height: 40px;
        margin-bottom: 30px;
    }

    .footer-info h4,
    .footer-links h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer-info-item {
        gap: 10px;
    }

    .footer-icon {
        width: 18px;
        height: 18px;
    }

    .footer-info-item p,
    .footer-links li {
        font-size: 12px;
        line-height: 1.6;
    }

    .footer-links ul {
        gap: 6px;
    }

    .social-links {
        gap: 12px;
        margin-bottom: 20px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .social-icon img {
        width: 18px;
        height: 18px;
    }

    .footer-apps {
        gap: 12px;
        margin-bottom: 16px;
    }

    .footer-app-link img {
        height: 35px;
    }

    .footer-bottom {
        font-size: 12px;
        padding-bottom: 20px;
    }

    .footer-graphic {
        display: none;
    }

    .footer-graphic img {
        max-width: 350px;
        max-height: 350px;
    }
}
