@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4a574;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    overflow-x: hidden;
    width: 100%;
}

html::-webkit-scrollbar {
    width: 0;
    height: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

*::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

main {
    overflow-x: hidden;
    width: 100%;
}

section {
    overflow-x: hidden;
    max-width: 100%;
}

/* Header & Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--white);
}

.logo-image {
    height: 50px;
    width: auto;
}

.logo-icon {
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
}

.logo-text {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 400;
    font-size: 0.95rem;
    opacity: 0.9;
    position: relative;
    display: inline-block;
    perspective: 1000px;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 1;
    animation: flipText 0.6s ease;
}

@keyframes flipText {
    0% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(90deg);
    }
    100% {
        transform: rotateX(0deg);
    }
}

@media (max-width: 768px) {
    .nav-menu a:hover {
        animation: none;
    }
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    transition: var(--transition);
}

.mobile-toggle.active {
    position: fixed !important;
    top: 2.5rem !important;
    left: 2rem !important;
    z-index: 1003 !important;
    background: transparent !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    padding: 12px !important;
}

.mobile-toggle.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 50%;
    z-index: -1;
    background: transparent;
}

.mobile-toggle.active span {
    width: 25px !important;
    height: 2px !important;
    background: var(--white) !important;
    display: block !important;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 92vh;
    background: #2a2a2a;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .navbar {
    position: relative;
    z-index: 100;
}

@media (max-width: 768px) {
    .hero .navbar,
    .contact-hero .navbar,
    .who-we-are-hero .navbar {
        position: sticky !important;
        top: 0 !important;
        z-index: 999 !important;
        background: #5a5a5a !important;
    }

    .hero-overlay {
        z-index: 0 !important;
    }

    .contact-hero,
    .who-we-are-hero {
        position: relative;
    }

    .contact-hero .navbar,
    .who-we-are-hero .navbar {
        position: sticky !important;
        top: 0 !important;
        z-index: 999 !important;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-content .container {
    text-align: left;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 300;
    max-width: 800px;
    text-align: left;
}

/* Ticker */
.ticker {
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-content span {
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    display: inline-block;
}

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

/* Brand Partners Section */
.brand-partners-section {
    min-height: 100vh;
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.brand-partners-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 2rem;
}

.section-header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.section-title {
    font-size: 5rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.title-word {
    display: inline-block;
    transition: transform 0.6s ease, opacity 0.6s ease;
    will-change: transform, opacity;
}

.brand-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    opacity: 0;
    transition: opacity 0.8s ease;
    position: relative;
    z-index: 5;
    max-width: 100%;
}

.brand-logos-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .brand-logos-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
        overflow-x: visible !important;
    }
}

.brand-logo-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-logo-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.brand-logo-card {
    position: relative;
    display: block;
    width: 120px;
    height: 160px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
}

@media (max-width: 768px) {
    .brand-logo-card {
        width: 100% !important;
        height: 200px !important;
        margin: 0 0 2.5rem 0 !important;
        overflow: visible !important;
    }
}

.brand-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.brand-logo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    border-radius: 20px;
}

.brand-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
}

.brand-logo-card:hover .brand-overlay {
    opacity: 1;
}

.overlay-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
    text-align: left;
}

.overlay-arrow {
    font-size: 1.25rem;
    color: var(--primary-color);
    line-height: 1;
}

/* Mobile: Always show overlay extending outside card */
@media (max-width: 768px) {
    .brand-overlay {
        opacity: 1 !important;
        bottom: -1.75rem !important;
        left: 0.5rem !important;
        right: 0.5rem !important;
        padding: 0.75rem 0.875rem !important;
        border-radius: 10px !important;
        background: var(--white) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12) !important;
    }
    
    .overlay-text {
        font-size: 0.8rem !important;
        line-height: 1.2 !important;
    }
    
    .overlay-arrow {
        font-size: 1rem !important;
    }
}

.brand-name {
    font-size: 0.8rem;
    color: var(--text-color);
    line-height: 1.3;
    font-weight: 500;
    text-align: center;
    max-width: 120px;
}

.view-brands-btn-wrapper {
    text-align: center;
}

.view-brands-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.view-brands-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.btn-text {
    font-size: 1rem;
}

/* Brands Section */
.brands-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.brand-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.brand-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.brand-card:hover .brand-image img {
    transform: scale(1);
}

