:root {
    --color-vanilla: #fdfbf7; 
    --color-espresso: #5A473D; 
    --color-cacao: #8f6c4f; 
    --color-olive: #d1c83c; 
    --color-sunflower: #eacb48; 
    --color-white: #ffffff;
    --color-off-white: #f5f3eb;
    
    --font-heading: 'Mitr', sans-serif;
    --font-body: 'Mitr', sans-serif;
    
    --shadow-soft: 0 15px 35px rgba(90, 71, 61, 0.05);
    --shadow-medium: 0 20px 45px rgba(90, 71, 61, 0.08);
    --shadow-hover: 0 25px 50px rgba(90, 71, 61, 0.12);
    --shadow-glow: 0 10px 40px rgba(234, 203, 72, 0.35); /* new glow */
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Animations --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

@keyframes floatReverse {
    0% { transform: translateY(0px); }
    50% { transform: translateY(12px); }
    100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(234, 203, 72, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(234, 203, 72, 0); }
    100% { box-shadow: 0 0 0 0 rgba(234, 203, 72, 0); }
}

@keyframes gradientPan {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes blobAnim {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
    100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

/* Reset & Basics */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background-color: var(--color-vanilla);
    color: var(--color-espresso);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-espresso);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: rgba(90, 71, 61, 0.85);
}

a { text-decoration: none; color: var(--color-espresso); transition: var(--transition); }
img { max-width: 100%; height: auto; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
.text-center { text-align: center; }
.section-title {
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    position: relative;
    display: inline-block;
    font-weight: 500;
    background: linear-gradient(90deg, var(--color-espresso), var(--color-cacao));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: linear-gradient(90deg, var(--color-sunflower), var(--color-olive));
    border-radius: 6px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-family: var(--font-heading);
}
.btn-primary {
    background: linear-gradient(45deg, var(--color-sunflower), #f0d663);
    color: var(--color-espresso);
    box-shadow: var(--shadow-glow);
    animation: pulseGlow 2.5s infinite;
}
.btn-primary:hover {
    animation: none;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(234, 203, 72, 0.5);
    background: linear-gradient(45deg, #f0d663, var(--color-sunflower));
}
.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-cacao);
    color: var(--color-cacao);
}
.btn-outline:hover {
    background-color: var(--color-cacao);
    color: var(--color-white);
    border-color: var(--color-cacao);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(143, 108, 79, 0.4);
}

/* Navigation - Modern Glassmorphism */
.navbar {
    padding: 15px 0;
    background-color: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(90, 71, 61, 0.06);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-right-group {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-espresso);
    line-height: 1.2;
}
.logo span.sub {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-cacao);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}
.nav-links a {
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--color-espresso);
    position: relative;
    padding-bottom: 5px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--color-sunflower);
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
    border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--color-cacao); }

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-family: var(--font-heading);
    padding: 6px 14px;
    border: 1px solid rgba(90, 71, 61, 0.12);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}
.lang-switcher:hover { border-color: var(--color-sunflower); background-color: var(--color-white); }
.lang-switcher a {
    color: var(--color-cacao);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    padding-bottom: 0 !important;
}
.lang-switcher a::after { display: none !important; }
.lang-switcher a:hover { color: var(--color-sunflower); }
.lang-switcher a.active { color: var(--color-espresso); font-weight: 600; cursor: default; }
.lang-switcher .divider { color: rgba(90, 71, 61, 0.3); font-size: 0.8rem; }

/* Sections Base */
section { padding: 120px 0; }

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-image: url('../images/home_bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(253, 251, 247, 0.85);
    z-index: 0;
}
/* Dynamic blobs in background */
.hero::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: linear-gradient(45deg, rgba(234,203,72,0.4), rgba(209,200,60,0.3));
    z-index: 0;
    animation: blobAnim 12s ease-in-out infinite, floatReverse 8s ease-in-out infinite;
    filter: blur(60px);
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(-45deg, rgba(143,108,79,0.2), rgba(234,203,72,0.2));
    z-index: 0;
    animation: blobAnim 14s ease-in-out infinite reverse, float 10s ease-in-out infinite;
    filter: blur(70px);
}
.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2; /* Ensure it stays above overlay */
}
.hero-content h1 {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--color-espresso);
    line-height: 1.15;
}
.hero-content p {
    font-size: 1.35rem;
    max-width: 650px;
    margin-bottom: 2.5rem;
    color: rgba(90, 71, 61, 0.9);
}

/* About Section */
.about {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    margin: 0 20px;
    box-shadow: var(--shadow-medium);
    position: relative;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-text .highlight {
    background: linear-gradient(90deg, var(--color-cacao), var(--color-olive));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}
.about-image {
    background-color: var(--color-off-white);
    border-radius: var(--radius-lg);
    position: relative;
    height: 500px;
    transition: var(--transition);
}
.about-image:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.about-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--color-sunflower), var(--color-olive));
    animation: blobAnim 8s ease-in-out infinite;
    z-index: -1;
    opacity: 0.6;
}

