/* ============================================
   MODERN REDESIGN - GlucoStable
   Updated Block Styles
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00695C;
    --primary-dark: #004D40;
    --primary-light: #26A69A;
    --secondary-color: #FF7043;
    --accent-color: #00ACC1;
    --text-dark: #212121;
    --text-light: #616161;
    --text-muted: #9E9E9E;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --bg-gradient-1: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 100%);
    --bg-gradient-2: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    --border-color: #E0E0E0;
    --shadow-sm: 0 4px 12px rgba(0, 105, 92, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 105, 92, 0.15);
    --shadow-lg: 0 16px 48px rgba(0, 105, 92, 0.2);
    --shadow-xl: 0 24px 64px rgba(0, 105, 92, 0.25);
    --gradient-primary: linear-gradient(135deg, #00695C 0%, #26A69A 50%, #00ACC1 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 105, 92, 0.92) 0%, rgba(38, 166, 154, 0.88) 50%, rgba(0, 172, 193, 0.85) 100%);
    --gradient-card: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

body.modern-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(180deg, #FAFAFA 0%, #F5F5F5 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER - New Style
   ============================================ */

.modern-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 105, 92, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 105, 92, 0.1);
}

.ad-badge {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.ad-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.main-nav {
    padding: 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    padding: 8px;
    border-radius: 12px;
}

.logo-link:hover {
    transform: scale(1.05);
    background: rgba(0, 105, 92, 0.05);
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 105, 92, 0.2));
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
    padding: 10px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: rgba(0, 105, 92, 0.1);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION - New Style
   ============================================ */

.hero-section {
    position: relative;
    min-height: 700px;
    background: var(--gradient-hero), url('images/photo-1490645935967-10de6ba17061.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 120px 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 172, 193, 0.3) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    color: white;
    animation: fadeInUp 1s ease-out;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.9;
    opacity: 0.98;
    font-weight: 400;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle strong {
    font-weight: 700;
    color: #FFE082;
    background: rgba(255, 224, 130, 0.2);
    padding: 2px 8px;
    border-radius: 6px;
}

/* ============================================
   DISCLAIMER SECTION - New Style
   ============================================ */

.disclaimer-section {
    padding: 80px 0;
    background: var(--bg-gradient-1);
    position: relative;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(224, 242, 241, 1) 100%);
}

.disclaimer-box {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-xl);
    display: flex;
    gap: 30px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    border: 2px solid rgba(0, 105, 92, 0.1);
    position: relative;
    overflow: hidden;
}

.disclaimer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-primary);
}

.disclaimer-icon {
    flex-shrink: 0;
    background: var(--bg-gradient-1);
  padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.icon-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 105, 92, 0.2));
}

.disclaimer-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
}

.disclaimer-text strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 17px;
}

/* ============================================
   PRODUCTS SECTION - New Style
   ============================================ */

.products-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 70px;
    color: var(--text-dark);
    position: relative;
    letter-spacing: -0.5px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.product-card {
    background: var(--gradient-card);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.product-card:hover::before {
    opacity: 0.05;
}

.product-image-wrapper {
    position: relative;
    padding-top: 80%;
    overflow: hidden;
    background: var(--bg-gradient-1);
    z-index: 1;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    filter: brightness(1) saturate(1);
}

.product-card:hover .product-image {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1) saturate(1.2);
}

.product-image-1 {
    background-image: url('images/855dee6554ab3e5bbdf8b4ff265f6028.jpg');
}

.product-image-2 {
    background-image: url('images/d9b2d0ec2a927f026fe353167b7bc1c8.jpg');
}

.product-image-3 {
    background-image: url('images/b06dd3dd469b7159dc7d7f6d2c3f20a0.jpg');
}

.product-image-4 {
    background-image: url('images/8b3ec068e4691c61ba68ce5a5e350420.jpg');
}

.product-content {
    padding: 30px;
    position: relative;
    z-index: 1;
    background: white;
}

.product-name {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
}

.product-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.product-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
}

/* ============================================
   FEATURE SECTION - New Style
   ============================================ */

.feature-section {
    padding: 100px 0;
    background: var(--bg-gradient-2);
    position: relative;
    overflow: hidden;
}

