/* --- CSS VARIABLES & GLOBAL STYLES --- */
:root{
  --brand-primary: #68c246;    
  --brand-light: rgba(104, 194, 70, 0.15);      
  --brand-bg: #FFFFFF;         
  
  --primary-dark: #0963AE;     
  --primary-deep: #0963AE;     
  
  --surface: #FFFFFF;
  --text-main: #0963AE;        
  --text-muted: rgba(9, 99, 174, 0.7);       
  
  --border: rgba(9, 99, 174, 0.15); 
  --radius: 20px;
  
  --shadow-sm: 0 4px 12px rgba(9, 99, 174, 0.08);
  --shadow-lg: 0 20px 30px rgba(9, 99, 174, 0.12), 0 8px 15px rgba(9, 99, 174, 0.08);
}

*{box-sizing:border-box;margin:0;padding:0}
html { scroll-behavior: smooth; }

body{
    font-family:'Plus Jakarta Sans',sans-serif;
    background: var(--brand-bg);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a{text-decoration:none;color:inherit;transition:0.2s;}
button{cursor:pointer;font-family:inherit;}
.container{max-width:1280px;margin:auto;padding:0 24px}
.hidden { display: none !important; }

/* --- ANIMATIONS --- */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%{transform:translateY(0px);} 50%{transform:translateY(-10px);} 100%{transform:translateY(0px);} }

.page-view { animation: fadeIn 0.5s ease-out; }

/* --- HEADER --- */
header{
    position:sticky; top:0; background: rgba(234, 242, 239, 0.95);
    backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); z-index: 100;
}
.nav-wrapper{display:flex;justify-content:space-between;align-items:center;height:80px;}
.brand{display:flex;align-items:center;gap:12px; cursor: pointer;}
.logo-box { height: 60px; width: auto; border-radius: 12px; overflow: hidden; background: transparent; display: flex; align-items: center; justify-content: center; }
.logo-box img { width: auto; height: 100%; object-fit: contain; }
.brand-text { display: flex; align-items: baseline; gap: 6px; }
.brand-text h1 { font-family: 'Outfit'; font-weight:800; font-size: 26px; line-height: 1; color: var(--primary-deep); margin: 0; }
.brand-text span { font-family: 'Outfit'; font-weight: 400; font-size: 26px; color: var(--text-muted); }

/* Desktop Nav */
.desktop-nav ul{display:flex;gap:32px;list-style:none; margin: 0; padding: 0;}
.desktop-nav a{font-weight:600; color: var(--text-muted); font-size: 16px; cursor: pointer;}
.desktop-nav a:hover, .desktop-nav a.active {color: var(--brand-primary);}
.nav-cta {
    background: var(--brand-primary); color: white !important; padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: 14px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25); transition: 0.3s;
}
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }

/* Mobile Menu Button */
.mobile-menu-btn { display: none; background: transparent; border: none; font-size: 28px; color: var(--primary-deep); z-index: 102; cursor: pointer; }

/* Mobile Nav Overlay */
.mobile-nav {
    display: flex; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); z-index: 101;
    flex-direction: column; align-items: center; justify-content: center; gap: 32px;
    transform: translateY(-100%); transition: transform 0.3s ease-in-out;
    opacity: 0; pointer-events: none;
}
.mobile-nav.active { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-nav a { font-size: 24px; font-weight: 700; color: var(--primary-deep); cursor: pointer; transition: color 0.3s; }
.mobile-nav a:hover { color: var(--brand-primary); }

/* --- BANNER --- */
.banner-section { width: 100%; height: auto; display: block; padding: 0; margin: 0; border: none; }
.responsive-banner { width: 100%; height: auto; display: block; border: none; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 32px; border-radius: 50px; font-weight: 700; transition: 0.3s; border: none; font-size: 16px; cursor: pointer; white-space: nowrap; }
.btn-primary { background: var(--brand-primary); color: white; box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--primary-deep); color: var(--primary-deep); background: transparent; }
.btn-outline:hover { background: var(--primary-deep); color: white; }

