* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Kanit', 'Poppins', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #1E2A5A;
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo img {
    height: 84px;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #667eea;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.1rem;
    }
}

/* Hero Section - Full Image Background */
.hero {
    margin-top: 100px;
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Default: Portrait image for mobile */
    background-image: url('../images/hero-portrait.jpg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    /* Portrait aspect ratio - adjust to match your portrait image */
    aspect-ratio: 3 / 4;
}

/* Desktop: Use landscape image */
@media (min-width: 768px) {
    .hero {
        background-image: url('../images/hero-landscape.jpg');
        /* Landscape aspect ratio - adjust to match your landscape image */
        aspect-ratio: 16 / 9;
    }
}

.hero::before {
    display: none;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50px);
    }
}

.hero-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 2rem;
    z-index: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    color: #FFFFFF;
    display: block;
    font-size: 2.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    max-width: 500px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}


.hero-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    color: #2d8f4e;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #2d8f4e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #f6ad55, #ed8936);
    color: white;
    box-shadow: 0 4px 20px rgba(237, 137, 54, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(237, 137, 54, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-image {
    display: flex;
    justify-content: right;
    align-items: center;
    position: relative;
}

.hero-logo-container {
    position: relative;
    width: clamp(250px, 30vw, 380px);
    height: clamp(250px, 30vw, 380px);
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: pulse 3s ease-in-out infinite;
    border-radius: 50%;
    background: white;
    padding: 10px;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    animation: floatBadge 4s ease-in-out infinite;
    transition: transform 0.3s ease;
    cursor: default;
}

.floating-badge:hover {
    transform: scale(1.1);
}

.badge-1 {
    width: clamp(70px, 8vw, 110px);
    height: clamp(70px, 8vw, 110px);
    top: -20px;
    right: -30px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    animation-delay: 0s;
}

.badge-2 {
    width: clamp(60px, 7vw, 95px);
    height: clamp(60px, 7vw, 95px);
    bottom: 20px;
    right: -40px;
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    color: white;
    animation-delay: 1s;
}

.badge-3 {
    width: clamp(65px, 7.5vw, 100px);
    height: clamp(65px, 7.5vw, 100px);
    top: 30px;
    left: -35px;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    animation-delay: 2s;
}

.badge-4 {
    width: clamp(55px, 6vw, 85px);
    height: clamp(55px, 6vw, 85px);
    bottom: -10px;
    left: -20px;
    background: linear-gradient(135deg, #9f7aea, #805ad5);
    color: white;
    animation-delay: 0.5s;
}

.badge-icon {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.badge-text {
    font-size: 0.65rem;
    line-height: 1.2;
    padding: 0 5px;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

/* Categories Section */
.categories {
    padding: 5rem 2rem;
    background: #f8fafc;
}

/* Video Section */
.video-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
}

.video-section .section-title {
    color: white;
}

.video-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #718096;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Staggered Product Layout */
.categories {
    padding: 4rem 2rem;
    background: #fff;
    max-width: 1400px;
    margin: 0 auto;
}

.product-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: flex-end;
}

.product-row .product-text {
    flex: 0 0 250px;
    text-align: left;
}

.product-row .product-image {
    flex: 0 0 55%;
}

.product-row .product-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.product-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.shop-link {
    color: #1a365d;
    text-decoration: underline;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.shop-link:hover {
    color: #3182ce;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
}

.product-card-content {
    padding: 1.5rem;
    text-align: center;
}

.product-card-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-row-dual {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.product-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-item:first-child {
    flex: 0.4;
}

.product-item:last-child {
    flex: 0.6;
    flex-direction: row;
    align-items: center;
}

.product-item:last-child .product-text {
    flex: 0 0 180px;
    text-align: left;
}

.product-item:last-child .product-image {
    flex: 1;
}

.product-item:last-child .product-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.product-image-full img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.product-text-below {
    margin-top: 1rem;
}

.product-text-below h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .product-row {
        flex-direction: column;
        text-align: center;
    }

    .product-row .product-text {
        text-align: center;
    }

    .product-row-dual {
        flex-direction: column;
    }

    .product-item:last-child {
        flex-direction: column;
    }

    .product-item:last-child .product-text {
        text-align: center;
        margin-bottom: 1rem;
    }
}

/* Features */
.features {
    padding: 5rem 2rem;
    background: white;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s;
}

.feature-card:hover {
    background: #f8fafc;
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #718096;
    font-size: 0.95rem;
}

/* News Section */
.news {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.news-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-image {
    width: 200px;
    height: 180px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    flex-shrink: 0;
}

.news-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-content h4 {
    font-size: 1.1rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.news-content p {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    color: #667eea;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    gap: 0.75rem;
}

/* Footer */
.footer {
    background: #1a365d;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        margin-top: 100px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .hero-text {
        text-align: center;
        align-items: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title span {
        font-size: 2rem;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        margin-top: 100px;
        aspect-ratio: 3 / 4;
    }

    .hero-container {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-title span {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        flex-direction: column;
    }

    .news-image {
        width: 100%;
        height: 150px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Reels Section */
.reels-section {
    padding: 5rem 2rem;
    background: #fff;
}

.reels-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
}

.reel-container {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.reel-container iframe {
    width: 100%;
    height: 620px;
    border: none;
}

@media (max-width: 768px) {
    .reels-grid {
        grid-template-columns: 1fr;
    }
}