/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #10afef;
    --secondary-color: #eeba5a;
    --heading: #0e3b9b;
    --background-color: #ffffff;
    --blue-bg: #f7fafc;
    --sub-heading: #7c7e83;
    --base-color: #192d3a;
    --black-text: #0d0d0e;
    --light-blue: #c2e9ff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ======================== 
=====HEADER & NAVIGATION ==
=========================== */

/* ==================== ABOVE NAVBAR ==================== */
.above-navbar-container {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--light-blue);
    padding: 12px 20px;
    border-bottom: 1px solid #e0dcd5;
}
.above-navbar-wrapper {
    max-width: 1400px;
    height: 7px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
/* Welcome Text - Left */
.above-navbar-welcome-text {
    font-size: 13px;
    color: var(--sub-heading);
    font-weight: 500;
    white-space: nowrap;
    min-width: fit-content;
}
/* Center Social Icons */
.above-navbar-social-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}
.above-navbar-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--sub-heading);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}
.above-navbar-social-icon:hover {
    color: var(--secondary-color);
}
/* Right Side - Contact Info */
.above-navbar-contact-section {
    display: flex;
    align-items: center;
    gap: 25px;
    white-space: nowrap;
}
.above-navbar-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--sub-heading);
    font-size: 13px;
    transition: color 0.3s ease;
}
.above-navbar-contact-item:hover {
    color: var(--secondary-color);
}
.above-navbar-contact-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    font-size: 14px;
}
.above-navbar-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    font-size: 16px;
    padding: 4px 8px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.above-navbar-search-btn:hover {
    color: #4a4a4a;
}
/* ==================== TABLET VIEW (768px - 1024px) ==================== */
@media (max-width: 1024px) {
    .above-navbar-container {
        padding: 10px 15px;
    }
    .above-navbar-wrapper {
        gap: 20px;
    }
    .above-navbar-welcome-text {
        font-size: 12px;
        display: none;
    }
    .above-navbar-social-section {
        gap: 15px;
    }
    .above-navbar-contact-section {
        gap: 18px;
    }
    .above-navbar-contact-item {
        font-size: 12px;
    }
    .above-navbar-social-icon {
        width: 20px;
        height: 20px;
        font-size: 14px;
        display: none;
    }
    .above-navbar-search-btn {
        font-size: 14px;
        padding: 2px 6px;
    }
}

/* ==================== MOBILE VIEW (Below 768px) - HIDDEN ==================== */
@media (max-width: 768px) {
    .above-navbar-container {
        display: none;
    }
}


.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 30px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 120px;
    cursor: pointer;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Navigation Menu */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 5px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    padding: 10px 18px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    white-space: nowrap;
}

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

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 18px;
    width: calc(100% - 36px);
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    list-style: none;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
}

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

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

/* CTA Button */
.cta-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(82, 199, 214, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ====================
====== HERO SECTION ===
======================= */
.hero-section {
    width: 100%;
    height: 700px;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.slide-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    z-index: 2;
    max-width: 80%;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Slider Navigation Arrows */
.slider-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 10;
    transition: all 0.3s ease;
    font-weight: 300;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--background-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.3);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Sticky WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px; /* Opposite corner of download button */
  background: #25D366;
  color: white;
  padding: 0.8rem 1rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 9999;

  display: flex;
  align-items: center;
  overflow: hidden;
  width: 55px;             /* Default small circle */
  white-space: nowrap;
}

/* Icon ALWAYS visible */
.whatsapp-btn .wa-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  display: inline-block;
}

/* Text hidden initially */
.whatsapp-btn .wa-text {
  opacity: 0;
  margin-left: 8px;
  transition: opacity 0.3s ease;
}

/* On hover → expand and show text */
.whatsapp-btn:hover {
  width: 180px;
  justify-content: flex-start;
}