.hero { padding-top: 60px; padding-bottom: 60px; }
.hero h1 { font-size: 40px; }
.section { padding: 80px 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-tag { color: var(--primary-deep); font-weight: 700; letter-spacing: 1.5px; font-size: 12px; text-transform: uppercase; display: block; margin-bottom: 16px; background: var(--brand-light); padding: 4px 12px; border-radius: 6px; width: fit-content; margin-inline: auto; }
.section-title { font-family: 'Outfit'; font-size: 20px; color: var(--primary-deep); line-height: 1.2; margin-bottom: 16px; font-weight: 700; }
.section-desc { color: var(--text-muted); font-size: 16px; padding: 0 10px; }

/* About Us Elegant */
.about-us-elegant { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; padding: 20px 0; }
.about-elegant-left { padding-right: 20px; }
.elegant-divider { width: 80px; height: 6px; background: var(--brand-primary); margin-top: 40px; border-radius: 3px; }
.elegant-lead { font-size: 24px; color: var(--primary-deep); font-weight: 500; line-height: 1.6; margin-bottom: 24px; font-family: 'Outfit'; letter-spacing: -0.5px; }
.elegant-text { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }

@media (max-width: 992px) {
    .about-us-elegant { grid-template-columns: 1fr; gap: 40px; }
    .about-elegant-left { padding-right: 0; }
    .elegant-divider { margin-top: 20px; }
}

/* Vision & Mission Showcase */
.vm-showcase { display: flex; flex-direction: column; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-lg); background: white; border: 1px solid var(--border); margin: 0 auto; width: 100%; }
.vm-card-vision { background: var(--primary-deep); padding: 60px; color: white; display: flex; flex-direction: row; align-items: flex-start; text-align: left; gap: 40px; }
.vm-card-vision-content { flex: 1; }
.vm-card-vision h3 { font-family: 'Outfit'; font-size: 36px; color: white; margin-bottom: 24px; font-weight: 800; letter-spacing: -0.5px; }
.vm-card-vision p { color: rgba(255,255,255,0.9); font-size: 18px; line-height: 1.8; }
.vm-icon-wrapper-dark { width: 72px; height: 72px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; }
.vm-icon-wrapper-dark svg { width: 36px; height: 36px; }

.vm-card-mission { padding: 60px; display: flex; flex-direction: row; align-items: flex-start; background: white; text-align: left; gap: 40px; }
.vm-card-mission-content { flex: 1; }
.vm-card-mission h3 { font-family: 'Outfit'; font-size: 36px; color: var(--primary-deep); margin-bottom: 24px; font-weight: 800; letter-spacing: -0.5px; text-align: left; }
.vm-icon-wrapper-light { width: 72px; height: 72px; background: var(--brand-light); border: 1px solid var(--border); border-radius: 20px; display: flex; align-items: center; justify-content: center; color: var(--brand-primary); flex-shrink: 0; }
.vm-icon-wrapper-light svg { width: 36px; height: 36px; }
.vm-list-modern { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.vm-list-modern li { position: relative; padding-left: 20px; color: var(--text-muted); font-size: 16px; line-height: 1.7; text-align: left; }
.vm-list-modern li::before { content: '•'; position: absolute; left: 0; top: -1px; color: var(--primary-deep); font-size: 24px; line-height: 1.2; }

@media (max-width: 992px) { 
    .vm-showcase { flex-direction: column; }
    .vm-card-vision, .vm-card-mission { flex-direction: column; align-items: flex-start; padding: 40px 30px; gap: 24px; }
}

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: white; padding: 32px; border-radius: 20px; border: 1px solid white; box-shadow: var(--shadow-sm); transition: 0.3s; text-align: center; }
.value-card:hover { transform: translateY(-5px); border-color: var(--brand-primary); }
.vc-icon { font-size: 40px; margin-bottom: 20px; display: inline-block; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1)); }
.value-card h3 { color: var(--primary-deep); font-size: 24px; }

/* Products */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; perspective: 1000px; }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card { 
    background: var(--surface); 
    border-radius: 24px; 
    border: 1px solid var(--border); 
    box-shadow: var(--shadow-sm); 
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); 
    display: flex; 
    flex-direction: column; 
    height: 100%; 
    position: relative;
    transform-style: preserve-3d;
    overflow: hidden;
}
.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
    z-index: 2;
    pointer-events: none;
}
.product-card:hover { 
    transform: translateY(-12px) scale(1.02); 
    border-color: var(--brand-primary);
}