.brand-info {
    padding: 1.5rem;
}

.brand-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.brand-info p {
    color: #666;
    margin-bottom: 1rem;
}

.brand-link {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.brand-link:hover {
    color: var(--primary-color);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.contact-form-wrapper {
    display: flex;
    justify-content: center;
}

.contact-form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    width: 100%;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.form-group input,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.submit-btn {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Brands Carousel Section */
.brands-carousel-section {
    padding: 3rem 0;
    background: var(--white);
    overflow: hidden;
    border-top: 1px solid #e0e0e0;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 3rem;
    animation: carousel-scroll 25s linear infinite;
}

.carousel-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    max-width: 180px;
}

.carousel-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.carousel-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

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

/* Who We Are Page */
.who-we-are-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: url('assets/images/con_about_banner.jpg') center/cover no-repeat;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.navbar-dark {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.who-hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.who-hero-title {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

.who-content-section {
    padding: 6rem 0;
    background: var(--white);
}

.who-content-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.who-content-text p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--primary-color);
    font-weight: 400;
}

/* Founder Section */
.founder-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.founder-content {
    max-width: 1000px;
    margin: 0 auto;
}

.founder-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.founder-text {
    margin-bottom: 4rem;
}

.founder-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.founder-brands-carousel {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.founder-brands-track {
    display: flex;
    gap: 4rem;
    animation: founder-carousel-scroll 40s linear infinite;
}

.founder-brand-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
}

.founder-brand-logo img {
    max-width: 150px;
    height: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition);
}

.founder-brand-logo:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes founder-carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Brand Partners Page */
.page-header {
    background: #4a4a4a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.page-header .navbar {
    position: relative;
    padding: 1.5rem 0;
}

.brand-partners-page {
    padding: 4rem 0 6rem;
    background: var(--white);
    min-height: 100vh;
}

.page-title {
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: 0.1rem;
}

.brand-partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .brand-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .brand-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.brand-partner-card {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.brand-partner-card:hover {
    transform: translateY(-8px);
}

.brand-partner-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.brand-partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.brand-partner-card:hover .brand-partner-image img {
    transform: scale(1);
}

.view-website-btn {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.view-website-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.view-website-btn .arrow-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.brand-partner-name {
    padding: 1rem 0;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

/* Geographical Scope Page */
.geographical-scope-page {
    padding: 4rem 0 6rem;
    background: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

.geographical-scope-page::-webkit-scrollbar {
    display: none;
}

.geographical-scope-page {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.geo-intro {
    max-width: 950px;
    margin: 0 auto 4rem;
    text-align: center;
}

.geo-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.geo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
}

.geo-grid::-webkit-scrollbar {
    display: none;
}

.geo-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.geo-card:nth-child(11) {
    grid-column: 2;
}

.geo-card:nth-child(12) {
    grid-column: 3;
}

.geo-card:nth-child(13) {
    grid-column: 4;
}

.geo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    will-change: transform;
}

.geo-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.geo-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.geo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.geo-card:hover .geo-image img {
    transform: scale(1);
}

.geo-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .geo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .geo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .geo-grid {
        grid-template-columns: 1fr;
    }

    .geo-intro p {
        font-size: 1rem;
    }

    .contact-hero {
        height: 40vh;
        min-height: 300px;
    }

    .contact-hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .contact-hero-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .contact-form-section {
        padding: 3rem 0;
    }

    .contact-content-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .contact-left {
        padding-right: 0 !important;
    }

    .contact-main-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .contact-main-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .contact-info-cards {
        gap: 1rem;
    }

    .contact-info-card {
        padding: 1.25rem;
    }

    .contact-info-label {
        font-size: 0.8rem;
    }

    .contact-info-value {
        font-size: 0.85rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .contact-subtitle {
        font-size: 0.85rem;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Contact Page */
.contact-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: url('assets/images/con_about_banner.jpg') center/cover no-repeat;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-hero-title {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    margin-bottom: 1rem;
}

.contact-hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-left {
    padding-right: 2rem;
}

.contact-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-main-subtitle {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info-value {
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-value::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
}

.contact-info-value.address::before {
    content: '📍';
}

.contact-info-value.phone::before {
    content: '📞';
}

.contact-info-value.email::before {
    content: '✉️';
}

/* Footer */
.footer {
    background: #5a5a5a;
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
}

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

.footer-logo-icon {
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
}

.footer-logo-text {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact-item::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item.address::before {
    content: '📍';
}

.footer-contact-item.email::before {
    content: '✉️';
}

.footer-contact-item.phone::before {
    content: '📞';
}

.footer-social-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social-links a:hover {
    color: var(--white);
}

.footer-social-links a::after {
    content: '↗';
    font-size: 0.875rem;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Footer Collapsible Styles */
.footer-column-header {
    display: none;
}

.footer-toggle {
    display: none;
}

.footer-column-content {
    display: block;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding-bottom: 2rem;
    }

    .footer-column {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
    }

    .footer-column h4 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 0;
        cursor: pointer;
        width: 100%;
        margin-bottom: 0;
        font-size: 1rem;
        font-weight: 600;
        text-align: left;
        position: relative;
    }

    .footer-column h4::after {
        content: '+';
        font-size: 1.5rem;
        line-height: 1;
        transition: transform 0.3s ease;
        font-weight: 300;
    }

    .footer-column.active h4::after {
        transform: rotate(45deg);
    }

    .footer-logo-column {
        margin-bottom: 2rem;
        text-align: center;
        order: -1;
        border-bottom: none;
    }

    .footer-logo-column h4 {
        display: none;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-links,
    .footer-social-links,
    .footer-column > div:not(.footer-logo) {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .footer-column.active .footer-links,
    .footer-column.active .footer-social-links,
    .footer-column.active > div:not(.footer-logo) {
        max-height: 500px;
        padding-bottom: 1.25rem;
    }

    .footer-links,
    .footer-social-links {
        padding-left: 0;
    }

    .footer-contact-item {
        margin-bottom: 0.875rem;
    }

    .footer-contact-item:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }

    .mobile-toggle {
        display: flex !important;
        z-index: 1002;
        position: relative;
    }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #606060 !important;
        flex-direction: column !important;
        padding: 0 !important;
        gap: 0 !important;
        transform: translateX(100%) !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transition: transform 0.3s ease, opacity 0.3s ease !important;
        z-index: 1001 !important;
        overflow-y: auto !important;
    }

    .nav-menu::before {
        content: '';
        display: block;
        width: 100%;
        height: 180px;
        background: url('assets/images/mea_logo.png') center center no-repeat;
        background-size: 200px auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        flex-shrink: 0;
    }

    .nav-menu.active {
        transform: translateX(0) !important;
        opacity: 1 !important;
        pointer-events: all !important;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 1.125rem;
        padding: 1.75rem 1.5rem;
        display: block;
        font-weight: 400;
        opacity: 1;
        color: var(--white);
    }

    .mobile-toggle.active span {
        background: var(--white) !important;
        display: block !important;
        width: 20px !important;
        height: 2px !important;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) !important;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -10px;
        margin-top: -1px;
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) !important;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -10px;
        margin-top: -1px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .ticker-content span {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2.5rem;
        letter-spacing: 0.05rem;
    }

    .brand-logos {
        gap: 1.5rem;
    }

    .brand-logo-card {
        width: 120px;
        height: 120px;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 2rem;
    }

    .contact-title {
        font-size: 2rem;
    }

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

    .carousel-item {
        min-width: 150px;
    }

    .who-hero-title {
        font-size: 3rem;
    }

    .who-content-text p {
        font-size: 1.125rem;
    }

    .founder-title {
        font-size: 1.75rem;
    }

    .founder-text p {
        font-size: 1rem;
    }

    .founder-brands-track {
        gap: 3rem;
    }

    .founder-brand-logo {
        min-width: 120px;
    }

    .founder-brand-logo img {
        max-width: 120px;
    }

    .page-title {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .brand-partners-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }

    .brand-partner-image {
        height: 280px;
    }

    .view-website-btn {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        border-radius: 12px;
    }

    .view-website-btn .arrow-icon {
        font-size: 1.125rem;
    }

    .brand-partner-name {
        font-size: 0.9rem;
        padding: 0.75rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .brands-section {
        padding: 2rem 0;
    }

    .ticker-content span {
        font-size: 1rem;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }

    .contact-main-title {
        font-size: 1.5rem;
    }

    .contact-form-card {
        padding: 1.25rem;
    }

    .contact-title {
        font-size: 1.35rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.75rem 0.875rem;
        font-size: 0.85rem;
    }

    .submit-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}


/* Enhanced Responsive Design for All Screens */

/* Large tablets and small desktops (1024px and below) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 4rem;
    }

    .brand-logos-row {
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .contact-content-wrapper {
        gap: 3rem;
    }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
        position: relative;
    }

    * {
        max-width: 100%;
    }

    .navbar,
    .navbar-dark {
        background: #5a5a5a !important;
        padding: 1.25rem 0 !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 999 !important;
        min-height: 70px;
        backdrop-filter: none !important;
    }

    .page-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 999 !important;
    }

    .navbar .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 0 !important;
        position: relative !important;
        min-height: 50px;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
        z-index: 998;
        pointer-events: none;
        max-width: 60%;
    }

    .logo-image {
        height: 40px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .logo-icon {
        font-size: 2rem;
    }

    .logo-text {
        font-size: 0.75rem;
    }

    .mobile-toggle {
        position: relative !important;
        z-index: 1000 !important;
        display: flex !important;
        margin-left: auto;
        flex-shrink: 0;
        padding: 10px;
        transition: all 0.3s ease;
    }

    .mobile-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--white);
    }

    /* When menu is active, the button moves to fixed position */
    body .mobile-toggle.active {
        position: fixed !important;
        top: 2.5rem !important;
        left: 2rem !important;
        z-index: 1003 !important;
        opacity: 1 !important;
        pointer-events: all !important;
        display: flex !important;
    }

    .brand-partners-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .brand-partners-sticky-container {
        position: relative;
        height: auto;
        padding-top: 0;
        display: block;
    }

    .section-header {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 2.5rem;
        pointer-events: auto;
    }

    .section-title {
        display: block;
        font-size: 2.5rem;
        text-align: left;
        padding-left: 0;
    }

    .title-word {
        display: inline;
    }

    .brand-logos {
        opacity: 1 !important;
    }

    .brand-logos-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
        overflow-x: visible !important;
        padding: 0 !important;
    }

    .brand-logo-item {
        opacity: 1 !important;
        transform: translateY(0) !important;
        margin-bottom: 1.5rem;
    }

    .brand-logo-card {
        width: 100% !important;
        height: 200px !important;
        margin: 0 0 3rem 0 !important;
    }

    .brand-logo-card img {
        object-fit: cover;
    }

    .brand-overlay {
        opacity: 1 !important;
        bottom: -2.25rem !important;
        left: 0.75rem !important;
        right: 0.75rem !important;
        padding: 0.875rem 1rem !important;
    }

    .overlay-text {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .overlay-arrow {
        font-size: 1.125rem;
    }

    .brand-name {
        font-size: 0.875rem;
        text-align: center;
        margin-top: 0.25rem;
        font-weight: 600;
        padding: 0 0.5rem;
    }

    .view-brands-btn-wrapper {
        margin-top: 2rem;
    }

    .geo-image {
        height: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
        text-align: left;
    }

    .brand-logos-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .brand-logo-card {
        width: 100% !important;
        height: 180px !important;
        margin: 0 0 2.5rem 0 !important;
    }

    .brand-overlay {
        bottom: -2rem !important;
        left: 0.5rem !important;
        right: 0.5rem !important;
        padding: 0.75rem 0.875rem !important;
    }

    .brand-name {
        font-size: 0.8rem;
    }

    .view-brands-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .brand-partners-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }

    .brand-partner-image {
        height: 240px;
    }

    .view-website-btn {
        bottom: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .view-website-btn .arrow-icon {
        font-size: 1rem;
    }

    .brand-partner-name {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    .geo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .geo-card:nth-child(11),
    .geo-card:nth-child(12),
    .geo-card:nth-child(13) {
        grid-column: auto;
    }

    .geo-image {
        height: 180px;
    }

    .geo-name {
        font-size: 0.875rem;
        padding: 1rem;
    }

    .contact-main-title {
        font-size: 1.5rem;
    }

    .contact-info-card {
        padding: 1.25rem;
    }

    .carousel-item {
        min-width: 120px;
        max-width: 120px;
    }

    .carousel-item img {
        max-height: 50px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .brand-logo-card {
        width: 140px;
        height: 180px;
    }
}
