/* ============================================
   CSS Variables - Brand Colors
   ============================================ */
:root {
    --primary-green: #25995C;
    --text-black: #4A4A4A;
    --white: #FFFFFF;
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   Sticky Navigation Bar
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
    width: 100%;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background-color: var(--text-black);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
    display: block;
    position: absolute;
}

.hamburger-line:nth-child(1) {
    top: 10px;
}

.hamburger-line:nth-child(2) {
    top: 18.5px;
}

.hamburger-line:nth-child(3) {
    top: 27px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    top: 18.5px;
    transform: rotate(135deg);
    background-color: var(--primary-green);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    top: 18.5px;
    transform: rotate(45deg);
    background-color: var(--primary-green);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-black);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-green);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('assests/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 2rem;
    margin-top: -120px;
    padding-top: calc(120px + 2rem);
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-content {
    max-width: 600px;
    padding: 2rem;
}

.organic-badge {
    color: var(--primary-green);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkmark {
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.title-highlight {
    display: block;
}

.hero-tagline {
    color: var(--text-black);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.5;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.9);
}

/* ============================================
   Buttons
   ============================================ */
.cta-button {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(37, 153, 92, 0.3);
}

.cta-button:hover {
    background-color: #1e7a4a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 153, 92, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* ============================================
   About Us Section
   ============================================ */
.about-section {
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: stretch;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 80vh;
}

.about-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem;
    overflow: hidden;
}

.about-left::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background-image: url('assests/hero.png');
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    z-index: 0;
}

.about-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.about-overlay {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    max-width: 650px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.section-label {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-subtitle {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.8;
}

.about-right {
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.about-logo {
    height: 120px;
    width: auto;
    margin-bottom: 1.5rem;
}

.about-tagline {
    color: var(--text-black);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.mission-statement {
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 600;
    max-width: 400px;
    line-height: 1.6;
}

/* ============================================
   Products Showcase Section
   ============================================ */
.products-showcase-section {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.products-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}

.products-main-title {
    text-align: center;
    color: var(--text-black);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.products-subtitle {
    text-align: center;
    color: var(--primary-green);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.product-card-1 {
    background-image: url('assests/hero.png');
    filter: brightness(0.9);
}

.product-card-2 {
    background-image: url('assests/hero.png');
    filter: brightness(0.9) hue-rotate(60deg);
}

.product-card-3 {
    background-image: url('assests/hero.png');
    filter: brightness(0.8) hue-rotate(120deg);
}

.product-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px 10px 0 0;
}

.product-tagline {
    color: var(--text-black);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-name {
    color: var(--text-black);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-button {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-button:hover {
    background-color: #1e7a4a;
    transform: translateY(-2px);
}

/* ============================================
   Product Grid Section
   ============================================ */
.product-grid-section {
    padding: 4rem 2rem;
    background-color: #e8f5e9;
}

.product-grid-container {
    max-width: 1200px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.grid-product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.grid-product-card:hover {
    transform: translateY(-5px);
}

.grid-product-image {
    width: 100%;
    height: 200px;
    background-image: url('assests/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.grid-product-title {
    text-align: center;
    color: var(--text-black);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 0.5rem;
}

.grid-product-button {
    width: 100%;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0 0 10px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.grid-product-button:hover {
    background-color: #1e7a4a;
}

/* ============================================
   Why Ceylon Crispa Section
   ============================================ */
.why-ceylon-section {
    padding: 4rem 2rem;
    background-image: url('assests/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.why-ceylon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.why-ceylon-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-ceylon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.why-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}

.why-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
}

.organic-badge-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-content {
    flex: 1;
}

.why-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-description {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* ============================================
   Certifications Section
   ============================================ */
.certifications-section {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.certifications-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.certifications-label {
    color: var(--text-black);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.certifications-title {
    color: var(--primary-green);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.certification-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.certification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.certification-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.certification-text {
    color: var(--text-black);
    font-size: 0.9rem;
    text-align: center;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: #1a1a1a;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-left {
    display: flex;
    align-items: flex-start;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-green);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-website {
    color: var(--white);
    font-size: 1rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.design-credit {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.dekode {
    color: #ff0000;
    font-weight: 600;
}

/* ============================================
   Responsive Design - Mobile First
   ============================================ */
@media (max-width: 1024px) and (min-width: 769px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-left {
        min-height: 400px;
    }

    .products-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-ceylon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .nav-container {
        padding: 1rem;
        position: relative;
    }

    .hamburger-menu {
        display: flex;
        order: 2;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 999;
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: -1;
        left: 0;
    }

    .nav-links.active::after {
        opacity: 1;
        pointer-events: all;
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120px;
        background: linear-gradient(to bottom, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
        z-index: 1;
        pointer-events: none;
        border-bottom: 1px solid rgba(37, 153, 92, 0.1);
    }

    .nav-links li {
        width: 100%;
        max-width: 400px;
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-link {
        font-size: 1.2rem;
        font-weight: 600;
        padding: 1.2rem 1.5rem;
        width: 100%;
        text-align: left;
        border-radius: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
        position: relative;
        color: var(--text-black);
        margin-bottom: 0.8rem;
        background-color: transparent;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background-color: var(--primary-green);
        border-radius: 0 4px 4px 0;
        transition: height 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(37, 153, 92, 0.1);
        color: var(--primary-green);
        transform: translateX(8px);
        padding-left: 2rem;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        height: 70%;
    }

    .nav-link.active::after {
        display: none;
    }

    .hero-section {
        min-height: 80vh;
        padding: 1rem;
        margin-top: -80px;
        padding-top: calc(100px + 1rem);
    }

    .hero-content {
        max-width: 100%;
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .organic-badge {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .about-section {
        min-height: auto;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-left {
        min-height: 400px;
        padding: 1.5rem;
    }

    .about-overlay {
        max-width: 100%;
        padding: 2rem;
        border-radius: 12px;
    }

    .about-subtitle {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .about-right {
        padding: 2rem 1.5rem;
    }

    .about-logo {
        height: 80px;
        margin-bottom: 1rem;
    }

    .mission-statement {
        font-size: 1rem;
    }

    .products-showcase-section {
        padding: 3rem 1.5rem;
    }

    .products-main-title {
        font-size: 2rem;
    }

    .products-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .products-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-card {
        height: 450px;
    }

    .product-card-overlay {
        padding: 1.5rem;
    }

    .product-name {
        font-size: 1.5rem;
    }

    .product-tagline {
        font-size: 0.85rem;
    }

    .product-grid-section {
        padding: 3rem 1.5rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .grid-product-image {
        height: 180px;
    }

    .grid-product-title {
        font-size: 0.9rem;
        padding: 0.8rem 0.5rem;
    }

    .grid-product-button {
        font-size: 0.9rem;
        padding: 0.7rem;
    }

    .why-ceylon-section {
        padding: 3rem 1.5rem;
    }

    .why-ceylon-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-card {
        padding: 1.5rem;
        gap: 1rem;
    }

    .why-badge {
        width: 80px;
        height: 80px;
    }

    .why-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .why-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .certifications-section {
        padding: 3rem 1.5rem;
    }

    .certifications-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .certification-image {
        max-width: 80px;
    }

    .certification-text {
        font-size: 0.85rem;
    }

    .footer {
        padding: 2rem 1.5rem 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-left {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-right {
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        height: 70px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 1.5rem;
    }

    .copyright,
    .design-credit {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }

    .logo {
        height: 45px;
    }

    .nav-links {
        padding-top: 80px;
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }

    .hero-section {
        min-height: 70vh;
        margin-top: -60px;
        padding-top: calc(90px + 1rem);
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .title-highlight {
        font-size: 1.6rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .organic-badge {
        font-size: 0.85rem;
    }

    .checkmark {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }

    .about-left {
        min-height: 300px;
        padding: 1rem;
    }

    .about-overlay {
        padding: 1.5rem;
        border-radius: 10px;
    }

    .section-label {
        font-size: 0.8rem;
    }

    .about-title {
        font-size: 1.3rem;
    }

    .about-subtitle {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 0.85rem;
    }

    .about-right {
        padding: 1.5rem 1rem;
    }

    .about-logo {
        height: 60px;
    }

    .about-tagline {
        font-size: 0.85rem;
    }

    .mission-statement {
        font-size: 0.9rem;
    }

    .products-showcase-section {
        padding: 2rem 1rem;
    }

    .products-main-title {
        font-size: 1.8rem;
    }

    .products-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .product-card {
        height: 400px;
    }

    .product-card-overlay {
        padding: 1.2rem;
    }

    .product-name {
        font-size: 1.3rem;
    }

    .product-tagline {
        font-size: 0.8rem;
    }

    .product-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .product-grid-section {
        padding: 2rem 1rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .grid-product-image {
        height: 200px;
    }

    .why-ceylon-section {
        padding: 2rem 1rem;
    }

    .why-card {
        padding: 1.2rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .why-badge {
        width: 70px;
        height: 70px;
    }

    .why-title {
        font-size: 1.2rem;
    }

    .why-description {
        font-size: 0.85rem;
    }

    .certifications-section {
        padding: 2rem 1rem;
    }

    .certifications-label {
        font-size: 0.8rem;
    }

    .certifications-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .certification-image {
        max-width: 70px;
    }

    .certification-text {
        font-size: 0.8rem;
    }

    .footer {
        padding: 1.5rem 1rem 0.5rem;
    }

    .footer-logo {
        height: 60px;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-website {
        font-size: 0.9rem;
    }

    .copyright,
    .design-credit {
        font-size: 0.75rem;
    }
}

/* ============================================
   Extra Small Mobile Devices
   ============================================ */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .title-highlight {
        font-size: 1.3rem;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .about-subtitle {
        font-size: 1.3rem;
    }

    .products-main-title {
        font-size: 1.5rem;
    }

    .products-subtitle {
        font-size: 1.1rem;
    }

    .why-title {
        font-size: 1.1rem;
    }

    .certifications-title {
        font-size: 1.4rem;
    }
}

/* ============================================
   Touch Target Improvements
   ============================================ */
@media (hover: none) and (pointer: coarse) {
    .nav-link {
        padding: 0.5rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cta-button,
    .product-button,
    .grid-product-button {
        min-height: 44px;
        touch-action: manipulation;
    }
}