/* Vision & Mission */
.vision-mission { background-color: var(--color-vanilla); }
.vision-card {
    background: linear-gradient(-45deg, var(--color-espresso), #4a3a32, var(--color-cacao), var(--color-espresso));
    background-size: 300% 300%;
    animation: gradientPan 12s ease infinite;
    color: var(--color-white);
    padding: 80px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    margin-bottom: 80px;
    box-shadow: var(--shadow-medium);
}
.vision-card h2 { color: var(--color-sunflower); font-size: 1.6rem; margin-bottom: 20px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;}
.vision-card p {
    color: var(--color-white);
    font-size: 2.3rem;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.4;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Make mission cards colorful */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.mission-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.mission-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }

/* Colorful Top Borders & Hover Effects */
.mission-card:nth-child(1) { border-top: 5px solid var(--color-sunflower); }
.mission-card:nth-child(2) { border-top: 5px solid var(--color-cacao); }
.mission-card:nth-child(3) { border-top: 5px solid var(--color-olive); }
.mission-card:nth-child(4) { border-top: 5px solid var(--color-espresso); }
.mission-card:nth-child(5) { border-top: 5px solid var(--color-sunflower); }

/* Animated Number behind text */
.mission-number {
    font-size: 6rem;
    font-weight: 500;
    position: absolute;
    top: -10px;
    right: 15px;
    line-height: 1;
    z-index: -1;
    background: linear-gradient(135deg, rgba(234,203,72,0.4), rgba(209,200,60,0.1));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}
.mission-card:hover .mission-number { transform: scale(1.2) rotate(5deg); }

/* Timeline */
.timeline-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}
.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-sunflower), var(--color-cacao), var(--color-espresso));
    border-radius: 5px;
}
.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 60px;
    transition: var(--transition);
}
.timeline-item:hover { transform: translateX(10px); }
.timeline-dot {
    position: absolute;
    left: 14px;
    top: 5px;
    width: 22px;
    height: 22px;
    background-color: var(--color-sunflower);
    border-radius: 50%;
    border: 4px solid var(--color-vanilla);
    animation: pulseGlow 2.5s infinite;
}
.timeline-item:nth-child(2) .timeline-dot { background-color: var(--color-cacao); animation-delay: 1s;}
.timeline-item:nth-child(3) .timeline-dot { background-color: var(--color-espresso); animation-delay: 2s;}

.timeline-date {
    display: inline-block;
    color: var(--color-cacao);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.timeline-content h3 { font-size: 1.6rem; margin-bottom: 12px; }

/* Brands Section */
.brands-umbrella {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    margin: 0 20px 40px;
    padding: 80px 0;
    box-shadow: var(--shadow-medium);
    border-top: 8px solid var(--color-sunflower);
}
.brand-logo-box {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.brand-logo-box:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px) scale(1.02);
}

/* Deep dive brand card (Fumiko) */
.brand-card {
    background: linear-gradient(135deg, var(--color-vanilla), #f2efe4);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow-medium);
    margin: 0 20px;
}
.brand-content { padding: 80px; }
.brand-content h3 { font-size: 3rem; margin-bottom: 10px; color: var(--color-cacao); }
.brand-image-placeholder img { transition: transform 0.8s ease; }
.brand-card:hover .brand-image-placeholder img { transform: scale(1.05); }

/* Gallery Section */
.gallery { background-color: var(--color-vanilla); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--color-off-white);
    position: relative;
    box-shadow: var(--shadow-soft);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s;
}
.gallery-item:hover img { 
    transform: scale(1.1); 
    filter: brightness(1.1); /* vibrant pop */
}

/* Trust Signals */
.trust {
    background: linear-gradient(135deg, var(--color-espresso), #45372e);
    color: var(--color-vanilla);
    border-radius: var(--radius-xl);
    margin: 0 20px;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.trust::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 203, 72, 0.15) 0%, transparent 60%);
    animation: blobAnim 15s infinite;
}
.trust .section-title { color: var(--color-vanilla); -webkit-text-fill-color: var(--color-vanilla); }
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative; z-index: 1;
}
.trust-item { text-align: center; }
.trust-item i {
    font-size: 3rem;
    color: var(--color-sunflower);
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 5px 15px rgba(234,203,72,0.4));
}
.trust-item:nth-child(1) i { animation: float 4s ease-in-out infinite; }
.trust-item:nth-child(2) i { animation: floatReverse 5s ease-in-out infinite; }
.trust-item:nth-child(3) i { animation: float 6s ease-in-out infinite; }
.trust-item:nth-child(4) i { animation: floatReverse 4.5s ease-in-out infinite; }