.product-img-box { 
    width: 100%; 
    height: 280px; 
    position: relative; 
    overflow: hidden; 
    background: white; 
    border-radius: 24px 24px 0 0;
    display: block; 
}
.product-img-box img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); 
}
.product-card:hover .product-img-box img { 
    transform: scale(1.12); 
}

.product-info { padding: 30px 24px 24px; display: flex; flex-direction: column; flex-grow: 1; position: relative; z-index: 3; background: white; border-radius: 0 0 24px 24px; }
.p-cat { font-size: 12px; font-weight: 800; color: var(--primary-dark); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; background: var(--brand-light); padding: 6px 12px; border-radius: 8px; align-self: start; display: inline-flex; align-items: center; }
.p-title { font-family: 'Outfit'; font-size: 24px; color: var(--primary-deep); font-weight: 800; margin-bottom: 12px; line-height: 1.2; letter-spacing: -0.5px; }
.p-desc { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; line-height: 1.6; flex-grow: 1; }
.p-btn { width: 100%; padding: 14px; border-radius: 12px; border: 2px solid var(--brand-light); background: transparent; color: var(--primary-dark); font-weight: 700; font-size: 16px; transition: all 0.3s ease; text-align: center; margin-top: auto; display: inline-flex; justify-content: center; align-items: center; gap: 8px; }
.p-btn:hover { background: var(--brand-primary); color: white; border-color: var(--brand-primary); transform: translateY(-2px); }
.view-all-container { margin-top: 50px; text-align: center; }

/* Team */
.team-section { background: white; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 350px)); justify-content: center; gap: 32px; margin: 0 auto; }
.member-card { background: white; border-radius: 24px; overflow: hidden; transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: var(--shadow-sm); border: 1px solid var(--border); display: flex; flex-direction: column; }
.member-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: var(--shadow-lg); border-color: var(--brand-primary); }
.member-img { width: 100%; height: auto; overflow: hidden; margin: 0; padding: 0; }
.member-img img { width: 100%; height: auto; display: block; border: none; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.member-card:hover .member-img img { transform: scale(1.1); }
.member-info { padding: 32px 24px; text-align: center; background: white; flex-grow: 1; display: flex; flex-direction: column; justify-content: flex-start; }
.m-name { font-family: 'Outfit'; font-size: 24px; font-weight: 800; color: var(--primary-deep); margin-bottom: 8px; letter-spacing: -0.5px; }
.m-role { color: var(--brand-primary); font-weight: 700; font-size: 12px; text-transform: uppercase; margin-bottom: 16px; display: inline-block; padding: 6px 16px; background: var(--brand-light); border-radius: 20px; letter-spacing: 0.5px; margin-inline: auto; }
.m-bio { color: var(--text-muted); font-size: 16px; line-height: 1.6; margin: 0; }

/* Our Locations */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 40px; max-width: 1000px; margin: 0 auto; }
.location-card { background: white; border-radius: 24px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: 0.3s; overflow: hidden; display: flex; flex-direction: column; cursor: pointer; }
.location-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--brand-primary); }
.location-info { padding: 40px; display: flex; flex-direction: column; flex-grow: 1; }
.location-info h3 { font-family: 'Outfit'; font-size: 24px; color: var(--primary-deep); margin-bottom: 8px; font-weight: 800; letter-spacing: -0.5px; }
.loc-address { color: var(--text-muted); font-size: 16px; margin-bottom: 24px; font-weight: 500; }
.loc-contact-group { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.loc-contact { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-deep); font-weight: 600; font-size: 15px; text-decoration: none; transition: color 0.3s; }
.loc-contact:hover { color: var(--brand-primary); }
.loc-map { width: 100%; height: 250px; border-radius: 16px; overflow: hidden; margin-bottom: 32px; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05); }
.loc-map iframe { width: 100%; height: 100%; object-fit: cover; }
.loc-actions { display: flex; gap: 16px; margin-top: auto; }
.loc-actions .btn { flex: 1; text-align: center; justify-content: center; padding: 14px 24px; }

