/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a5c4a;
    --primary-dark: #064635;
    --primary-light: #1a7b65;
    --secondary: #f4a261;
    --secondary-light: #f8b77e;
    --accent: #e9c46a;
    --dark: #1e3a5f;
    --gray: #5e6f8d;
    --light-gray: #eef2f6;
    --white: #ffffff;
    --off-white: #f8fafd;
    --shadow: 0 20px 40px -15px rgba(6, 70, 53, 0.15);
    --shadow-hover: 0 30px 50px -15px rgba(6, 70, 53, 0.25);
    --gradient: linear-gradient(135deg, #0a5c4a, #1a7b65);
    --gradient-accent: linear-gradient(135deg, #f4a261, #e9c46a);
    --border-radius: 24px;
    --border-radius-sm: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    position: relative;
}

.section-header h2 span {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--secondary);
    opacity: 0.2;
    border-radius: 4px;
    z-index: -1;
}

.section-header p {
    color: var(--gray);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.4s;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(10, 92, 74, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 92, 74, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-5px);
    border-color: transparent;
}

/* ===== NAVIGATION ===== */
.navbar {
    padding: 20px 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.4s ease;
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--secondary);
    font-weight: 400;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    transition: width 0.3s;
    border-radius: 3px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 6px);
    background: var(--secondary);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -6px);
    background: var(--secondary);
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 100px 0 70px;
    background: var(--gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(10px, 10px) rotate(3deg); }
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.2s both;
    line-height: 1.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-logo h3 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-about {
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.footer-links h4 {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-links p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10,92,74,0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244,162,97,0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 4.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content .highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.hero-content .highlight::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--accent);
    opacity: 0.3;
    border-radius: 10px;
    z-index: -1;
}

.hero-content .subhead {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin: 45px 0;
}

.stat-item {
    position: relative;
}

.stat-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.hero-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.hero-card:hover::before {
    transform: scaleX(1);
}

.hero-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.hero-card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
    transition: all 0.4s;
}

.hero-card:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary);
}

.hero-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.hero-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 45px 30px;
    background: var(--off-white);
    border-radius: 30px;
    transition: all 0.4s;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
}

.feature-card:hover h3,
.feature-card:hover p,
.feature-card:hover .feature-count {
    color: var(--white);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.feature-card:hover .feature-icon {
    background: var(--white);
    transform: rotateY(180deg);
}

.feature-icon i {
    font-size: 3.5rem;
    color: var(--primary);
    transition: all 0.4s;
}

.feature-card:hover .feature-icon i {
    color: var(--secondary);
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
    transition: color 0.3s;
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
    transition: color 0.3s;
}

.feature-count {
    display: inline-block;
    background: var(--white);
    padding: 6px 22px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* ===== SHOWCASE SECTION ===== */
.showcase-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--off-white), var(--white));
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    padding: 60px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.showcase-grid::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(10,92,74,0.02) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.showcase-tag {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(244,162,97,0.3);
}

.showcase-content {
    position: relative;
    z-index: 2;
}

