   :root {
    /* Navy Palette */
    --navy-primary: #063970;
    --navy-dark: #042a54;
    --navy-light: #0a4a8a;
    --navy-subtle: #e8f1fa;

    /* Blue Accent */
    --coral-primary: #2596be;
    --coral-hover: #1e7fa3;
    --coral-light: #3aabcf;
    --coral-subtle: #e6f4fa;

    /* Grays */
    --gray-900: #1a1a1a;
    --gray-700: #313131;
    --gray-500: #666666;
    --gray-300: #aaaaaa;
    --gray-200: #dddddd;
    --gray-100: #f5f5f5;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;

    /* Border Radius */
    --radius-md: 8px;
    --radius-lg: 12px;
   }

   *{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kanit', sans-serif;
   }

   body {
    background-color: #f5f5f5;
   }

   .navbar {
    background: var(--navy-primary);
    height: 80px;
    display:flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: relative;
    z-index:100;
   }

   .navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coral-primary), var(--coral-hover));
   }

   .navbar--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
   }

   .navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px
   }

   #navbar__logo {
    color: white;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
   }

   #navbar__logo em {
    font-style: italic;
   }

   .navbar__logo-small {
    font-size: 1.5rem;
    position: relative;
    top: 3px;
   }

   .navbar__logo-img {
    height: 50px;
    margin-right: 10px;
    align-self: center;
   }

   .navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
   }

   .navbar__item {
    height: 80px;
   }

   .navbar__links {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 2rem;
    height: 100%;
    position: relative;
   }

   .navbar__links::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--coral-primary);
    border-radius: 2px;
    transition: width var(--transition-normal);
   }

   .navbar__links:hover::after,
   .navbar__links.active::after {
    width: 60%;
   }

   .navbar__links.active {
    color: #fff;
   }

   .scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 56px;
    height: 56px;
    background-color: var(--coral-primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 150, 190, 0.4);
    transition: all var(--transition-normal);
    z-index: 99;
   }

   .scroll-top:hover {
    background-color: var(--coral-hover);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 150, 190, 0.5);
   }

   .scroll-top-icon {
    width: 28px;
    height: 28px;
    filter: invert(1);
   }

   .contact-circle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background-color: var(--coral-primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 150, 190, 0.4);
    transition: all var(--transition-normal);
    z-index: 99;
   }

   .contact-circle:hover {
    background-color: var(--coral-hover);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 150, 190, 0.5);
   }

   .contact-icon {
    width: 28px;
    height: 28px;
    filter: invert(1);
   }

   .contact-text {
    position: absolute;
    right: 65px;
    background-color: var(--navy-dark);
    color: white;
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    white-space: nowrap;
    opacity: 0;
    transition: opacity var(--transition-normal);
    box-shadow: var(--shadow-md);
   }

   .contact-text.show {
    opacity: 1;
   }

   .contact-text__link {
    color: inherit;
    text-decoration: underline;
   }

   /* Sections */
   .hero {
    background: linear-gradient(135deg, rgba(232, 241, 250, 0.92) 0%, rgba(255, 255, 255, 0.88) 100%), url('images/NA_front.JPG');
    background-size: cover;
    background-position: center;
    padding: 120px 50px 100px;
   }

   .hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    gap: 60px;
   }

   .hero__left {
    text-align: center;
   }

   .hero__logo {
    height: 200px;
    margin-bottom: 24px;
    display: block;
    margin-left: auto;
    margin-right: auto;
   }

   .hero__left h1 {
    font-size: 3.5rem;
    color: var(--navy-primary);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.2;
   }

   .hero__left h2 {
    font-size: 1.75rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    font-weight: 500;
   }

   .hero__left p {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 32px;
   }

   .hero__hours {
    font-size: 1.2rem;
    color: var(--coral-primary);
    font-weight: 600;
    margin-bottom: 24px;
   }

   .hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
   }

   .hero__right {
    display: flex;
    justify-content: center;
   }

   .hero__image {
    max-width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
   }

   /* Hero Image Slider */
   .hero__slider {
    position: relative;
    width: 100%;
    max-width: 550px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
   }

   .hero__slides {
    position: relative;
    width: 100%;
    height: 400px;
   }

   .hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
   }

   .hero__slide.active {
    opacity: 1;
   }

   .hero__dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
   }

   .hero__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
   }

   .hero__dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
   }

   .hero__dot.active {
    background-color: var(--coral-primary);
    border-color: #fff;
    transform: scale(1.1);
   }

   .about, .products, .contact-section {
    padding: 80px 50px;
    max-width: 1300px;
    margin: 0 auto;
   }

   .about {
    background: linear-gradient(rgba(6, 57, 112, 0.88), rgba(6, 57, 112, 0.92)), url('images/NA_newmachine.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    max-width: none;
    position: relative;
    padding-bottom: 120px;
   }

   .about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #0a4a8a);
    pointer-events: none;
   }

   .about__container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
   }

   .about__title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
    position: relative;
    display: block;
   }

   .about__title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--coral-primary);
    border-radius: 2px;
    transition: width 0.6s ease;
   }

   .about__title.visible::after {
    width: 200px;
   }

   /* About History - Full Width Section */
   .about__history {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--coral-primary);
   }

   .about__history h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 20px;
    font-weight: 600;
   }

   .about__history p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 2;
    text-align: left;
    text-indent: 2.5em;
    margin-bottom: 16px;
   }

   .about__history p:last-child {
    margin-bottom: 0;
   }

   /* Desktop - hide toggle, show full text */
   .about__history-toggle {
    display: none;
   }

   /* About grid - 2 columns */
   .about__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
   }

   .about__card {
    background-color: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
   }

   .about__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--coral-primary);
    border-radius: 2px;
    transition: height var(--transition-normal);
   }

   .about__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--coral-subtle);
   }

   .about__card:hover::before {
    height: 100%;
   }

   .about__icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--coral-primary);
   }

   .about__card h3 {
    font-size: 1.3rem;
    color: var(--gray-900);
    margin-bottom: 15px;
    font-weight: 600;
   }

   .about__card p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
   }


   /* Motto Section */
   .motto {
    background: linear-gradient(135deg, #0a4a8a 0%, var(--navy-primary) 25%, #063970 50%, var(--navy-dark) 75%, #031d3a 100%);
    padding: 100px 50px;
   }

   .motto__container {
    max-width: 1300px;
    margin: 0 auto;
   }

   .motto__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
   }

   .motto__text {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-align: center;
   }

   .motto__heart {
    font-size: 2.5rem;
    color: var(--coral-primary);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
   }

   .motto__heart.show {
    opacity: 1;
    transform: translateY(0) scale(1);
   }

   /* Buttons */
   .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
   }

   /* Primary CTA - Coral */
   .btn--coral {
    background-color: var(--coral-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 150, 190, 0.4);
   }

   .btn--coral:hover {
    background-color: var(--coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 150, 190, 0.5);
   }

   /* Secondary - Navy (default) */
   .btn--navy {
    background-color: var(--navy-primary);
    color: #fff;
    box-shadow: var(--shadow-md);
   }

   .btn--navy:hover {
    background-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
   }

   /* Outline variants */
   .btn--outline {
    background-color: transparent;
    border: 2px solid var(--navy-primary);
    color: var(--navy-primary);
   }

   .btn--outline:hover {
    background-color: var(--navy-primary);
    color: #fff;
   }

   .btn--outline-coral {
    background-color: transparent;
    border: 2px solid var(--coral-primary);
    color: var(--coral-primary);
   }

   .btn--outline-coral:hover {
    background-color: var(--coral-primary);
    color: #fff;
   }

   .btn--white {
    background-color: #fff;
    color: var(--navy-primary);
    box-shadow: var(--shadow-md);
   }

   .btn--white:hover {
    background-color: var(--gray-100);
    transform: translateY(-2px);
   }

   .btn--sm {
    padding: 10px 20px;
    font-size: 0.875rem;
   }

   .products {
    background-color: #fff;
    width: 100%;
    max-width: none;
   }

   .products__container {
    max-width: 1300px;
    margin: 0 auto;
   }

   .products__title {
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
    position: relative;
    display: block;
   }

   .products__title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--coral-primary);
    border-radius: 2px;
    transition: width 0.6s ease;
   }

   .products__title.visible::after {
    width: 280px;
   }

   .products__subtitle {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 25px;
    font-weight: 600;
    padding-left: 16px;
    border-left: 4px solid var(--coral-primary);
    margin-top: 50px;
   }

   .products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
   }

   .products__grid--2col {
    grid-template-columns: repeat(2, 1fr);
   }

   .products__card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
   }

   .products__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
   }

   /* Product Image Wrapper for Hover Effect */
   .products__image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
   }

   .products__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: opacity 0.4s ease;
   }

   .products__image--hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
   }

   .products__card--hover:hover .products__image:not(.products__image--hover) {
    opacity: 0;
   }

   .products__card--hover:hover .products__image--hover {
    opacity: 1;
   }

   .products__info {
    padding: 20px;
   }

   .products__info h4 {
    font-size: 1.2rem;
    color: #313131;
    margin-bottom: 10px;
    font-weight: 600;
   }

   .products__info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
   }

   /* Service Area Expandable */
   .service-area-toggle {
    color: var(--gray-500);
    cursor: pointer;
    text-decoration: underline;
    transition: color var(--transition-fast);
   }

   .service-area-toggle:hover {
    color: var(--coral-primary);
   }

   .service-area-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
   }

   .service-area-list.show {
    max-height: 200px;
    margin-top: 15px;
   }

   .service-area-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 15px;
    background-color: var(--coral-subtle);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--coral-primary);
   }

   .service-area-list li {
    font-size: 0.9rem;
    color: var(--gray-700);
   }

   #contact {
    background-color: #f5f5f5;
    padding: 40px 50px 80px;
    width: 100%;
    max-width: none;
   }

   .contact__container {
    max-width: 1300px;
    margin: 0 auto;
   }

   .contact__title {
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
    position: relative;
    display: block;
   }

   .contact__title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--coral-primary);
    border-radius: 2px;
    transition: width 0.6s ease;
   }

   .contact__title.visible::after {
    width: 175px;
   }

   .contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
    grid-auto-rows: minmax(400px, auto);
   }

   .contact__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
   }

   .contact__item {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
    flex: 1;
    display: flex;
    flex-direction: column;
   }

   .contact__item:hover {
    box-shadow: var(--shadow-md);
   }

   .contact__item h3 {
    font-size: 1.3rem;
    color: var(--gray-900);
    margin-bottom: 15px;
    font-weight: 600;
    padding-left: 16px;
    border-left: 4px solid var(--coral-primary);
   }

   .contact__item p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 20px;
   }

   .contact__item .btn {
    margin-top: 10px;
    display: block;
    text-align: center;
    margin-left: auto;
    width: fit-content;
   }

   .contact__item-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
   }

   .contact__item-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
   }

   .contact__qr {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-md);
   }

   .contact__qr-text {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 8px;
    margin-bottom: 0 !important;
   }

   .contact__item-right p {
    margin-bottom: 8px;
   }

   .contact__link {
    color: inherit;
    text-decoration: underline;
   }

   .contact__item-right p:last-child {
    margin-bottom: 0;
   }

   .contact__map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
   }

   .contact__map iframe {
    display: block;
    height: 100%;
   }

   .products h2, #contact h2 {
    font-size: 2rem;
    color: navy;
    margin-bottom: 20px;
    text-align: center;
   }

   .about p, .products p, #contact p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
   }

   /* Footer */
   .footer {
    background-color: var(--navy-dark);
    color: #fff;
    padding: 60px 50px 30px;
    margin-top: 65px;
   }

   .footer__container {
    max-width: 1300px;
    margin: 0 auto;
   }

   .footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
   }

   .footer__logo {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
   }

   .footer__description {
    color: var(--gray-300);
    line-height: 1.6;
   }

   .footer__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
   }

   .footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--coral-primary);
    border-radius: 2px;
   }

   .footer__links {
    list-style: none;
   }

   .footer__links li {
    margin-bottom: 10px;
   }

   .footer__links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: all var(--transition-fast);
   }

   .footer__links a:hover {
    color: var(--coral-primary);
    padding-left: 5px;
   }

   .footer__contact {
    list-style: none;
   }

   .footer__contact li {
    color: var(--gray-300);
    margin-bottom: 10px;
   }

   .footer__link {
    color: inherit;
    text-decoration: underline;
   }

   .footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
   }

   .footer__bottom p {
    color: var(--gray-500);
    font-size: 0.9rem;
   }

   .footer__credit {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--gray-300);
   }

   /* Smooth scrolling */
   html {
    scroll-behavior: smooth;
   }

   /* Scroll Animations */
   .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    animation: fallback-show 0.6s ease 1s forwards;
   }

   .fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
    animation: none;
   }

   @keyframes fallback-show {
    to {
     opacity: 1;
     transform: translateY(0);
    }
   }

   .fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    animation: fallback-show 0.6s ease 1s forwards;
   }

   .fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
    animation: none;
   }

   .fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    animation: fallback-show 0.6s ease 1s forwards;
   }

   .fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
    animation: none;
   }

   /* Hamburger menu - hidden on desktop */
   .navbar__toggle {
    display: none;
   }

   .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
   }

   /* Tablet styles - contact section single column earlier */
   @media screen and (max-width: 1100px) {
    .contact__content {
     grid-template-columns: 1fr;
     gap: 30px;
     grid-auto-rows: auto;
    }

    .contact__map {
     height: 350px;
    }

    .contact__map iframe {
     height: 350px;
    }
   }

   /* Mobile styles */
   @media screen and (max-width: 1000px) {
    .navbar__toggle {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     height: 80px;
     cursor: pointer;
     padding: 0 20px;
     margin-right: 10px;
     overflow: visible;
    }

    .navbar__menu {
     position: absolute;
     top: 80px;
     left: 0;
     width: 100%;
     background-color: var(--navy-primary);
     flex-direction: column;
     display: none;
    }

    .navbar__menu.active {
     display: flex;
    }

    .navbar__item {
     height: auto;
     width: 100%;
    }

    .navbar__links {
     padding: 1.5rem;
     width: 100%;
     justify-content: center;
    }

    .navbar__container {
     padding: 0 20px;
    }

    .hero__container {
     grid-template-columns: 1fr;
     text-align: center;
     gap: 40px;
    }

    .hero__left {
     text-align: center;
    }

    .hero__logo {
     margin: 0 auto 20px;
    }

    .hero__left h1 {
     font-size: 2.25rem;
    }

    .hero__left h2 {
     font-size: 1.25rem;
    }

    .hero__left p {
     font-size: 1rem;
    }

    .hero__cta {
     justify-content: center;
    }

    .hero__slider {
     max-width: 100%;
    }

    .hero__slides {
     height: 300px;
    }

    .about {
     background-attachment: scroll;
    }

    .about__title {
     font-size: 2rem;
    }

    .about__grid {
     grid-template-columns: 1fr;
     gap: 24px;
    }

    .about__card {
     padding: 25px;
    }

    .about__icon {
     font-size: 2.5rem;
    }

    .about__card h3 {
     font-size: 1.2rem;
    }

    /* Mobile collapsible history */
    .about__history-text {
     max-height: 100px;
     overflow: hidden;
     transition: max-height 0.4s ease;
    }

    .about__history-text.expanded {
     max-height: 1000px;
    }

    .about__history-toggle {
     display: block !important;
     margin-top: 10px;
     cursor: pointer;
     text-decoration: underline;
     color: var(--gray-500);
     text-align: center;
    }

    .motto {
     padding: 60px 20px;
    }

    .motto__text {
     font-size: 1.5rem;
    }

    .motto__heart {
     font-size: 1.8rem;
    }

    .products__title {
     font-size: 2rem;
    }

    .products__grid {
     grid-template-columns: 1fr;
     gap: 20px;
    }

    .products__grid--2col {
     grid-template-columns: 1fr;
    }

    .products__subtitle {
     font-size: 1.3rem;
    }

    /* Mobile: hide glass image, show only first image */
    .products__card--hover .products__image--hover {
     display: none;
    }

    #contact {
     padding: 40px 20px 20px;
    }

    .contact__title {
     font-size: 2rem;
    }

    .contact__content {
     grid-template-columns: 1fr;
     gap: 30px;
     grid-auto-rows: auto;
    }

    .contact__map {
     height: 300px;
    }

    .contact__map iframe {
     height: 300px;
    }

    .footer {
     padding: 40px 20px 20px;
    }

    .footer__grid {
     grid-template-columns: 1fr;
     gap: 30px;
     text-align: center;
    }

    .footer__links,
    .footer__contact {
     display: flex;
     flex-direction: column;
     align-items: center;
    }
   }