.feature-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 172, 193, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.feature-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    transition: var(--transition);
}

.feature-image-wrapper:hover {
    transform: rotate(0deg) scale(1.05);
}

.feature-image {
    width: 100%;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    filter: brightness(1.05) contrast(1.1);
}

.feature-text-wrapper {
    padding: 30px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(0, 105, 92, 0.1);
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    position: relative;
    padding-left: 20px;
}

.feature-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.feature-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 22px;
}

.feature-text:last-child {
    margin-bottom: 0;
}

.feature-text strong {
    color: var(--primary-color);
    font-weight: 700;
    background: rgba(0, 105, 92, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

/* ============================================
   PRODUCT SHOWCASE SECTION - New Style
   ============================================ */

.product-showcase-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 50%, #E0F2F1 100%);
    position: relative;
}

.product-showcase-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(224, 242, 241, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.showcase-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.showcase-content {
    padding: 40px;
    background: white;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(0, 105, 92, 0.1);
    position: relative;
    overflow: hidden;
}

.showcase-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 172, 193, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.product-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.showcase-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.showcase-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.important-notice {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border-left: 5px solid var(--secondary-color);
    padding: 25px;
    border-radius: 16px;
    margin: 35px 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.important-notice strong {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 16px;
}

.certificate-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    margin-top: 25px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.certificate-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.certificate-btn:hover::before {
    width: 300px;
    height: 300px;
}

.certificate-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.certificate-btn svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
}

.certificate-btn span {
    position: relative;
    z-index: 1;
}

.showcase-image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: visible;
    box-shadow: var(--shadow-xl);
}

.showcase-image {
    width: 100%;
    min-height: 500px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 32px;
}

/* ============================================
   CONTACT SECTION - New Style
   ============================================ */

.contact-section {
    padding: 120px 0;
    background: var(--bg-gradient-1);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.contact-form-wrapper {
    max-width: 650px;
    margin: 60px auto 0;
    background: white;
    padding: 60px;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(0, 105, 92, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 172, 193, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
    letter-spacing: 0.3px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 6px rgba(0, 105, 92, 0.1);
    transform: translateY(-2px);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

.submit-btn svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
}

.form-message {
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
    display: none;
    font-weight: 500;
}

.form-success {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: #1B5E20;
    border: 2px solid #4CAF50;
}

.form-error {
    background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
    color: #B71C1C;
    border: 2px solid #EF5350;
}

/* ============================================
   FOOTER - New Style
   ============================================ */

.modern-footer {
    background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
    color: #E0E0E0;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-disclaimer p,
.footer-company p {
    font-size: 14px;
    line-height: 1.9;
    color: #B0B0B0;
}

.footer-company a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-company a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    justify-content: center;
}

.footer-menu a {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 8px;
}

.footer-menu a:hover {
    color: white;
    background: rgba(0, 105, 92, 0.2);
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .section-title {
        font-size: 34px;
    }

    .feature-content-wrapper,
    .showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .feature-image-wrapper {
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
  }
}

@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
  padding: 30px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        gap: 0;
        border-top: 2px solid var(--primary-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 18px;
        border-bottom: 1px solid var(--border-color);
    }

    .hero-section {
        min-height: 550px;
        padding: 80px 0;
        background-attachment: scroll;
    }

    .hero-content {
  padding: 30px;
}

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

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

    .disclaimer-box {
        flex-direction: column;
        padding: 35px 25px;
    }

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

    .section-title {
        font-size: 28px;
    }

    .feature-title,
    .showcase-title {
        font-size: 28px;
    }

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

    .footer-menu {
        flex-direction: column;
        gap: 20px;
        text-align: center;
  }
}

@media (max-width: 575px) {
    .container {
        padding: 0 20px;
    }

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

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

    .feature-title,
    .showcase-title {
        font-size: 24px;
    }

    .disclaimer-box {
        padding: 30px 20px;
    }

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

    .hero-content {
        padding: 25px;
    }
}

/* Legacy support for existing classes */
.u-section-1,
.u-section-2,
.u-section-3,
.u-section-4,
.u-section-5,
   .u-section-6 {
    display: none;
}