.whatsapp-btn:hover .wa-text {
  opacity: 1;
}
/* ==================== TABLET VIEW (768px - 1024px) ==================== */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 15px;
        height: 70px;
        gap: 20px;
    }

    .logo {
        min-width: 100px;
        gap: 8px;
    }

    .logo-img {
    height: 40px;
    }

    .nav-list {
        gap: 3px;
    }

    .nav-link {
        padding: 8px 14px;
        font-size: 13px;
    }

    .nav-link.active::after {
        left: 14px;
        width: calc(100% - 28px);
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero-section {
        height: 400px;
    }

    .slide-title {
        font-size: 36px;
        max-width: 90%;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .slider-arrow.prev{
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

    .hero-footer {
        bottom: 20px;
        left: 20px;
        gap: 30px;
    }

    .flag-icon {
        width: 28px;
        height: 18px;
    }

    .language-selector {
        font-size: 13px;
    }

    .whatsapp-btn {
        bottom: 25px;
        left: 20px;
        width: 50px;
        padding: 0.7rem;
    }

      .whatsapp-btn:hover {
        width: 150px;
    }

      .whatsapp-btn .wa-text {
        font-size: 0.9rem;
    }
}

/* ==================== MOBILE VIEW (Below 768px) ==================== */
@media (max-width: 768px) {
    .header-container {
        height: 60px;
        padding: 0 12px;
        gap: 15px;
    }

    .logo {
        min-width: 90px;
        gap: 6px;
    }

    .logo-img {
        height: 38px;
    }

    .logo-svg {
        width: 40px;
        height: 40px;
    }

    .logo-name {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .logo-subtitle {
        font-size: 9px;
    }

    /* Mobile Menu Toggle Button */
    .mobile-menu-btn {
        display: flex;
        flex-shrink: 0;
    }

    .mobile-menu-btn span {
        width: 22px;
        height: 2.5px;
    }

    /* Navigation Menu - Mobile */
    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        max-height: 0;
        overflow: hidden;
        flex: none;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

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

    .nav-link {
        width: 100%;
        padding: 15px 16px;
        border-radius: 0;
        font-size: 14px;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        background-color: #f5f5f5;
        color: #52C7D6;
    }

    /* Dropdown Menu - Mobile */
    .dropdown-menu {
        position: static;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f9f9f9;
        margin-top: 0;
        transition: max-height 0.3s ease;
    }

    .nav-item.dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .nav-item.dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu li {
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu a {
        padding: 12px 16px;
        padding-left: 32px;
        border-radius: 0;
        background-color: #f9f9f9;
    }

    .dropdown-menu a:hover {
        background-color: #f0f0f0;
    }

    /* CTA Button - Mobile */
    .cta-btn {
        display: none;
    }

    /* Hero Section - Mobile */
    .hero-section {
        height: 350px;
    }

    .slide-title {
        font-size: 28px;
        max-width: 85%;
        padding: 0 15px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .hero-footer {
        bottom: 15px;
        left: 15px;
        gap: 20px;
    }

    .language-selector {
        font-size: 12px;
        gap: 6px;
    }

    .flag-icon {
        width: 24px;
        height: 16px;
    }

    .whatsapp-btn {
    bottom: 10px;
    left: 15px;
    width: 40px;
    height: 40px;
  }

}

/* ==================== SMALL MOBILE VIEW (Below 480px) ==================== */
@media (max-width: 480px) {
    .header-container {
        height: 55px;
        padding: 0 10px;
        gap: 10px;
    }

    .logo {
        min-width: 80px;
    }

    .logo-img {
        height: 30px;
    }

    .hero-section {
        height: 280px;
    }

    .slide-title {
        font-size: 22px;
        max-width: 90%;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .slider-arrow.prev {
        left: 8px;
    }

    .slider-arrow.next {
        right: 8px;
    }

    .slider-dots {
        bottom: 12px;
        gap: 6px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .hero-footer {
        bottom: 12px;
        left: 12px;
        gap: 15px;
    }

    .language-selector {
        font-size: 11px;
    }

    .flag-icon {
        width: 20px;
        height: 14px;
    }
}

/* ===================================
==== WELCOME TO SUNHARI INDIA SECTION ===
====================================== */
.welcome-section {
    background-color: var(--background-color);
    padding: 80px 20px;
}

.welcome-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Welcome Content */
.welcome-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.welcome-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--sub-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.welcome-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.2;
    text-transform: uppercase;
}

.welcome-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-align: justify;
}

.welcome-read-more-btn {
    align-self: flex-start;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.welcome-read-more-btn:hover {
    background-color: #3db3c8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(82, 199, 214, 0.3);
}

/* Gallery Grid */
/* .welcome-gallery {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    min-height: 400px;
} */

.gallery-single {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-single img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background-color: #ddd;
    aspect-ratio: 1;
    cursor: pointer;
}

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

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
} */

/* Gallery Overlay Text */
.gallery-overlay-text {
    position: absolute;
    top: 120%;
    right: 30px;
    transform: translateY(-50%);
    text-align: right;
    z-index: 5;
}

.overlay-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 180px;
    display: block;
}

/* ==================== LANGUAGE MODAL ==================== */
.language-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.language-modal.active {
    display: flex;
}

.language-modal-content {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 300px;
}

.language-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.language-list li {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.language-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 4px;
}

.lang-option:hover {
    color: var(--secondary-color);
    background-color: #f9f9f9;
}

.lang-flag {
    width: 32px;
    height: 22px;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ==================== TABLET VIEW WELCOME SECTION (768px - 1024px) ==================== */
@media (max-width: 1024px) {
    .welcome-section {
        padding: 60px 15px;
    }

    .welcome-container {
        gap: 40px;
        grid-template-columns: 1fr 1fr;
    }

    .welcome-title {
        font-size: 40px;
    }

    .welcome-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .welcome-label {
        font-size: 13px;
    }

    .welcome-gallery {
        gap: 10px;
        min-height: 350px;
    }

    .overlay-text {
        font-size: 16px;
        right: 15px;
        max-width: 150px;
    }

    .language-modal-content {
        min-width: 280px;
        padding: 25px;
    }

    .lang-option {
        font-size: 13px;
    }

    .lang-flag {
        width: 30px;
        height: 20px;
    }
}

/* ==================== MOBILE VIEW WELCOME SECTION (Below 768px) ==================== */
@media (max-width: 768px) {
    .welcome-section {
        padding: 50px 15px;
    }

    .welcome-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome-title {
        font-size: 32px;
    }

    .welcome-text {
        font-size: 13px;
        line-height: 1.7;
        text-align: left;
    }

    .welcome-label {
        font-size: 12px;
    }

    .gallery-single img {
        max-width: 100%;
        margin-top: 20px;
    }

    .gallery-overlay-text {
        right: 10px;
    }

    .overlay-text {
        font-size: 13px;
        max-width: 100px;
    }

    .language-modal-content {
        min-width: 260px;
        padding: 20px;
    }

    .language-list {
        gap: 12px;
    }

    .language-list li {
        padding-bottom: 12px;
    }

    .lang-option {
        font-size: 12px;
    }

    .lang-flag {
        width: 28px;
        height: 18px;
    }
}

/* ==================== SMALL MOBILE VIEW WELCOME SECTION (Below 480px) ==================== */
@media (max-width: 480px) {
    .welcome-section {
        padding: 40px 12px;
    }

    .welcome-container {
        gap: 30px;
    }

    .welcome-title {
        font-size: 26px;
    }

    .welcome-text {
        font-size: 12px;
        line-height: 1.6;
    }

    .welcome-label {
        font-size: 11px;
    }

    .welcome-read-more-btn {
        padding: 12px 32px;
        font-size: 13px;
    }

    .welcome-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        min-height: auto;
    }

    .overlay-text {
        font-size: 11px;
        right: 8px;
        max-width: 80px;
    }

    .language-modal-content {
        min-width: 240px;
        padding: 15px;
    }

    .language-list {
        gap: 10px;
    }

    .language-list li {
        padding-bottom: 10px;
    }

    .lang-option {
        font-size: 11px;
        gap: 8px;
    }

    .lang-flag {
        width: 24px;
        height: 16px;
    }
}

/* =======================
== OUR PRODUCTS SECTION ==
========================== */
.products-section {
    background-color: var(--blue-bg);
    padding: 80px 20px;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

.products-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--heading);
    text-transform: uppercase;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.other-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background-color: white;
    transition: all 0.3s ease;
}

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

.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--heading);
    padding: 18px 20px;
    text-align: center;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

/* ==================== TABLET VIEW PRODUCTS SECTION (768px - 1024px) ==================== */
@media (max-width: 1024px) {
    .products-section {
        padding: 60px 15px;
    }

    .products-title {
        font-size: 36px;
        margin-bottom: 45px;
    }

    .products-grid {
        gap: 30px;
    }

    .product-label {
        padding: 15px 15px;
    }

    .product-name {
        font-size: 16px;
    }
}

/* ==================== MOBILE VIEW PRODUCTS SECTION (Below 768px) ==================== */
@media (max-width: 768px) {
    .products-section {
        padding: 50px 15px;
    }

    .products-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-image-wrapper {
        aspect-ratio: 1;
    }

    .product-label {
        padding: 12px 12px;
    }

    .product-name {
        font-size: 14px;
    }
}

/* ==================== SMALL MOBILE VIEW PRODUCTS SECTION (Below 480px) ==================== */
@media (max-width: 480px) {
    .products-section {
        padding: 40px 12px;
    }

    .products-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image-wrapper {
        aspect-ratio: 3 / 4;
    }

    .product-label {
        padding: 12px 10px;
    }

    .product-name {
        font-size: 13px;
    }
}


/* ==============================
== INDUSTRIES WE SERVE SECTION ==
================================= */
.industries-section {
    background-color: var(--background-color);
    padding: 80px 20px;
}

.industries-container {
    max-width: 1400px;
    margin: 0 auto;
}

.industries-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--heading);
    text-transform: capitalize;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.industries-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--sub-heading);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 60px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    margin-bottom: 60px;
}

.industry-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

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

.industry-icon-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.industry-icon-wrapper img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon-wrapper svg {
    transform: scale(1.1);
}

.industry-name {
    font-size: 24px;
    font-weight: 500;
    color: var(--base-color);
    margin-bottom: 15px;
    text-transform: capitalize;
}

.industry-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    min-height: 80px;
}

.industries-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.download-pdf-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 50px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-pdf-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.download-pdf-btn span {
    font-size: 18px;
}

/* ==================== TABLET VIEW INDUSTRIES SECTION (768px - 1024px) ==================== */
@media (max-width: 1024px) {
    .industries-section {
        padding: 60px 15px;
    }

    .industries-title {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .industries-icon svg {
        width: 40px;
        height: 40px;
    }

    .industries-subtitle {
        font-size: 15px;
        margin-bottom: 45px;
    }

    .industries-grid {
        gap: 35px;
        margin-bottom: 50px;
    }

    .industry-name {
        font-size: 20px;
    }

    .industry-description {
        font-size: 14px;
        min-height: 70px;
    }

    .industry-icon-wrapper img {
        width: 45px;
        height: 45px;
    }


    .download-pdf-btn {
        padding: 14px 40px;
        font-size: 15px;
    }
}

/* ==================== MOBILE VIEW INDUSTRIES SECTION (Below 768px) ==================== */
@media (max-width: 768px) {
    .industries-section {
        padding: 50px 15px;
    }

    .industries-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .industries-icon svg {
        width: 35px;
        height: 35px;
    }

    .industries-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 40px;
    }

    .industry-name {
        font-size: 18px;
    }

    .industry-description {
        font-size: 13px;
        min-height: 60px;
    }

    .industry-icon-wrapper img {
        width: 35px;
        height: 35px;
    }


    .download-pdf-btn {
        padding: 12px 35px;
        font-size: 14px;
    }
}

/* ==================== SMALL MOBILE VIEW INDUSTRIES SECTION (Below 480px) ==================== */
@media (max-width: 480px) {
    .industries-section {
        padding: 40px 12px;
    }

    .industries-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .industries-icon svg {
        width: 30px;
        height: 30px;
    }

    .industries-subtitle {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .industry-name {
        font-size: 16px;
    }

    .industry-description {
        font-size: 12px;
        min-height: auto;
    }

    .industry-icon-wrapper svg {
        width: 50px;
        height: 50px;
    }

    .industry-icon-wrapper {
        margin-bottom: 20px;
    }

    .download-pdf-btn {
        padding: 12px 28px;
        font-size: 13px;
        flex-direction: column;
        gap: 5px;
    }

    .download-pdf-btn span {
        font-size: 14px;
    }
}

/* ====================================
== PACKAGING SOLUTION CENTER SECTION ==
======================================= */

.packaging-section {
    background-color: var(--blue-bg);
    padding: 80px 20px;
}

.packaging-container {
    max-width: 1400px;
    margin: auto;
}

.packaging-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading);
}