.showcase-content h2 {
    font-size: 3.2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.showcase-desc {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1.15rem;
    line-height: 1.8;
}

.showcase-packs {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.pack-badge {
    background: var(--off-white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid var(--secondary);
    font-size: 1rem;
    transition: all 0.3s;
}

.pack-badge:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.pack-badge small {
    color: var(--secondary);
    font-weight: 600;
    margin-left: 8px;
    transition: color 0.3s;
}

.pack-badge:hover small {
    color: var(--white);
}

.showcase-image {
    background: var(--gradient);
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.showcase-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.showcase-image i {
    font-size: 7rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    animation: bounce 3s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.showcase-image h3 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.showcase-image p {
    opacity: 0.9;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: 100px 0;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-badge {
    text-align: center;
    padding: 45px 30px;
    background: var(--off-white);
    border-radius: 30px;
    transition: all 0.4s;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.trust-badge:hover::before {
    opacity: 1;
}

.trust-badge > * {
    position: relative;
    z-index: 1;
}

.trust-badge:hover {
    transform: scale(1.05);
    border-color: var(--secondary);
}

.trust-badge:hover i,
.trust-badge:hover h4,
.trust-badge:hover p {
    color: var(--white);
}

.trust-badge i {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.trust-badge h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.trust-badge p {
    color: var(--gray);
    transition: all 0.3s;
    font-size: 1rem;
}

/* ===== IMPACT BANNER ===== */
.impact-banner {
    padding: 100px 0;
    background: var(--gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.impact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0 L60 30 L30 60 L0 30 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.1;
}

.impact-banner .container {
    position: relative;
    z-index: 2;
}

.impact-banner h2 {
    color: var(--white);
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 50px;
}

.impact-banner h2 span {
    color: var(--secondary);
    position: relative;
}

.impact-banner h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--secondary);
    opacity: 0.3;
    border-radius: 4px;
}

.impact-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 50px;
}

.impact-item {
    text-align: center;
}

.impact-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.impact-label {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 200px;
    font-weight: 500;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-story {
    padding: 100px 0;
    background: var(--white);
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.story-text h2 {
    font-size: 3.2rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.story-text p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-highlight {
    background: var(--gradient-accent);
    padding: 35px;
    border-radius: 30px;
    margin: 40px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.story-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.story-highlight p {
    margin-bottom: 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: var(--shadow-hover);
    transition: transform 0.5s;
}

.story-image:hover img {
    transform: scale(1.02);
}

.story-image-caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow);
    font-size: 1rem;
}

/* Leadership Section */
.leadership {
    padding: 100px 0;
    background: var(--off-white);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.leader-card {
    background: var(--white);
    border-radius: 40px;
    padding: 45px 30px 35px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.leader-card:hover::before {
    transform: scaleX(1);
}

.leader-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.leader-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--secondary);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s;
}

.leader-card:hover .leader-photo {
    border-color: var(--primary);
    transform: scale(1.05);
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.leader-card:hover .leader-photo img {
    transform: scale(1.1);
}

.leader-card h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.leader-title {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 22px;
    background: var(--off-white);
    border-radius: 50px;
    font-size: 0.95rem;
}

.leader-card p {
    color: var(--gray);
    line-height: 1.8;
    padding: 0 10px;
}

/* Timeline */
.timeline {
    padding: 100px 0;
    background: var(--white);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.timeline-item {
    background: var(--off-white);
    border-radius: 30px;
    padding: 45px 35px;
    position: relative;
    transition: all 0.4s;
    border-left: 5px solid var(--secondary);
}

.timeline-item:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow);
}

.timeline-year {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.timeline-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.timeline-item p {
    color: var(--gray);
    line-height: 1.8;
}

/* Certificates Section */
.certificates {
    padding: 100px 0;
    background: var(--off-white);
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cert-card {
    background: var(--white);
    border-radius: 30px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s;
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.cert-card:hover::before {
    opacity: 0.05;
}

.cert-card:hover {
    border-color: var(--secondary);
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.cert-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}

.cert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.cert-card:hover .cert-image img {
    transform: scale(1.1);
}

.cert-card h4 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.cert-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cert-btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    border: 1px solid transparent;
}

.cert-btn:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10,92,74,0.1);
}

/* Location Section */
.location {
    padding: 100px 0;
    background: var(--white);
}

.location-card {
    background: var(--gradient);
    border-radius: 50px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.location-icon {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.15);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.location-icon i {
    font-size: 4rem;
    color: var(--secondary);
}

.location-card h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.location-address {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.location-note {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 12px 35px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.location-note:hover {
    background: var(--secondary);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== PRODUCTS PAGE ===== */
.product-nav {
    padding: 40px 0;
    background: var(--white);
}

.product-pills {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.product-pill {
    padding: 14px 32px;
    background: var(--off-white);
    border-radius: 50px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.4s;
    border: 1px solid transparent;
    font-size: 0.95rem;
}

.product-pill:hover,
.product-pill.active {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10, 92, 74, 0.3);
}

.category-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--light-gray);
}

.category-section:last-child {
    border-bottom: none;
}

.category-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(244,162,97,0.2);
}

.category-icon i {
    font-size: 3rem;
    color: var(--white);
}

.category-head h2 {
    font-size: 2.4rem;
    color: var(--primary-dark);
    margin: 0;
}

.category-badge {
    margin-left: auto;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(10,92,74,0.2);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.product-item {
    background: var(--white);
    border-radius: 35px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.product-item:hover::before {
    transform: scaleX(1);
}

.product-item:hover {
    border-color: var(--secondary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.product-header h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.product-reg {
    background: var(--off-white);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--secondary);
}

.product-desc {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.product-packs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pack {
    background: var(--off-white);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    transition: all 0.3s;
    border: 1px solid transparent;
}

.pack:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--secondary);
}

.pack span {
    color: var(--secondary);
    font-weight: 600;
    margin-left: 8px;
    transition: color 0.3s;
}

.pack:hover span {
    color: var(--white);
}

.single-product {
    background: var(--white);
    border-radius: 50px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.single-product::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(10,92,74,0.02) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.single-icon {
    width: 180px;
    height: 180px;
    background: var(--gradient-accent);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 30px rgba(244,162,97,0.3);
}

.single-icon i {
    font-size: 6rem;
    color: var(--white);
}

.single-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.single-content h3 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.single-content p {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* ===== CONTACT PAGE ===== */
.contact-cards {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--off-white);
    border-radius: 35px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--secondary);
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s;
    box-shadow: 0 15px 25px rgba(10,92,74,0.2);
}

.contact-card:hover .contact-icon {
    transform: rotateY(180deg);
    background: var(--gradient-accent);
}

.contact-icon i {
    font-size: 3rem;
    color: var(--white);
    transition: all 0.4s;
}

.contact-card:hover .contact-icon i {
    transform: rotateY(180deg);
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1rem;
}

.contact-main {
    padding: 80px 0 100px;
    background: var(--off-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.form-box {
    background: var(--white);
    border-radius: 50px;
    padding: 60px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.form-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(10,92,74,0.02) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.form-box h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.form-sub {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid var(--light-gray);
    border-radius: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 5px 20px rgba(244, 162, 97, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 18px 45px;
    border-radius: 18px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.4s;
    z-index: -1;
}

.btn-submit:hover::before {
    left: 0;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(10, 92, 74, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.map-box {
    background: var(--white);
    border-radius: 50px;
    padding: 40px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.map-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(10,92,74,0.02) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.map-placeholder {
    background: var(--gradient);
    border-radius: 35px;
    padding: 80px 40px;
    text-align: center;
    color: var(--white);
    flex: 1;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.map-placeholder i {
    font-size: 5rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    animation: bounce 3s ease infinite;
}

.map-placeholder h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.map-placeholder p {
    opacity: 0.95;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.map-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 10px 30px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.2);
}

.map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    background: var(--gradient);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s;
    padding: 16px 30px;
    border-radius: 18px;
    position: relative;
    z-index: 2;
    border: 1px solid transparent;
}

.map-link:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    transform: translateX(8px);
}

.map-link i {
    transition: transform 0.3s;
}

.map-link:hover i {
    transform: translateX(5px);
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 40px;
}

.leader-contact {
    background: var(--white);
    border-radius: 35px;
    padding: 45px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.leader-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.leader-contact:hover::before {
    transform: scaleX(1);
}

.leader-contact:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.leader-contact i {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    transition: all 0.4s;
}

.leader-contact:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary);
}

.leader-contact h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.leader-contact .position {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-block;
    padding: 5px 20px;
    background: var(--off-white);
    border-radius: 50px;
    font-size: 0.95rem;
}

.contact-detail {
    color: var(--gray);
    margin-bottom: 8px;
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--white);
    border-radius: 30px;
    padding: 40px 35px;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border: 1px solid transparent;
}

.faq-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.faq-item h4 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.faq-item h4 i {
    color: var(--secondary);
    font-size: 1.4rem;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.8;
    margin-left: 35px;
}

/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 60px;
    border-radius: 50px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: modalPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-hover);
}

@keyframes modalPop {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-content i {
    font-size: 5rem;
    color: var(--secondary);
    margin-bottom: 30px;
    animation: bounce 2s ease infinite;
}

.modal-content h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.modal-content p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.modal-btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
    font-size: 1.1rem;
    border: 1px solid transparent;
}

.modal-btn:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10,92,74,0.2);
}

.cert-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cert-modal-content {
    max-width: 90%;
    max-height: 80vh;
    animation: zoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cert-modal-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 20px;
    border: 4px solid var(--white);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.cert-modal-close {
    position: absolute;
    top: 40px;
    right: 50px;
    color: var(--white);
    font-size: 60px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.4s;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
}

.cert-modal-close:hover {
    background: var(--secondary);
    transform: rotate(90deg) scale(1.1);
    border-color: var(--white);
}

.cert-modal-caption {
    color: var(--white);
    margin-top: 25px;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-content h2 {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .hero-grid,
    .story-wrapper,
    .showcase-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .features-grid,
    .trust-grid,
    .contact-grid,
    .certs-grid,
    .leaders-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h2 {
        font-size: 3.2rem;
    }
    
    .hero-cards {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .showcase-content {
        padding-right: 0;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.4s;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        padding: 50px 0;
        gap: 30px;
        height: calc(100vh - 90px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a::after {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }

    .features-grid,
    .trust-grid,
    .contact-grid,
    .certs-grid,
    .leaders-grid,
    .leadership-grid,
    .timeline-grid,
    .faq-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .category-head {
        flex-direction: column;
        text-align: center;
    }

    .category-badge {
        margin: 0;
    }

    .single-product {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .page-header {
        padding: 80px 0 50px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .showcase-grid {
        padding: 40px 30px;
    }
    
    .showcase-image {
        padding: 40px 30px;
    }
    
    .showcase-image i {
        font-size: 5rem;
    }
    
    .single-icon {
        width: 140px;
        height: 140px;
    }
    
    .single-icon i {
        font-size: 4.5rem;
    }
    
    .single-content h3 {
        font-size: 2rem;
    }
    
    .form-box,
    .map-box {
        padding: 40px 30px;
    }
    
    .location-card {
        padding: 50px 30px;
    }
    
    .location-card h2 {
        font-size: 2.2rem;
    }
    
    .cert-modal-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 2.4rem;
    }
    
    .hero-cards {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .product-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-header h3 {
        font-size: 1.5rem;
    }
    
    .pack {
        width: 100%;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 35px 20px;
    }
    
    .leader-card {
        padding: 35px 20px;
    }
    
    .leader-photo {
        width: 140px;
        height: 140px;
    }
    
    .faq-item {
        padding: 30px 25px;
    }
    
    .modal-content {
        padding: 40px 30px;
    }
    
    .modal-content h3 {
        font-size: 1.8rem;
    }
    
    .cert-modal-caption {
        font-size: 1rem;
    }
}