.trust-item h3 { color: var(--color-white); font-size: 1.25rem; font-weight: 500; }

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-medium);
}
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    transition: transform 0.3s;
}
.contact-item:hover { transform: translateX(10px); }
.contact-icon {
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--color-sunflower), var(--color-olive));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 25px;
    margin-top: 5px;
}

/* Contact Form Box (Responsive) */
.contact-form-box {
    background-color: var(--color-vanilla);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

form input, form textarea {
    padding: 16px 20px;
    border: 1px solid rgba(90, 71, 61, 0.15);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1.05rem;
    transition: var(--transition);
    background-color: var(--color-off-white);
}
form input:focus, form textarea:focus {
    outline: none;
    border-color: var(--color-cacao);
    background-color: var(--color-white);
    box-shadow: 0 5px 15px rgba(143, 108, 79, 0.1);
}

/* Gallery Interaction */
.gallery-item { cursor: pointer; }

/* Lightbox Modal */
.lightbox {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* fallback */
    background: rgba(90, 71, 61, 0.5);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80vh;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    object-fit: contain;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--color-vanilla);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
}

/* Footer */
footer {
    background-color: var(--color-vanilla);
    padding: 60px 0 40px;
    text-align: center;
}
footer h2 { font-size: 1.5rem; color: var(--color-espresso); margin-bottom: 10px; }

/* ========================================= */
/*       Mobile Menu (Glassmorphism)         */
/* ========================================= */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--color-espresso);
    cursor: pointer;
    z-index: 1002;
    transition: var(--transition);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 30px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }

.mobile-nav-links a {
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-espresso);
    font-family: var(--font-heading);
}

/* ========================================= */
/*           Responsive Constraints          */
/* ========================================= */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3rem; }
    .about-grid, .brand-card, .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .brand-image-placeholder { height: 400px; order: -1; }
    .brand-content { padding: 50px; }
}

@media (max-width: 768px) {
    section { padding: 80px 0; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; order: 2; }
    .lang-switcher { order: 1; padding: 4px 10px; border-color: rgba(90, 71, 61, 0.2); }
    .lang-switcher a { font-size: 0.85rem; }
    
    .navbar-logo-img { height: 45px !important; }
    
    /* Hero Section Fixes */
    .hero { 
        min-height: 80vh; 
        background-attachment: scroll; /* ป้องกันรูปหายหรือแหว่งบนมือถือ */
    }
    .hero-content h1 { font-size: 2.6rem; }
    .hero-content p { font-size: 1.15rem; }
    .hero-content .btn { margin-bottom: 15px; width: 100%; justify-content: center; }
    .hero-content .btn-outline { margin-left: 0 !important; }
    
    .section-title { font-size: 2.2rem; margin-bottom: 2.5rem; }
    
    /* Content Blocks */
    .about-image { height: 350px; }
    .about { margin: 0 10px; }
    
    .vision-card { padding: 40px 20px; }
    .vision-card p { font-size: 1.6rem; }
    
    .mission-grid { grid-template-columns: 1fr; }
    .mission-number { font-size: 5rem; top: -5px; }
    
    .brands-umbrella { padding: 60px 0; margin: 0 10px; }
    .brand-logo-box { width: 180px !important; height: 180px !important; }
    .brand-content { padding: 40px 20px; }
    .brand-content h3 { font-size: 2.2rem; }
    .brand-card { margin: 0 10px; }
    
    .contact-wrapper { padding: 40px 20px; }
    .contact-form-box { padding: 40px 30px; }
    .trust { padding: 80px 0; margin: 0 10px; }
}

@media (max-width: 576px) {
    section { padding: 60px 0; }
    .container { width: 95%; padding: 0 15px; }
    
    .hero-content h1 { font-size: 2.2rem; line-height: 1.3; }
    .section-title { font-size: 1.7rem; }
    
    /* Make blocks edge-to-edge on very small screens */
    .about, .brand-card, .trust, .brands-umbrella { border-radius: 0; margin: 0; }
    .about-image, .brand-image-placeholder { height: 250px; border-radius: 0; }
    
    .timeline-item { padding-left: 50px; margin-bottom: 40px; }
    .timeline-container::before { left: 16px; }
    .timeline-dot { left: 6px; width: 18px; height: 18px; border-width: 3px; }
    .timeline-content h3 { font-size: 1.3rem; }
    
    .trust-grid { grid-template-columns: 1fr; gap: 30px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    
    .contact-wrapper { background: none; padding: 0; box-shadow: none; gap: 20px; }
    .contact-form-box { padding: 30px 20px; }
}

/* For very small devices (like iPhone SE) fixing reCAPTCHA overflow */
@media (max-width: 380px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
}