.packaging-icon {
    text-align: center;
    margin-bottom: 20px;
}

.packaging-subtitle {
    text-align: center;
    max-width: 800px;
    margin: auto;
    color: var(--sub-heading);
    line-height: 1.7;
    margin-bottom: 50px;
}

/* ================= SLIDER ================= */
.packaging-slider {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 5px;
    animation: scroll 40s linear infinite;
}

.packaging-slider:hover .slider-track {
    animation-play-state: paused;
}

.pack-slide {
    min-width: calc(100% / 3);
    border-radius: 12px;
    height: 400px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.pack-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover effect */
.pack-slide:hover {
    transform: translateY(-10px);
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-370%);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .pack-slide {
        min-width: calc(100% / 2);
    }

    .packaging-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .pack-slide {
        min-width: 100%;
    }

    .packaging-title {
        font-size: 26px;
    }
}

/* ==============================
==== STICKY LANGUAGE SELECTOR ===
================================= */
.language-selector-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(82, 199, 214, 0.3);
}

.language-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(82, 199, 214, 0.4);
}

.language-btn svg {
    transition: transform 0.3s ease;
}

.language-btn:hover svg {
    transform: rotate(180deg);
}

.lang-text {
    white-space: nowrap;
}

/* ==================== TABLET VIEW PACKAGING SECTION (768px - 1024px) ==================== */
@media (max-width: 1024px) {
    .packaging-section {
        padding: 60px 15px;
    }

    .packaging-title {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .packaging-icon svg {
        width: 40px;
        height: 40px;
    }

    .packaging-subtitle {
        font-size: 15px;
        margin-bottom: 45px;
    }

    .packaging-showcase {
        gap: 20px;
    }

    .language-btn {
        padding: 10px 14px;
        font-size: 13px;
    }

    .language-selector-sticky {
        bottom: 20px;
        right: 20px;
    }
}

/* ==================== MOBILE VIEW PACKAGING SECTION (Below 768px) ==================== */
@media (max-width: 768px) {
    .packaging-section {
        padding: 50px 15px;
    }

    .packaging-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .packaging-icon svg {
        width: 35px;
        height: 35px;
    }

    .packaging-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .packaging-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .language-btn {
        padding: 9px 12px;
        font-size: 12px;
    }

    .language-selector-sticky {
        bottom: 15px;
        right: 15px;
    }
}

/* ==================== SMALL MOBILE VIEW PACKAGING SECTION (Below 480px) ==================== */
@media (max-width: 480px) {
    .packaging-section {
        padding: 40px 12px;
    }

    .packaging-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .packaging-icon svg {
        width: 30px;
        height: 30px;
    }

    .packaging-subtitle {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .packaging-showcase {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .showcase-item {
        aspect-ratio: 2/3;
    }

    .language-btn {
        padding: 8px 10px;
        font-size: 11px;
        gap: 6px;
    }

    .language-btn svg {
        width: 16px;
        height: 16px;
    }

    .language-selector-sticky {
        bottom: 10px;
        right: 10px;
    }

    .lang-text {
        display: none;
    }
}

/* =============================
== CLIENT TESTIMONIALS SECTION =
================================ */
.ts-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.ts-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* BADGE */
.ts-badge {
    display: inline-block;
    background: #eeba5a;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

/* TITLE */
.ts-title {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--heading);
}

/* SUBTITLE */
.ts-subtitle {
    color: #666;
    margin-bottom: 40px;
}

/* WIDGET CONTAINER */
.ts-widget {
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ts-title {
        font-size: 28px;
    }
}

/* =========================
======= FAQ SECTION =====
============================ */

/* ==================== HEADER ==================== */
.faq-header {
    background-color: var(--background-color);
    padding: 60px 20px;
    border-bottom: 1px solid #e5e5e5;
}
.faq-header-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.faq-page-title {
    font-size: 42px;
    font-weight: 700;
    /* margin-bottom: 100px; */
    color: var(--heading);
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 60px 20px;
    background-color: var(--background-color);
}
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}
.faq-list {
    list-style: none;
}
.faq-item {
    border-bottom: 2px solid #e5e5e5;
    padding: 30px 0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question-btn {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}
.faq-question-btn:hover {
    color: var(--secondary-color);
}
.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: inherit;
    flex: 1;
}
.faq-question-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}
.faq-item.faq-active .faq-question-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-top: 0;
}
.faq-item.faq-active .faq-answer {
    max-height: 500px;
    padding-top: 20px;
}
.faq-answer-text {
    font-size: 15px;
    color: var(--sub-heading);
    line-height: 1.8;
}

/* ==================== TABLET VIEW (768px - 1024px) ==================== */
@media (max-width: 1024px) {
    .faq-header {
        padding: 50px 15px;
    }
    .faq-page-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .faq-page-description {
        font-size: 15px;
    }
    .faq-section {
        padding: 50px 15px;
    }
    .faq-question-text {
        font-size: 16px;
    }
    .faq-answer-text {
        font-size: 14px;
    }
    .faq-item {
        padding: 25px 0;
    }
}