/* Contact */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; background: white; padding: 64px; border-radius: 32px; border: 1px solid var(--border); box-shadow: var(--shadow-lg); align-items: flex-start; }
.contact-content .section-tag { margin-inline: 0; }
.contact-content .section-title { text-align: left; }
.contact-content .section-desc { text-align: left; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 32px; }
.cd-item { display: flex; gap: 20px; align-items: flex-start; }
.cd-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--brand-light); color: var(--brand-primary); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.cd-item h4 { font-size: 24px; font-weight: 700; color: var(--primary-deep); margin-bottom: 4px; }
.cd-item p { color: var(--text-muted); font-size: 16px; }
.contact-socials { display: flex; gap: 12px; margin-top: 12px; }
.contact-social-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-light); color: var(--brand-primary); display: flex; align-items: center; justify-content: center; transition: 0.3s; border: 1px solid transparent; }
.contact-social-icon:hover { background: var(--brand-primary); color: white; transform: translateY(-3px); }
.contact-social-icon svg { width: 22px; height: 22px; fill: currentColor; }
.contact-form { background: white; padding: 40px; border-radius: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); width: 100%; }
.form-group { margin-bottom: 20px; }
.form-input { width: 100%; padding: 16px; border-radius: 14px; border: 1px solid var(--border); background: #f8fafc; color: var(--text-main); font-family: inherit; transition: 0.3s; font-size: 15px; }
.form-input:focus { outline: none; border-color: var(--brand-primary); background: white; box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1); }
.form-btn { width: 100%; padding: 16px; border-radius: 14px; background: #03045E; color: white; font-weight: 700; font-size: 16px; border: none; cursor: pointer; transition: 0.3s; box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3); }
.form-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* Footer */
footer { background: #03045E; color: #cbd5e1; padding: 80px 0 30px; margin-top: auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-logo-section { display: flex; flex-direction: column; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.f-logo-box { height: 60px; width: auto; border-radius: 12px; background: transparent; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.f-logo-box img { width: auto; height: 100%; object-fit: contain; }
.f-brand-name { font-family: 'Outfit'; font-weight: 700; font-size: 28px; color: white; }
.footer-desc { font-size: 16px; line-height: 1.6; color: #94a3b8; max-width: 300px; }
.footer h4 { color: white; margin-bottom: 24px; font-family: 'Outfit'; font-weight: 700; font-size: 18px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; }
.footer a { font-size: 16px; color: #94a3b8; transition: 0.2s; cursor: pointer; }
.footer a:hover { color: var(--brand-primary); padding-left: 5px; }
.social-links { display: flex; gap: 12px; margin-top: 10px; }
.social-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); color: white; display: flex; align-items: center; justify-content: center; transition: 0.3s; border: 1px solid rgba(255,255,255,0.1); }
.social-icon:hover { background: var(--brand-primary); border-color: var(--brand-primary); transform: translateY(-3px); }
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }
.copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; color: #64748b; }

/* PRODUCT DETAIL VIEW (Stacked Layout) */
.pd-hero { padding: 40px 0 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.pd-image-container { background: white; border-radius: 24px; padding: 0px; border: none; box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; position: sticky; top: 100px; height: auto; overflow: hidden; }
.pd-image-container img { width: 100%; height: auto; display: block; object-fit: unset; }
.pd-top-actions { display: flex; flex-direction: row; align-items: center; justify-content: flex-start; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; width: 100%; }
.pd-back-btn { margin-bottom: 0 !important; white-space: nowrap; flex-shrink: 0; padding: 0 16px !important; font-size: 14px !important; border-radius: 50px !important; display: inline-flex !important; align-items: center; gap: 6px; height: 34px; justify-content: center; }
.pd-top-actions .pd-badge { margin-bottom: 0 !important; white-space: nowrap; flex-shrink: 0; align-self: center; padding: 0 16px !important; font-size: 12px !important; display: inline-flex; align-items: center; height: 34px; justify-content: center; }
.pd-badge { display: inline-block; padding: 8px 16px; border-radius: 50px; font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; background: var(--brand-light); color: var(--primary-dark); }
.pd-title { font-family: 'Outfit'; font-size: 40px; line-height: 1.1; color: var(--primary-deep); margin-bottom: 20px; font-weight: 700; }
.pd-short-desc { font-size: 16px; color: var(--text-muted); line-height: 1.6; margin-bottom: 32px; }
.pd-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.pd-info-item { background: white; padding: 20px; border-radius: 12px; border: 1px solid var(--border); }
.pd-label { font-size: 12px; font-weight: 800; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 6px; display: block; }
.pd-value { font-size: 16px; font-weight: 600; color: var(--primary-deep); }
.pd-cta { background: var(--primary-deep); color: white; border: none; padding: 16px 32px; border-radius: 12px; font-weight: 700; font-size: 16px; width: 100%; box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2); transition: 0.3s; }
.pd-cta:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* Stacked Content Styling */
.pd-content-stack { display: flex; flex-direction: column; gap: 60px; margin-bottom: 80px; }
.pd-block { background: white; padding: 50px; border-radius: 32px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.pd-block .section-header { text-align: left; margin: 0 0 30px 0; max-width: none; }
.pd-block .section-tag { margin-inline: 0; color: var(--primary-deep); }
.pd-block h1, .pd-block h2, .pd-block h3, .pd-block h4, .pd-block h5, .pd-block h6, .pd-block .section-title { color: var(--primary-deep); text-align: left; }
.pd-text-large { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 0; }
.pd-text-medium { font-size: 16px; color: var(--text-muted); line-height: 1.7; }
.pd-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.pd-info-card { background: var(--brand-light); padding: 30px; border-radius: 20px; border: 1px solid var(--border); }
.pd-info-card h3 { font-family: 'Outfit'; font-size: 24px; color: var(--primary-deep); margin-bottom: 16px; font-weight: 700; border-bottom: 2px solid var(--border); padding-bottom: 10px; }
.pd-modern-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.pd-modern-list li { position: relative; padding-left: 20px; color: var(--text-muted); font-size: 16px; line-height: 1.6; }
.pd-modern-list li::before { content: '•'; position: absolute; left: 0; top: -1px; color: var(--primary-deep); font-size: 24px; line-height: 1.2; }

/* Remove old tab styles */
.pd-tabs-container, .pd-tabs-header, .pd-tab-btn, .pd-section { display: none; }

/* --- RESPONSIVE MEDIA QUERIES --- */
/* Large Displays (1440px and up) */
@media (min-width: 1440px) {
    .container { max-width: 1400px; }
    .hero h1 { font-size: 64px; }
}

/* Ultra Wide Displays (2560px and up) */
@media (min-width: 2560px) {
    .container { max-width: 1800px; }
    .hero h1 { font-size: 80px; }
    body { font-size: 18px; }
}

@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    .hero-content { gap: 40px; }
    .hero h1 { font-size: 40px; }
    .hero-visual { height: 350px; }
    .visual-circle { max-width: 350px; }
    .contact-wrapper { padding: 40px; gap: 40px; }
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: block; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .hero-btns { justify-content: center; }
    .stats-bar { justify-content: center; }
    .hero-visual { display: none; }
    .about-wrapper { grid-template-columns: 1fr; }
    .about-img { height: 300px; }
    .values-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; padding: 30px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    
    .nav-wrapper { height: 60px; }
    .logo-box, .f-logo-box { height: 38px; }
    .brand, .footer-logo { gap: 8px; }
    .brand-text h1, .f-brand-name { font-size: 19px; }
    .brand-text span { font-size: 19px; }
    .mobile-menu-btn { font-size: 24px; }

    .product-img-box { height: 280px; }

    .btn { padding: 10px 20px; font-size: 13px; }
    .pd-cta { padding: 10px 20px; font-size: 13px; width: 100%; max-width: 240px; margin: 0; display: block; }
    .p-btn { padding: 8px; font-size: 13px; }
    .form-btn { padding: 10px 16px; font-size: 13px; }

    .pd-hero { display: flex; flex-direction: column; gap: 16px; text-align: left; }
    .pd-info { display: contents; }
    .pd-info > .pd-top-actions { order: 1; margin-bottom: 0; flex-wrap: wrap; justify-content: flex-start; width: 100%; gap: 10px; overflow-x: visible; }
    .pd-info > .pd-top-actions::-webkit-scrollbar { display: none; }
    .pd-info > .pd-top-actions .pd-back-btn { height: 28px; padding: 0 12px !important; font-size: 12px !important; margin: 0 !important; }
    .pd-info > .pd-top-actions .pd-badge { height: 28px; padding: 0 10px !important; font-size: 10px !important; margin: 0 !important; }
    .pd-info > .pd-title { order: 3; margin-top: 10px !important; margin-bottom: 0; font-size: 28px; word-wrap: break-word; overflow-wrap: break-word; text-align: left; }
    .pd-info > .pd-short-desc { order: 4; margin-bottom: 8px; text-align: left; }
    .pd-image-container { position: relative; top: 0; height: auto; margin: 8px 0; order: 5; width: 100%; display: flex; justify-content: center; background: none; box-shadow: none; }
    .pd-image-container img { width: 100%; max-width: 100%; height: auto; border-radius: 20px; box-shadow: var(--shadow-sm); object-fit: contain; }
    .pd-info > .pd-info-grid { order: 6; margin-bottom: 16px; width: 100%; text-align: left; }
    .pd-info > .pd-cta { order: 7; align-self: flex-start; }
    
    .about-card-overlay { bottom: 16px; left: 16px; right: 16px; padding: 14px; max-width: calc(100% - 32px); gap: 12px; }
    .pd-grid-2 { grid-template-columns: 1fr; }
    .pd-block { padding: 30px 20px; }
    .pd-block .section-header { text-align: left; margin: 0 0 24px 0; }
    .pd-block .section-tag { margin-inline: 0; }
    .pd-block h1, .pd-block h2, .pd-block h3, .pd-block h4, .pd-block h5, .pd-block h6, .pd-block .section-title { text-align: left; }
    .pd-text-large, .pd-text-medium { text-align: left; }
    .pd-modern-list { display: flex; text-align: left; }
    .pd-info-card { text-align: left; }
}

@media (max-width: 480px) {
    .section { padding: 40px 0; }
    .hero h1 { font-size: 32px; }
    .section-title { font-size: 26px; }
    .btn, .pd-cta, .form-btn, .p-btn { padding: 8px 16px; font-size: 13px; width: auto; max-width: 100%; }
    .stats-bar { flex-direction: column; align-items: flex-start; gap: 20px; }
    
    .product-img-box { height: 220px; }

    /* Card Sizing Reductions */
    .product-info, .member-info, .location-info { padding: 16px; }
    .value-card { padding: 20px; }
    .pd-info-card { padding: 20px; }
    .pd-block { padding: 24px 16px; border-radius: 20px; }
    .vm-card-vision, .vm-card-mission { padding: 24px 16px; }
    .contact-wrapper { padding: 20px 16px; gap: 30px; }
    .contact-form { padding: 20px; }
    .footer-top { gap: 30px; }

    .pd-info-grid { grid-template-columns: 1fr; text-align: left; }
    .pd-info-item { text-align: left; display: flex; flex-direction: column; align-items: flex-start; padding: 16px; }
}

/* Mobile L (425px) */
@media (max-width: 425px) {
    .hero h1 { font-size: 28px; }
    .pd-title { font-size: 26px; }
    .btn, .pd-cta, .form-btn, .p-btn { padding: 8px 14px; font-size: 12px; }
}

/* Mobile M (375px) */
@media (max-width: 375px) {
    .nav-wrapper { height: 56px; }
    .logo-box, .f-logo-box { height: 34px; }
    .brand, .footer-logo { gap: 6px; }
    .brand-text h1, .brand-text span, .f-brand-name { font-size: 17px; }
    .mobile-menu-btn { font-size: 22px; }
    
    .hero h1 { font-size: 26px; }
    .pd-title { font-size: 24px; }
    .btn, .pd-cta, .form-btn, .p-btn { padding: 6px 12px; font-size: 12px; }
    .contact-details .cd-item { flex-direction: column; align-items: flex-start; text-align: left; }
    .value-card { padding: 16px; }
    .pd-info-card { padding: 16px; }
}

/* Mobile S (320px) */
@media (max-width: 320px) {
    .nav-wrapper { height: 50px; }
    .logo-box, .f-logo-box { height: 32px; }
    .brand, .footer-logo { gap: 6px; }
    .brand-text h1, .brand-text span, .f-brand-name { font-size: 16px; }
    .mobile-menu-btn { font-size: 22px; }
    .container { padding: 0 12px; }
    
    .hero h1 { font-size: 24px; }
    .pd-title { font-size: 22px; }
    .section-title { font-size: 20px; }
    .btn, .pd-cta, .form-btn, .p-btn { padding: 6px 10px; font-size: 11px; }
    .product-img-box { height: 180px; }
    .product-info, .member-info, .location-info { padding: 12px; }
    .pd-block { padding: 20px 12px; }
}