/* ==================== MOBILE VIEW (480px - 768px) ==================== */
@media (max-width: 768px) {
    .faq-header {
        padding: 40px 15px;
    }
    .faq-page-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    .faq-page-description {
        font-size: 14px;
    }
    .faq-section {
        padding: 40px 15px;
    }
    .faq-container {
        padding: 0 10px;
    }
    .faq-question-text {
        font-size: 15px;
    }
    .faq-answer-text {
        font-size: 13px;
    }
    .faq-item {
        padding: 20px 0;
    }
    .faq-question-btn {
        gap: 15px;
    }
    .faq-scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    .faq-lang-selector-sticky {
        bottom: 20px;
        left: 20px;
    }
    .faq-lang-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ==================== SMALL MOBILE VIEW (Below 480px) ==================== */
@media (max-width: 480px) {
    .faq-header {
        padding: 30px 12px;
    }
    .faq-page-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .faq-page-description {
        font-size: 13px;
        line-height: 1.6;
    }
    .faq-section {
        padding: 30px 12px;
    }
    .faq-container {
        padding: 0;
    }
    .faq-question-text {
        font-size: 14px;
    }
    .faq-answer-text {
        font-size: 12px;
    }
    .faq-item {
        padding: 18px 0;
    }
    .faq-question-btn {
        gap: 12px;
    }
    .faq-question-icon {
        width: 20px;
        height: 20px;
    }
    .faq-item.faq-active .faq-answer {
        max-height: 600px;
    }
}

/* =========================
======= FOOTER SECTION =====
============================ */
.footer-section {
    background-color: #1a2d3a;
    color: #ccc;
    padding: 80px 20px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0px;
}

.footer-logo-img {
    width: 300px;
    height: 80px;
    object-fit: contain;
}

.footer-brand-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.footer-description {
    font-size: 13px;
    line-height: 1.8;
    color: #999;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: #243c4a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0 0 20px 0;
    text-transform: capitalize;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.gallery-thumb {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 4px;
    object-fit: cover;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-thumb:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(82, 199, 214, 0.3);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 13px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.contact-text {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.contact-text a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.footer-copyright a {
    color: #52C7D6;
    text-decoration: none;
    font-weight: 500;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.heart {
    color: #E67E22;
}

/* ==================== TABLET VIEW FOOTER (768px - 1024px) ==================== */
@media (max-width: 1024px) {
    .footer-section {
        padding: 60px 15px 25px;
    }

    .footer-grid {
        gap: 35px;
        margin-bottom: 40px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-description {
        font-size: 12px;
    }

    .footer-social {
        gap: 10px;
    }

    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .footer-gallery {
        gap: 6px;
    }

    .contact-item {
        gap: 4px;
    }
}

/* ==================== MOBILE VIEW FOOTER (Below 768px) ==================== */
@media (max-width: 768px) {
    .footer-section {
        padding: 50px 15px 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer-description {
        font-size: 12px;
        line-height: 1.6;
    }

    .footer-social {
        margin-top: 12px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-links li a {
        font-size: 12px;
    }

    .footer-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .footer-brand-text {
        font-size: 18px;
    }

    .contact-label {
        font-size: 12px;
    }

    .contact-text {
        font-size: 12px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}

/* ==================== SMALL MOBILE VIEW FOOTER (Below 480px) ==================== */
@media (max-width: 480px) {
    .footer-section {
        padding: 40px 12px 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-logo svg {
        width: 35px;
        height: 35px;
    }

    .footer-brand-text {
        font-size: 16px;
    }

    .footer-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-description {
        font-size: 11px;
        line-height: 1.5;
    }

    .footer-social {
        justify-content: flex-start;
        gap: 8px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

    .footer-links {
        gap: 8px;
    }

    .footer-links li a {
        font-size: 11px;
    }

    .footer-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
    }

    .gallery-thumb {
        border-radius: 2px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-copyright {
        font-size: 11px;
    }

    .contact-item {
        gap: 3px;
    }

    .contact-label {
        font-size: 11px;
    }

    .contact-text {
        font-size: 11px;
    }
}


/* ================================
======= ABOUT US PAGE SECTION =====
=================================== */

/* ==================== HERO BANNER ==================== */
    .about-us-hero-banner {
        height: 400px;
        background: linear-gradient(rgba(26, 45, 58, 0.5), rgba(26, 45, 58, 0.5)), 
                    url('images/industry.jpg') center/cover;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .about-us-hero-title {
        font-size: 56px;
        font-weight: 700;
        color: var(--primary-color);
        text-align: center;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    /* ==================== MAIN CONTENT SECTION ==================== */
    .about-us-main-section {
        padding: 80px 20px;
        background-color: var(--background-color);
    }
    .about-us-main-container {
        max-width: 1400px;
        margin: 0 auto;
    }
    .about-us-content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    .about-us-content-left {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .about-us-badge {
        display: inline-block;
        color: var(--secondary-color);
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        width: fit-content;
    }
    .about-us-main-heading {
        font-size: 42px;
        font-weight: 700;
        color: var(--heading);
        line-height: 1.3;
    }
    .about-us-description-text {
        font-size: 15px;
        color: var(--sub-heading);
        line-height: 1.8;
    }
    .about-us-description-para {
        font-size: 15px;
        color: var(--sub-heading);
        line-height: 1.8;
        margin-top: 20px;
    }
    .about-us-values-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-top: 20px;
    }
    .about-us-value-item {
        display: flex;
        gap: 15px;
    }
    .about-us-value-icon {
        color: var(--secondary-color);
        font-size: 24px;
        flex-shrink: 0;
        margin-top: 2px;
    }
    .about-us-value-content h4 {
        font-size: 16px;
        font-weight: 700;
        color: var(--base-color);
        margin-bottom: 8px;
    }
    .about-us-value-content p {
        font-size: 13px;
        color: var(--sub-heading);
        line-height: 1.7;
    }
    .about-us-content-right {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .about-us-image-container {
        width: 100%;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }
    .about-us-image-container img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }
    .about-us-image-container:hover img {
        transform: scale(1.05);
    }

    /* ==================== TABLET VIEW (768px - 1024px) ==================== */
        @media (max-width: 1024px) {
            .about-us-main-section {
                padding: 60px 15px;
            }

            .about-us-content-wrapper {
                gap: 40px;
            }

            .about-us-main-heading {
                font-size: 36px;
            }

            .about-us-description-text {
                font-size: 14px;
            }

            .about-us-values-grid {
                gap: 20px;
            }

            .about-us-hero-title {
                font-size: 48px;
            }

            .about-us-hero-banner {
                height: 300px;
            }

            .about-us-nav {
                gap: 20px;
            }
        }

        /* ==================== MOBILE VIEW (480px - 768px) ==================== */
        @media (max-width: 768px) {
            .about-us-header-container {
                flex-direction: column;
                gap: 15px;
            }

            .about-us-menu-toggle {
                display: block;
            }

            .about-us-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 12px;
            }

            .about-us-nav.active {
                display: flex;
            }

            .about-us-main-section {
                padding: 50px 15px;
            }

            .about-us-content-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-us-main-heading {
                font-size: 28px;
            }

            .about-us-description-text {
                font-size: 13px;
            }

            .about-us-values-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .about-us-hero-title {
                font-size: 36px;
            }

            .about-us-hero-banner {
                height: 250px;
            }

            .about-us-lang-selector-sticky {
                bottom: 20px;
                right: 20px;
            }

            .about-us-lang-btn-sticky {
                padding: 10px 12px;
                font-size: 12px;
            }

            .about-us-lang-text {
                display: none;
            }

            .about-us-language-modal-content {
                min-width: auto;
                width: 90%;
                padding: 30px 20px;
            }

            .about-us-language-list {
                grid-template-columns: 1fr;
            }
        }

        /* ==================== SMALL MOBILE VIEW (Below 480px) ==================== */
        @media (max-width: 480px) {
            .about-us-main-section {
                padding: 40px 12px;
            }

            .about-us-hero-title {
                font-size: 28px;
            }

            .about-us-hero-banner {
                height: 200px;
            }

            .about-us-main-heading {
                font-size: 24px;
            }

            .about-us-description-text {
                font-size: 12px;
            }

            .about-us-value-content h4 {
                font-size: 14px;
            }

            .about-us-value-content p {
                font-size: 12px;
            }

            .about-us-badge {
                font-size: 12px;
            }

            .about-us-lang-selector-sticky {
                bottom: 15px;
                right: 15px;
            }

            .about-us-lang-btn-sticky {
                padding: 9px 10px;
                font-size: 11px;
            }

            .about-us-lang-btn-sticky svg {
                width: 16px;
                height: 16px;
            }

            .about-us-logo {
                font-size: 18px;
            }

            .about-us-values-grid {
                gap: 15px;
            }

            .about-us-content-wrapper {
                gap: 30px;
            }

            .about-us-language-modal-content {
                padding: 25px 15px;
            }

            .about-us-language-modal-title {
                font-size: 18px;
                margin-bottom: 20px;
            }
        }

    
        /* ==================== TEAM MEMBERS SECTION ==================== */
        .team-section {
            padding: 80px 20px;
            background-color: var(--blue-bg);
        }

        .team-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .team-title {
            font-size: 48px;
            font-weight: 700;
            color: var(--heading);
            text-align: center;
            margin-bottom: 60px;
            letter-spacing: -1px;
        }

        .team-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .team-card {
            width: 300px;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            aspect-ratio: 3/4;
        }

        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
        }

        .team-card-image {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

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

        .team-card:hover .team-member-img {
            transform: scale(1.05);
        }

        .team-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px 25px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
            color: white;
            display: flex;
            flex-direction: column;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .team-member-name {
            font-size: 22px;
            font-weight: 700;
            color: var(--secondary-color);
            margin: 0;
            line-height: 1.3;
        }

        .team-member-title {
            font-size: 14px;
            color: var(--background-color);
            margin: 0;
            font-weight: 500;
        }

        /* ==================== TABLET VIEW TEAM (768px - 1024px) ==================== */
        @media (max-width: 1024px) {
            .team-section {
                padding: 60px 15px;
            }

            .team-title {
                font-size: 40px;
                margin-bottom: 45px;
            }

            .team-grid {
                gap: 30px;
            }

            .team-card {
                width: 220px;
            }

            .team-member-name {
                font-size: 20px;
            }

            .team-member-title {
                font-size: 13px;
            }

            .team-card-overlay {
                padding: 25px 20px;
            }
        }

        /* ==================== MOBILE VIEW TEAM (480px - 768px) ==================== */
        @media (max-width: 768px) {
            .team-section {
                padding: 50px 15px;
            }

            .team-title {
                font-size: 32px;
                margin-bottom: 40px;
            }

            .team-grid {
                flex-direction: column;
                align-items: center;
                gap: 25px;
            }

            .team-card {
                width: 80%;
                max-width: 260px;
            }

            .team-member-name {
                font-size: 18px;
            }

            .team-member-title {
                font-size: 12px;
            }

            .team-card-overlay {
                padding: 20px 15px;
            }
        }

        /* ==================== SMALL MOBILE VIEW TEAM (Below 480px) ==================== */
        @media (max-width: 480px) {
            .team-section {
                padding: 40px 12px;
            }

            .team-title {
                font-size: 26px;
                margin-bottom: 30px;
            }

            .team-grid {
                gap: 20px;
            }

            .team-card {
                aspect-ratio: 3/4;
            }

            .team-member-name {
                font-size: 16px;
            }

            .team-member-title {
                font-size: 11px;
            }

            .team-card-overlay {
                padding: 18px 12px;
                gap: 6px;
            }
        }

/* ================================
========= EVENT PAGE SECTION ======
=================================== */

/* ==================== MAIN CONTENT ==================== */
        .events-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 40px;
        }

        .events-list {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .events-item {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .events-item-header {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .events-item-title {
            font-size: 22px;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.4;
        }

        .events-item-description {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
        }

        .events-item-location-date {
            font-size: 14px;
            color: #999;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .events-location-badge,
        .events-date-badge {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .events-location-badge::before {
            content: "📍";
            font-size: 16px;
        }

        .events-date-badge::before {
            content: "📅";
            font-size: 16px;
        }

        /* ==================== EVENT GALLERY ==================== */
        .events-gallery {
            display: grid;
            gap: 20px;
        }

        .events-gallery-2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .events-gallery-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .events-gallery-image {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            aspect-ratio: 4/3;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .events-gallery-image:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

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

        .events-gallery-image:hover img {
            transform: scale(1.1);
        }

        /* ==================== MODAL FOR IMAGE ZOOM ==================== */
        .events-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .events-modal.active {
            display: flex;
        }

        .events-modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            border-radius: 8px;
            overflow: hidden;
        }

        .events-modal-image {
            max-width: 100%;
            max-height: 85vh;
            display: block;
            object-fit: contain;
        }

        .events-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            font-size: 32px;
            cursor: pointer;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .events-modal-close:hover {
            background-color: rgba(255, 255, 255, 0.4);
        }

        /* ==================== TABLET VIEW (768px - 1024px) ==================== */
        @media (max-width: 1024px) {
            .events-header {
                padding: 15px 30px;
            }

            .events-container {
                padding: 50px 30px;
            }

            .events-title-section {
                padding: 50px 30px;
            }

            .events-page-title {
                font-size: 42px;
            }

            .events-list {
                gap: 50px;
            }

            .events-item {
                gap: 25px;
            }

            .events-item-title {
                font-size: 20px;
            }

            .events-item-description {
                font-size: 14px;
            }

            .events-gallery-2,
            .events-gallery-3 {
                grid-template-columns: repeat(2, 1fr);
            }

            .events-gallery-2:only-child,
            .events-gallery-3:nth-child(1) {
                grid-template-columns: repeat(2, 1fr);
            }

            .events-lang-selector-sticky {
                bottom: 20px;
                right: 20px;
            }

            .events-lang-btn {
                padding: 10px 16px;
                font-size: 13px;
            }
        }

        /* ==================== MOBILE VIEW (480px - 768px) ==================== */
        @media (max-width: 768px) {
            .events-header {
                padding: 12px 20px;
            }

            .events-nav {
                display: none;
            }

            .events-hamburger {
                display: flex;
            }

            .events-container {
                padding: 40px 20px;
            }

            .events-title-section {
                padding: 40px 20px;
            }

            .events-page-title {
                font-size: 32px;
                margin-bottom: 8px;
            }

            .events-list {
                gap: 40px;
            }

            .events-item {
                gap: 20px;
            }

            .events-item-title {
                font-size: 18px;
            }

            .events-item-description {
                font-size: 13px;
            }

            .events-item-location-date {
                font-size: 12px;
                gap: 15px;
            }

            .events-gallery-2,
            .events-gallery-3 {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .events-gallery-image {
                aspect-ratio: 16/9;
            }

            .events-lang-selector-sticky {
                bottom: 15px;
                right: 15px;
            }

            .events-lang-btn {
                padding: 8px 14px;
                font-size: 12px;
            }

            .events-lang-modal-content {
                padding: 30px;
                max-width: 90%;
            }

            .events-lang-modal-title {
                font-size: 20px;
                margin-bottom: 20px;
            }
        }

        /* ==================== SMALL MOBILE VIEW (Below 480px) ==================== */
        @media (max-width: 480px) {
            .events-header {
                padding: 10px 15px;
            }

            .events-logo {
                font-size: 18px;
            }

            .events-container {
                padding: 30px 15px;
            }

            .events-title-section {
                padding: 30px 15px;
                border-bottom: 1px solid #f0f0f0;
            }

            .events-page-title {
                font-size: 26px;
                margin-bottom: 5px;
            }

            .events-list {
                gap: 35px;
            }

            .events-item {
                gap: 18px;
            }

            .events-item-title {
                font-size: 16px;
                line-height: 1.3;
            }

            .events-item-description {
                font-size: 12px;
                line-height: 1.6;
            }

            .events-item-location-date {
                font-size: 11px;
                gap: 10px;
                flex-wrap: wrap;
            }

            .events-gallery-2,
            .events-gallery-3 {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .events-gallery-image {
                aspect-ratio: 16/9;
                border-radius: 6px;
            }

            .events-lang-selector-sticky {
                bottom: 10px;
                right: 10px;
            }

            .events-lang-btn {
                width: 44px;
                height: 44px;
                padding: 0;
                font-size: 20px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .events-lang-modal-content {
                padding: 25px 20px;
                max-width: 95%;
            }

            .events-lang-modal-title {
                font-size: 18px;
                margin-bottom: 18px;
            }

            .events-lang-list {
                gap: 10px;
            }

            .events-lang-item button {
                padding: 10px 14px;
                font-size: 12px;
            }
        }

/* ================================
========= CONTACT PAGE SECTION ======
=================================== */


        .contact-hero-section {
            text-align: center;
            padding: 60px 20px 40px;
            background-color: var(--background-color);
            border-bottom: 1px solid #eee;
        }

        .contact-label-1 {
            display: inline-block;
            color: var(--secondary-color);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .contact-main-title {
            font-size: 48px;
            font-weight: 700;
            color: var(--heading);
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .contact-subtitle {
            font-size: 16px;
            color: var(--sub-heading);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* ==================== CONTACT CONTENT ==================== */
        .contact-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        /* ==================== CONTACT FORM ==================== */
        .contact-form-wrapper {
            background-color: var(--blue-bg);
            padding: 40px;
            border-radius: 8px;
        }

        .contact-form-group {
            margin-bottom: 25px;
        }

        .contact-form-group-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 25px;
        }

        .contact-form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--heading);
            margin-bottom: 8px;
        }

        .contact-form-input,
        .contact-form-textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            font-family: inherit;
            transition: all 0.3s ease;
            background-color: var(--background-color);
        }

        .contact-form-input:focus,
        .contact-form-textarea:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
        }

        .contact-form-textarea {
            resize: vertical;
            min-height: 150px;
            grid-column: 1 / -1;
        }

        .contact-submit-btn {
            background-color: var(--secondary-color);
            color: white;
            padding: 14px 40px;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 1px;
        }

        .contact-submit-btn:hover {
            background-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
        }

        .contact-submit-btn:disabled {
            background-color: var(--background-color);
            cursor: not-allowed;
            transform: none;
        }

        .contact-form-message {
            margin-top: 15px;
            padding: 12px 15px;
            border-radius: 4px;
            display: none;
        }

        .contact-form-message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            display: block;
        }

        .contact-form-message.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
            display: block;
        }

        /* ==================== CONTACT INFO ==================== */
        .contact-info-wrapper {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-info-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .contact-info-icon {
            width: 50px;
            height: 50px;
            background-color: var(--blue-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--secondary-color);
            flex-shrink: 0;
        }

        .contact-info-content h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--heading);
            margin-bottom: 8px;
        }

        .contact-info-content p {
            font-size: 14px;
            color: var(--sub-heading);
            margin: 0;
        }

        .contact-info-content a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info-content a:hover {
            color: var(--primary-color);
        }

        /* ==================== MAP SECTION ==================== */
        .contact-map-section {
            padding: 60px 20px;
            background-color: #f9f9f9;
        }

        .contact-map-container {
            max-width: 1400px;
            margin: 0 auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            height: 500px;
        }

        .contact-map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ==================== TABLET VIEW (768px - 1024px) ==================== */
        @media (max-width: 1024px) {
            .contact-header {
                padding: 12px 20px;
            }

            .contact-nav {
                gap: 20px;
            }

            .contact-hero-section {
                padding: 50px 15px 30px;
            }

            .contact-main-title {
                font-size: 40px;
            }

            .contact-subtitle {
                font-size: 15px;
            }

            .contact-content {
                gap: 40px;
                padding: 50px 15px;
            }

            .contact-form-wrapper {
                padding: 30px;
            }

            .contact-map-container {
                height: 400px;
            }

            .contact-map-section {
                padding: 50px 15px;
            }
        }

        /* ==================== MOBILE VIEW (480px - 768px) ==================== */
        @media (max-width: 768px) {
            .contact-header {
                padding: 12px 15px;
            }

            .contact-nav {
                display: none;
            }

            .contact-hamburger {
                display: flex;
            }

            .contact-hero-section {
                padding: 40px 15px 25px;
            }

            .contact-main-title {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .contact-subtitle {
                font-size: 14px;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 40px 15px;
            }

            .contact-form-wrapper {
                padding: 25px;
            }

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

            .contact-info-wrapper {
                gap: 25px;
            }

            .contact-map-container {
                height: 300px;
            }

            .contact-map-section {
                padding: 40px 15px;
            }

            .contact-lang-selector-sticky {
                bottom: 20px;
                right: 20px;
            }

            .contact-lang-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }

        /* ==================== SMALL MOBILE VIEW (Below 480px) ==================== */
        @media (max-width: 480px) {
            .contact-header {
                padding: 10px 12px;
            }

            .contact-logo {
                font-size: 20px;
            }

            .contact-hero-section {
                padding: 30px 12px 20px;
            }

            .contact-label-1 {
                font-size: 11px;
            }

            .contact-main-title {
                font-size: 24px;
            }

            .contact-subtitle {
                font-size: 13px;
            }

            .contact-content {
                padding: 30px 12px;
                gap: 25px;
            }

            .contact-form-wrapper {
                padding: 20px;
            }

            .contact-form-group {
                margin-bottom: 20px;
            }

            .contact-form-input,
            .contact-form-textarea {
                padding: 10px 12px;
                font-size: 13px;
            }

            .contact-form-textarea {
                min-height: 120px;
            }

            .contact-submit-btn {
                padding: 12px 30px;
                font-size: 12px;
            }

            .contact-info-icon {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }

            .contact-info-content h3 {
                font-size: 15px;
            }

            .contact-info-content p {
                font-size: 13px;
            }

            .contact-map-container {
                height: 250px;
            }

            .contact-map-section {
                padding: 30px 12px;
            }

            .contact-lang-selector-sticky {
                bottom: 15px;
                right: 15px;
            }

            .contact-lang-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .contact-modal-content {
                padding: 30px;
            }

            .contact-modal-title {
                font-size: 20px;
            }
        }



/* ================================
========= PRODUCTS PAGE SECTION ===
=================================== */

/* ==================== MAIN CONTENT ==================== */

        .product-content-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Product Description Section */
        .product-description-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 50px;
            margin-bottom: 80px;
            align-items: center;
        }

        .product-description-text {
            text-align: justify;
        }

        .product-description-text p {
            margin-bottom: 20px;
            color: var(--black-text);
            line-height: 1.8;
        }

        .product-description-image {
            text-align: center;
        }

        .product-description-image img {
            max-width: 100%;
            height: 400px;
            border-radius: 10px;
        }

        /* ==================== ACCORDION SECTIONS ==================== */
        .product-accordion-section {
            margin-bottom: 40px;
        }

        .product-accordion-header {
            background-color: var(--blue-bg);
            border: 1px solid #ddd;
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-weight: 400;
            color: var(--black-text);
        }

        .product-accordion-header:hover {
            background-color: var(--background-color);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .product-accordion-header.active {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        .product-accordion-toggle {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .product-accordion-header.active .product-accordion-toggle {
            transform: rotate(180deg);
        }

        .product-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: var(--background-color);
            border: 1px solid #ddd;
            border-top: none;
        }

        .product-accordion-content.active {
            max-height: 1000px;
        }

        .product-accordion-body {
            padding: 25px;
        }

        .product-advantages-list {
            list-style: none;
            padding: 0;
        }

        .product-advantages-list li {
            padding: 12px 0;
            padding-left: 25px;
            position: relative;
            color: var(--sub-heading);
        }

        .product-advantages-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 18px;
        }

        /* ==================== SPECIFICATIONS SECTION ==================== */
        .product-specs-section {
            margin-bottom: 80px;
        }

        .product-specs-title {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 40px;
            text-align: center;
        }

        .product-specs-tables {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .product-spec-table-wrapper {
            background-color: var(--blue-bg);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .product-spec-table-header {
            padding: 25px;
            color: var(--background-color);
            font-size: 18px;
            font-weight: 700;
            text-align: center;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .product-spec-table-header.class1 {
            background-color: var(--primary-color);
        }

        .product-spec-table-header:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        .product-spec-table-toggle {
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .product-spec-table-header.active .product-spec-table-toggle {
            transform: rotate(180deg);
        }

        .product-spec-table-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .product-spec-table-content.active {
            max-height: 1000px;
        }

        .product-data-table {
            width: 100%;
            border-collapse: collapse;
            padding: 20px;
        }

        .product-data-table thead {
            background-color: var(--background-color);
        }

        .product-data-table th {
            padding: 15px;
            text-align: left;
            font-weight: 600;
            color: var(--black-text);
            border-bottom: 2px solid #ddd;
        }

        .product-data-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }

        .product-data-table tbody tr:hover {
            background-color: #f9f9f9;
        }

        /* ==================== MODAL ==================== */
        .product-modal {
            display: none;
            position: fixed;
            z-index: 200;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            animation: fadeIn 0.3s ease;
        }

        .product-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-modal-content {
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            max-width: 900px;
            width: 95%;
            max-height: 90vh;
            overflow-y: auto;
            animation: slideUp 0.3s ease;
            position: relative;
        }

        .product-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #999;
            transition: color 0.3s;
        }

        .product-modal-close:hover {
            color: #333;
        }

        .product-modal-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #1a1a1a;
        }

        .product-modal-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .product-modal-table-wrapper {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .product-modal-table {
            min-width: 700px;
        }

        .product-modal-table th {
            background-color: #f5f5f5;
            padding: 15px;
            text-align: left;
            font-weight: 600;
            border: 1px solid #ddd;
        }

        .product-modal-table td {
            padding: 15px;
            border: 1px solid #ddd;
        }

        .product-modal-table tbody tr:hover {
            background-color: #f9f9f9;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        

        /* ==================== TABLET VIEW (768px - 1024px) ==================== */
        @media (max-width: 1024px) {
            .product-description-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .product-specs-tables {
                grid-template-columns: 1fr;
            }

            .product-hero-title {
                font-size: 28px;
            }

            .product-modal-content {
                padding: 30px;
            }
        }

        /* ==================== MOBILE VIEW (480px - 768px) ==================== */
        @media (max-width: 768px) {
            .product-mobile-menu-btn {
                display: block;
            }

            .product-nav-links {
                display: none;
            }

            .product-hero {
                padding: 30px 15px;
                margin-bottom: 40px;
            }

            .product-hero-title {
                font-size: 24px;
            }

            .product-hero-subtitle {
                font-size: 16px;
            }

            .product-content-wrapper {
                padding: 0 15px;
            }

            .product-description-section {
                gap: 30px;
                margin-bottom: 50px;
            }

            .product-description-text p {
                font-size: 14px;
                margin-bottom: 15px;
            }

            .product-accordion-header {
                padding: 15px 20px;
                font-size: 16px;
            }

            .product-accordion-body {
                padding: 15px 20px;
            }

            .product-specs-title {
                font-size: 22px;
                margin-bottom: 30px;
            }

            .product-modal-content {
                padding: 25px;
                width: 90%;
            }

            .product-modal-title {
                font-size: 22px;
                margin-bottom: 20px;
            }
        }

        /* ==================== SMALL MOBILE VIEW (Below 480px) ==================== */
        @media (max-width: 480px) {
            .product-header-container {
                flex-direction: column;
                gap: 15px;
            }

            .product-logo {
                font-size: 20px;
            }

            .product-hero {
                padding: 25px 12px;
                margin-bottom: 30px;
            }

            .product-hero-title {
                font-size: 20px;
            }

            .product-hero-subtitle {
                font-size: 14px;
            }

            .product-content-wrapper {
                padding: 0 12px;
            }

            .product-description-section {
                gap: 20px;
                margin-bottom: 40px;
            }

            .product-description-text p {
                font-size: 13px;
                margin-bottom: 12px;
                line-height: 1.6;
            }

            .product-accordion-header {
                padding: 12px 15px;
                font-size: 15px;
            }

            .product-accordion-body {
                padding: 12px 15px;
            }

            .product-advantages-list li {
                padding: 10px 0;
                padding-left: 20px;
                font-size: 13px;
            }

            .product-specs-title {
                font-size: 20px;
                margin-bottom: 20px;
            }

            .product-data-table th,
            .product-data-table td {
                padding: 10px;
                font-size: 12px;
            }

            .product-spec-table-header {
                padding: 15px;
                font-size: 16px;
            }

            .product-modal-content {
                padding: 20px;
                width: 95%;
                margin: 20px;
            }

            .product-modal-title {
                font-size: 20px;
            }

            .product-modal-table th,
            .product-modal-table td {
                padding: 10px;
                font-size: 12px;
            }

        }


/* ===================================
========= SUBLIMATION PAGE SECTION ===
====================================== */

        /* Selection */
        /* ::selection {
            background-color: #d9e2ff;
            color: var(--on-primary-fixed);
        } */

        /* Material Icons */
        /* .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        } */

        /* Main Content */
        /* .sub-page-main {
            padding-top: 80px;
        } */

        /* Hero Section */
        .sub-page-hero {
            position: relative;
            min-height: 700px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .sub-page-hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .sub-page-hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .sub-page-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(0, 53, 127, 0.9), rgba(0, 53, 127, 0.4));
        }

        .sub-page-hero-content {
            position: relative;
            z-index: 10;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
            width: 100%;
        }

        .sub-page-hero-text {
            max-width: 896px;
            /* color: var(--primary-color); */
        }

        .sub-page-hero-badge {
            display: inline-block;
            color: var(--secondary-color);
            padding: 6px 16px;
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 9999px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.1em;
            margin-bottom: 24px;
        }

        .sub-page-hero-title {
            font-size: 48px;
            font-weight: 600;
            color: var(--primary-color);
            letter-spacing: -0.02em;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        @media (min-width: 768px) {
            .sub-page-hero-title {
                font-size: 84px;
            }
        }

        .sub-page-hero-subtitle {
            font-size: 20px;
            line-height: 1.5;
            color: var(--background-color);
            margin-bottom: 40px;
            font-weight: 300;
        }

        @media (min-width: 768px) {
            .sub-page-hero-subtitle {
                font-size: 32px;
            }
        }

        .sub-page-hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .sub-page-btn {
            padding: 16px 32px;
            font-weight: bold;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .sub-page-btn-primary {
            background-color: var(--surface-container-lowest);
            color: var(--secondary-color);
        }

        .sub-page-btn-primary:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .sub-page-btn-secondary {
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--secondary-color);
        }

        .sub-page-btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        /* Product Overview Section */
        .sub-page-section {
            padding: 96px 32px;
        }

        .sub-page-section-max-width {
            max-width: 1280px;
            margin: 0 auto;
        }

        .sub-page-overview-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 64px;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .sub-page-overview-grid {
                grid-template-columns: 7fr 5fr;
            }
        }

        .sub-page-overview-text {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sub-page-section-title {
            font-size: 36px;
            font-family: var(--font-headline);
            font-weight: 700;
            color: var(--heading);
            letter-spacing: -0.02em;
        }

        @media (min-width: 768px) {
            .sub-page-section-title {
                font-size: 48px;
            }
        }

        .sub-page-overview-quote {
            font-size: 18px;
            line-height: 1.6;
            color: var(--secondary-color);
            font-style: italic;
            border-left: 4px solid var(--primary-container);
            padding-left: 24px;
        }

        .sub-page-overview-description {
            font-size: 18px;
            line-height: 1.6;
            color: var(--sub-heading);
        }

        .sub-page-overview-image {
            position: relative;
            aspect-ratio: 1;
            background-color: var(--surface-container-high);
            border-radius: 12px;
            overflow: hidden;
        }

        .sub-page-overview-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* filter: grayscale(100%); */
            transition: filter 0.7s ease;
        }

        /* .sub-page-overview-image:hover img {
            filter: grayscale(0%);
        } */

        /* .sub-page-overview-image::after {
            content: '';
            position: absolute;
            inset: 0;
            box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
        } */

        /* Features Section */
        .sub-page-features-section {
            background-color: var(--blue-bg);
        }

        .sub-page-section-center-title {
            text-align: center;
            margin-bottom: 80px;
        }

        .sub-page-section-divider {
            height: 6px;
            width: 96px;
            background-color: var(--secondary-color);
            margin: 16px auto 0;
        }

        .sub-page-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
        }

        @media (min-width: 640px) {
            .sub-page-features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .sub-page-features-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        .sub-page-feature-card {
            background-color: var(--background-color);
            padding: 32px;
            border-radius: 12px;
            border: 1px solid transparent;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .sub-page-feature-card:hover {
            transform: translateY(-8px);
            border-color: rgba(195, 198, 213, 0.3);
        }

        .sub-page-feature-icon {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 24px;
        }

        .sub-page-feature-title {
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--heading);
        }

        .sub-page-feature-description {
            font-size: 14px;
            color: var(--sub-heading);
            line-height: 1.5;
        }

        /* Technical Specifications Section */
        .sub-page-specs-section {
            background-color: var(--background-color);
        }

        .sub-page-specs-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 64px;
        }

        @media (min-width: 1024px) {
            .sub-page-specs-grid {
                grid-template-columns: 2fr 3fr;
            }
        }

        .sub-page-specs-info {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sub-page-quality-box {
            padding: 24px;
            background-color: var(--blue-bg);
            border-radius: 12px;
        }

        .sub-page-quality-box-header {
            display: flex;
            gap: 12px;
            align-items: center;
            color: var(--secondary-color);
            margin-bottom: 16px;
        }

        .sub-page-quality-box-header .material-symbols-outlined {
            font-size: 20px;
        }

        .sub-page-quality-box-title {
            font-weight: 700;
        }

        .sub-page-quality-box-description {
            font-size: 14px;
            color: var(--sub-heading);
        }

        .sub-page-specs-table {
            overflow-x: auto;
            border-radius: 12px;
            border: 1px solid rgba(195, 198, 213, 0.3);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 16px;
        }

        thead {
            background-color: var(--heading);
            color: var(--background-color);
        }

        th {
            padding: 20px;
            font-weight: 700;
            text-align: left;
        }

        tbody tr {
            border-top: 1px solid rgba(195, 198, 213, 0.2);
        }

        tbody tr:nth-child(even) {
            background-color: var(--blue-bg);
        }

        td {
            padding: 20px;
        }

        td:first-child {
            font-weight: 600;
            color: var(--heading);
        }

        /* Applications Section */
        .sub-page-applications-section {
            background-color: var(--blue-bg);
        }

        .sub-page-applications-title {
            text-align: center;
            margin-bottom: 64px;
        }

        .sub-page-applications-description {
            color: var(--sub-heading);
            max-width: 448px;
            margin: 0 auto;
        }

        .sub-page-app-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }

        @media (min-width: 768px) {
            .sub-page-app-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 768px) {
            .sub-page-app-grid-2 {
                grid-template-columns: repeat(4, 1fr);
            }
        }


        .sub-page-app-card {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            height: 400px;
            cursor: pointer;
        }

        .sub-page-app-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .sub-page-app-card:hover img {
            transform: scale(1.1);
        }

        .sub-page-app-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 53, 127, 0.9), rgba(0, 53, 127, 0.2), transparent);
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .sub-page-app-title {
            color: var(--background-color);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .sub-page-app-description {
            color: var(--background-color);
            font-size: 14px;
        }

        .sub-page-app-list-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        @media (min-width: 768px) {
            .sub-page-app-list-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .sub-page-app-list-item {
            background-color: var(--background-color);
            padding: 32px;
            border-radius: 12px;
            display: flex;
            gap: 24px;
            align-items: flex-start;
        }

        .sub-page-app-list-icon {
            width: 80px;
            height: 80px;
            background-color: var(--blue-bg);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .sub-page-app-list-icon .material-symbols-outlined {
            font-size: 32px;
            color: var(--primary-color);
        }

        .sub-page-app-list-content h4 {
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 8px;
            color: var(--heading);
        }

        .sub-page-app-list-content p {
            color: var(--sub-heading);
            font-size: 14px;
        }

        /* Why Choose Us Section */
        .sub-page-why-us-section {
            background-color: var(--background-color);
        }

        .sub-page-why-us-box {
            background-color: var(--heading);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .sub-page-why-us-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            opacity: 0.1;
            pointer-events: none;
        }

        .sub-page-why-us-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .sub-page-why-us-content {
            position: relative;
            z-index: 10;
            padding: 48px;
        }

        @media (min-width: 768px) {
            .sub-page-why-us-content {
                padding: 80px;
            }
        }

        .sub-page-why-us-title {
            font-size: 32px;
            font-family: var(--font-headline);
            font-weight: 700;
            color: var(--background-color);
            margin-bottom: 24px;
        }

        @media (min-width: 768px) {
            .sub-page-why-us-title {
                font-size: 48px;
            }
        }

        .sub-page-why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
        }

        @media (min-width: 768px) {
            .sub-page-why-us-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .sub-page-why-us-item {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .sub-page-why-us-divider {
            width: 48px;
            height: 4px;
            background-color: rgba(255, 255, 255, 0.3);
        }

        .sub-page-why-us-item-title {
            font-weight: 700;
            font-size: 20px;
            color: var(--background-color);
        }

        .sub-page-why-us-item-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            line-height: 1.5;
        }

        /* Contact Section */
        .sub-page-contact-section {
            background-color: var(--blue-bg);
        }

        .sub-page-contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 64px;
        }

        @media (min-width: 1024px) {
            .sub-page-contact-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .sub-page-contact-info h2 {
            font-size: 36px;
            font-family: var(--font-headline);
            font-weight: 700;
            color: var(--heading);
            margin-bottom: 24px;
        }

        .sub-page-contact-info > p {
            font-size: 18px;
            color: var(--sub-heading);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .sub-page-contact-items {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .sub-page-contact-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .sub-page-contact-item-icon {
            width: 48px;
            height: 48px;
            background-color: rgba(14, 159, 237, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .sub-page-contact-item-icon .material-symbols-outlined {
            color: var(--primary-color);
            font-size: 20px;
        }

        .sub-page-contact-item-label {
            font-size: 12px;
            font-weight: 600;
            color: var(--secondary-color);
            letter-spacing: 0.1em;
            margin-bottom: 4px;
            text-transform: uppercase;
        }

        .sub-page-contact-item-text {
            font-size: 15px;
            font-weight: 400;
            color: var(--sub-heading);
        }

        .sub-page-whatsapp-btn {
            display: inline-flex;
            gap: 12px;
            padding: 16px 32px;
            margin-top: 20px;
            background-color: #25d366;
            color: white;
            font-weight: 700;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .sub-page-whatsapp-btn:hover {
            transform: scale(1.05);
        }

        .sub-page-contact-form {
            background-color: var(--background-color);
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(195, 198, 213, 0.2);
        }

        .sub-page-form-group {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sub-page-form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        @media (min-width: 768px) {
            .sub-page-form-row {
                grid-template-columns: 1fr 1fr;
            }
        }

        .sub-page-form-field {
            display: flex;
            flex-direction: column;
        }

        .sub-page-form-field label {
            font-size: 14px;
            font-weight: 600;
            color: var(--heading);
            margin-bottom: 8px;
        }

        .sub-page-form-field input,
        .sub-page-form-field textarea {
            padding: 12px 16px;
            background-color: var(--blue-bg);
            border: none;
            border-bottom: 1px solid var(--sub-heading);
            font-family: var(--font-body);
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .sub-page-form-field input:focus,
        .sub-page-form-field textarea:focus {
            outline: none;
            border-bottom-color: var(--heading);
        }

        .sub-page-form-submit {
            width: 100%;
            padding: 16px;
            background-color: var(--heading);
            color: var(--background-color);
            font-weight: 700;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s ease;
        }

        .sub-page-form-submit:hover {
            background-color: var(--primary-container);
        }



/* ===================================
========= Resin SG5 PAGE SECTION ===
====================================== */

        .sg5-section {
          width: 100%;
          max-width: 1400px;
          margin: 0 auto;
          padding: 48px 40px 64px;
        }

        /* ── Heading ── */
        .sg5-heading {
          text-align: center;
          font-size: 48px;
          font-weight: 700;
          color: var(--heading);
          margin-bottom: 36px;
          letter-spacing: -0.3px;
        }

        /* ── Photo Grid ── */
        .sg5-grid {
          display: grid;
          grid-template-columns: 1fr 1fr;
          grid-template-rows: auto auto;
          gap: 16px;
          align-items: stretch;
        }

        /* Left tall image — spans both rows */
        .sg5-img-wrap--left {
          grid-column: 1 / 2;
          grid-row: 1 / 3;
        }

        /* Top-right two images side by side */
        .sg5-img-wrap--top-right {
          grid-column: 2 / 3;
          grid-row: 1 / 2;
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 16px;
        }

        /* Bottom-right wide image */
        .sg5-img-wrap--bottom-right {
          grid-column: 2 / 3;
          grid-row: 2 / 3;
        }

        /* ── Image Tiles ── */
        .sg5-img-tile {
          border-radius: 12px;
          overflow: hidden;
          width: 100%;
          height: 100%;
        }
        .sg5-img-tile img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
          transition: transform 0.35s ease;
        }
        .sg5-img-tile:hover img {
          transform: scale(1.04);
        }

        /* Fixed heights for rows */
        .sg5-img-wrap--left .sg5-img-tile {
          height: 100%;
          min-height: 460px;
        }
        .sg5-img-wrap--top-right .sg5-img-tile {
          height: 220px;
        }
        .sg5-img-wrap--bottom-right .sg5-img-tile {
          height: 224px;
        }

        /* ── Tablet View (768px – 1023px) ── */
        @media (max-width: 1023px) {
          .sg5-section {
            padding: 36px 24px 48px;
          }
          .sg5-heading {
            font-size: 24px;
            margin-bottom: 28px;
          }
          .sg5-grid {
            grid-template-columns: 1fr 1fr;
            gap: 12px;
          }
          .sg5-img-wrap--left .sg5-img-tile {
            min-height: 340px;
          }
          .sg5-img-wrap--top-right .sg5-img-tile {
            height: 162px;
          }
          .sg5-img-wrap--bottom-right .sg5-img-tile {
            height: 162px;
          }
          .sg5-lang-switcher {
            padding: 10px 24px 0;
          }
        }

        /* ── Mobile View (up to 767px) ── */
        @media (max-width: 767px) {
          .sg5-section {
            padding: 28px 16px 40px;
          }
          .sg5-heading {
            font-size: 20px;
            margin-bottom: 20px;
          }

          /* Stack everything vertically */
          .sg5-grid {
            display: flex;
            flex-direction: column;
            gap: 12px;
          }
          .sg5-img-wrap--left,
          .sg5-img-wrap--top-right,
          .sg5-img-wrap--bottom-right {
            grid-column: unset;
            grid-row: unset;
            width: 100%;
          }
          .sg5-img-wrap--left .sg5-img-tile {
            min-height: unset;
            height: 240px;
          }
          .sg5-img-wrap--top-right {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            height: 160px;
          }
          .sg5-img-wrap--top-right .sg5-img-tile {
            height: 160px;
          }
          .sg5-img-wrap--bottom-right .sg5-img-tile {
            height: 180px;
          }
          .sg5-lang-switcher {
            padding: 10px 16px 0;
            flex-wrap: wrap;
          }
        }

        /* ── Very small screens (up to 400px) ── */
        @media (max-width: 400px) {
          .sg5-img-wrap--top-right {
            grid-template-columns: 1fr;
            height: auto;
          }
          .sg5-img-wrap--top-right .sg5-img-tile {
            height: 160px;
          }
        }
