/* =========================================
   1. CORE VARIABLES & RESET
   ========================================= */
:root {
    --primary: #003366; /* Royal Blue */
    --secondary: #FF9900; /* Gold */
    --dark: #001a33;
    --light: #f4f7f6;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.95);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; scroll-behavior: smooth; }
body { background: var(--light); color: #333; overflow-x: hidden; }

/* =========================================
   2. UTILITIES & ANIMATIONS
   ========================================= */
.scroll-progress { position: fixed; top: 0; left: 0; width: 0%; height: 4px; background: var(--secondary); z-index: 1001; }

.hidden-up { opacity: 0; transform: translateY(30px); transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.hidden-left { opacity: 0; transform: translateX(-50px); transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.hidden-right { opacity: 0; transform: translateX(50px); transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.show { opacity: 1; transform: translate(0); }

.ripple { position: relative; overflow: hidden; }
.shine-effect { position: relative; overflow: hidden; }
.shine-effect::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}
.shine-effect:hover::before { left: 100%; transition: 0.5s; }

.pulse-icon { animation: pulse 2s infinite; }
@keyframes pulse { 
    0% { transform: scale(1); opacity: 1; } 
    50% { transform: scale(1.1); opacity: 0.7; } 
    100% { transform: scale(1); opacity: 1; } 
}

/* SECTION DIVIDER LINE */
.section-divider {
    height: 1px;
    background: #e0e0e0;
    width: 100%;
    margin: 0;
    border: none;
    opacity: 0.6;
}

/* --- NEW 3D STYLES --- */
/* 3D Floating Cube Background */
.cube {
    position: absolute; width: 60px; height: 60px;
    transform-style: preserve-3d;
    animation: rotate 20s infinite linear;
    opacity: 0.15; z-index: 0;
}
.cube-1 { top: 15%; left: 10%; animation-duration: 25s; }
.cube-2 { bottom: 20%; right: 10%; animation-duration: 30s; animation-direction: reverse; width: 40px; height: 40px; }

.face {
    position: absolute; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.front  { transform: rotateY(0deg) translateZ(30px); }
.back   { transform: rotateY(180deg) translateZ(30px); }
.right  { transform: rotateY(90deg) translateZ(30px); }
.left   { transform: rotateY(-90deg) translateZ(30px); }
.top    { transform: rotateX(90deg) translateZ(30px); }
.bottom { transform: rotateX(-90deg) translateZ(30px); }

@keyframes rotate {
    from { transform: rotateX(0deg) rotateY(0deg); }
    to { transform: rotateX(360deg) rotateY(360deg); }
}

/* 3D Card Tilt Base Style (Script handles the transform) */
.tilt-card {
    transition: transform 0.1s ease;
    will-change: transform;
    perspective: 1000px;
}

/* =========================================
   3. NAVBAR
   ========================================= */
.navbar { position: fixed; width: 100%; top: 0; z-index: 1000; padding: 15px 0; transition: 0.3s; background: transparent; }
.navbar.scrolled { background: var(--white); box-shadow: 0 2px 15px rgba(0,0,0,0.1); padding: 10px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }

.logo { font-size: 1.4rem; font-weight: 700; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.navbar.scrolled .logo { color: var(--primary); }
.logo span { color: var(--secondary); }

/* Logo Image Styling */
.logo-img {
    height: 60px; /* Increased slightly for visibility */
    width: auto;
    border-radius: 5px;
    object-fit: contain;
}

.nav-menu { display: flex; gap: 25px; list-style: none; }
.nav-link { color: rgba(255,255,255,0.9); font-weight: 500; text-decoration: none; font-size: 0.95rem; position: relative; }
.nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background: var(--secondary); transition: 0.3s; }
.nav-link:hover::after { width: 100%; }
.navbar.scrolled .nav-link { color: var(--dark); }

.btn-login { background: var(--secondary); color: var(--white); padding: 8px 25px; border-radius: 50px; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: radial-gradient(circle at center, #004080 0%, #001a33 100%); overflow: hidden; color: var(--white); padding-top: 80px; padding-bottom: 50px; }
#particle-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }

.floating-icon { position: absolute; color: rgba(255,255,255,0.05); font-size: 5rem; animation: float 6s ease-in-out infinite; z-index: 0; }
.icon-1 { top: 15%; left: 10%; animation-delay: 0s; }
.icon-2 { bottom: 20%; left: 40%; font-size: 8rem; animation-delay: 2s; }
.icon-3 { top: 20%; right: 10%; animation-delay: 4s; }
@keyframes float { 0% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-20px) rotate(5deg); } 100% { transform: translateY(0px) rotate(0deg); } }

.hero-content { display: flex; width: 100%; justify-content: space-between; align-items: center; gap: 40px; z-index: 2; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 15px; font-weight: 700; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.typewriter-text { color: var(--secondary); }
.hero-text p { font-size: 1rem; margin-bottom: 25px; opacity: 0.9; line-height: 1.6; }

.hero-btns { display: flex; gap: 15px; }
.btn-primary { background: var(--secondary); color: var(--white); border: none; cursor: pointer; padding: 12px 25px; border-radius: 5px; font-weight: 600; text-decoration: none; transition: 0.3s; }
.btn-secondary { border: 2px solid var(--white); color: var(--white); padding: 12px 25px; border-radius: 5px; font-weight: 600; text-decoration: none; transition: 0.3s; }
.btn-secondary:hover { background: var(--white); color: var(--primary); }

.hero-card {
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(15px); border-radius: 20px;
    padding: 25px; width: 100%; max-width: 420px; color: var(--dark);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.2);
}

/* =========================================
   5. GOAL PLANNER STYLES
   ========================================= */
.planner-header { border-bottom: 1px solid #eee; padding-bottom: 15px; margin-bottom: 20px; position: relative; }
.planner-header h3 { color: var(--primary); font-size: 1.1rem; display: flex; align-items: center; gap: 10px; margin: 0; }

.progress-bar-bg { width: 100%; height: 4px; background: #eee; border-radius: 2px; margin-top: 10px; }
.progress-bar-fill { width: 20%; height: 100%; background: var(--secondary); border-radius: 2px; transition: width 0.4s ease; }

.planner-step { display: none; animation: slideIn 0.5s ease; }
.planner-step.active { display: block; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

.question-label { display: block; font-size: 1rem; color: var(--dark); font-weight: 600; margin-bottom: 10px; }
.mt-3 { margin-top: 15px; }

.input-wrapper-icon { position: relative; margin-bottom: 20px; }
.input-wrapper-icon i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--primary); font-size: 1.1rem; }
.input-wrapper-icon input, .input-wrapper-icon select {
    width: 100%; padding: 12px 12px 12px 45px; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem; outline: none; transition: 0.3s; background: #f9f9f9;
}
.input-wrapper-icon input:focus, .input-wrapper-icon select:focus { border-color: var(--secondary); background: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }

.range-display { text-align: center; font-size: 1.2rem; font-weight: 700; color: var(--secondary); margin-bottom: 5px; }
input[type="range"] { width: 100%; accent-color: var(--secondary); cursor: pointer; }

.btn-group { display: flex; gap: 10px; margin-top: 10px; }
.btn-next, .btn-calc { flex: 1; padding: 12px; border: none; border-radius: 5px; cursor: pointer; font-weight: 600; color: #fff; font-size: 1rem; transition: 0.3s; }
.btn-next { background: var(--primary); }
.btn-next:hover { background: #004080; }
.btn-prev { padding: 12px 20px; border: 1px solid #ddd; background: transparent; border-radius: 5px; cursor: pointer; font-weight: 600; color: #666; }
.btn-prev:hover { background: #eee; }
.btn-calc { background: #28a745; }
.btn-calc:hover { background: #218838; transform: scale(1.02); }

.result-display { text-align: center; padding: 20px 0; }
.result-display h4 { color: #28a745; font-size: 1.5rem; margin-bottom: 15px; }
.result-display p { font-size: 0.95rem; color: #555; }
.result-display span { font-weight: 700; color: var(--primary); }

.sip-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: #fff; padding: 20px; border-radius: 10px; margin: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2); animation: popUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popUp { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.sip-box h2 { font-size: 2.2rem; margin: 5px 0 0; color: var(--secondary); }
.note { font-size: 0.75rem; color: #999; }
.btn-reset { background: transparent; border: none; color: var(--primary); text-decoration: underline; cursor: pointer; margin-top: 10px; }

/* =========================================
   6. STATS SECTION
   ========================================= */
.stats-section { padding: 40px 0; background: var(--white); margin-top: -30px; position: relative; z-index: 3; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border-radius: 20px 20px 0 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.stat-box h2 { font-size: 2rem; color: var(--primary); }
.stat-box i { font-size: 2rem; color: var(--secondary); margin-bottom: 10px; }

.section { padding: 80px 0; }
.bg-light { background: #f8f9fa; }

/* =========================================
   7. PARTNER & SERVICES SECTION
   ========================================= */
.partner-container-block { display: block !important; }

/* Header */
.partner-top-header { text-align: left; margin-bottom: 50px; width: 100%; }
.partner-top-header h2 { color: var(--primary); font-size: 2.5rem; font-weight: 700; margin-bottom: 10px; }
.green-line { width: 80px; height: 5px; background: #28a745; border-radius: 3px; }

/* Grids */
.partner-grid-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 60px; width: 100%; }

/* Card Style */
.partner-card-white {
    background: var(--white); padding: 30px 15px; border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); text-align: center;
    transition: transform 0.3s ease; border: 1px solid #f0f0f0;
    height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
}
.partner-card-white:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--secondary); }

.p-icon-box { font-size: 2.5rem; margin-bottom: 20px; color: var(--secondary); }
.partner-card-white h3 { font-size: 0.95rem; font-weight: 700; color: #222; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.partner-card-white p { font-size: 0.85rem; color: #666; line-height: 1.5; }

/* Services Carousel */
.carousel-container { position: relative; display: flex; align-items: center; overflow: hidden; padding: 20px 0; }
.carousel-track {
    display: flex; gap: 20px; overflow-x: auto; scroll-behavior: smooth;
    scrollbar-width: none; padding: 10px; width: 100%;
    /* Snapping */
    scroll-snap-type: x mandatory;
}
.carousel-track::-webkit-scrollbar { display: none; }

.service-slide-card, .testimonial-card {
    min-width: 280px; background: var(--white); padding: 35px 25px; border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); text-align: center; border: 1px solid #f0f0f0;
    transition: all 0.4s ease; display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
    flex-shrink: 0;
    /* Snap align */
    scroll-snap-align: start;
}
.service-slide-card:hover, .testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: var(--secondary); }
.carousel-btn {
    background: var(--primary); color: white; border: none; width: 45px; height: 45px; border-radius: 50%;
    cursor: pointer; z-index: 10; font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: 0.3s;
}
.carousel-btn:hover { background: var(--secondary); transform: scale(1.1); }
.carousel-btn.prev { margin-right: 15px; }
.carousel-btn.next { margin-left: 15px; }

/* Buttons & Disclaimer */
.partner-cta-container { text-align: center; width: 100%; }
.btn-partner-join {
    background: var(--primary); color: var(--white); padding: 15px 50px;
    border-radius: 50px; font-weight: 600; font-size: 1.1rem; text-decoration: none;
    transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.btn-partner-join:hover { background: var(--secondary); color: var(--white); transform: translateY(-2px); }

.disclaimer-small { 
    font-size: 0.85rem; color: #888; margin-top: 20px; font-style: italic; text-align: center; 
    background: #f0f2f5; padding: 15px; border-radius: 8px; border-left: 4px solid #aaa; 
}

/* =========================================
   8. CALCULATOR SECTION
   ========================================= */
.calc-wrapper {
    background: var(--white); border-radius: 20px; padding: 40px;
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px;
    align-items: center; box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.calc-toggle-box { background: #f0f2f5; display: flex; border-radius: 30px; padding: 5px; margin-bottom: 30px; }
.calc-tab {
    flex: 1; border: none; padding: 10px; border-radius: 25px; cursor: pointer; font-weight: 600; background: transparent; color: #666; transition: 0.3s;
}
.calc-tab.active { background: var(--primary); color: var(--white); box-shadow: 0 5px 15px rgba(0,51,102,0.2); }

.calc-input-group { margin-bottom: 25px; }
.label-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-weight: 600; }
.calc-val-display { color: var(--primary); background: #eef4fc; padding: 2px 10px; border-radius: 5px; }

.calc-summary-text { margin-top: 30px; background: #f9f9f9; padding: 20px; border-radius: 15px; }
.summary-item { display: flex; justify-content: space-between; margin-bottom: 10px; align-items: center; }
.summary-item h4 { margin: 0; font-size: 1.1rem; }
.summary-item.total { border-top: 1px solid #ddd; margin-top: 10px; padding-top: 10px; }
.summary-item.total h3 { margin: 0; color: var(--primary); font-size: 1.4rem; }

/* =========================================
   9. TESTIMONIALS (Carousel Card Styles)
   ========================================= */
.testimonial-card {
    justify-content: space-between; text-align: left;
}
.quote-icon { font-size: 1.5rem; color: #eee; margin-bottom: 15px; width: 100%; text-align: left; }
.review-text { font-size: 0.9rem; color: #555; font-style: italic; line-height: 1.6; margin-bottom: 20px; }

.reviewer-profile { display: flex; align-items: center; gap: 15px; width: 100%; }
.avatar {
    width: 45px; height: 45px; background: var(--primary); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem;
}
.reviewer-profile .info h4 { font-size: 0.95rem; margin: 0; color: var(--dark); font-weight: 600; }
.reviewer-profile .info .stars { color: var(--secondary); font-size: 0.8rem; margin-top: 3px; }
.reviewer-profile .info .stars span { color: #999; font-size: 0.75rem; margin-left: 5px; }

/* =========================================
   10. ABOUT PAGE STYLES (Kept for compatibility)
   ========================================= */
.page-header { background: linear-gradient(135deg, var(--primary) 0%, #001a33 100%); padding: 140px 0 80px; color: var(--white); text-align: center; position: relative; }
.page-header::after { content: ''; position: absolute; bottom: -20px; left: 0; width: 100%; height: 50px; background: var(--light); border-radius: 50% 50% 0 0; }
.welcome-box { background: var(--white); padding: 50px; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.08); text-align: center; max-width: 900px; margin: -60px auto 0; position: relative; z-index: 10; border-top: 5px solid var(--secondary); }
.lead-text { font-size: 1.25rem; font-weight: 500; color: #555; margin-bottom: 25px; }
.highlight-text { color: var(--secondary); font-weight: 700; font-size: 1.2rem; margin-top: 20px; display: block; }

.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: center; }
.sub-heading { color: var(--secondary); font-weight: 700; letter-spacing: 2px; font-size: 0.9rem; display: block; margin-bottom: 10px; }
.about-content h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 25px; }
.about-content p { margin-bottom: 15px; line-height: 1.7; color: #555; }
.quote-box { border-left: 4px solid var(--secondary); padding: 20px 25px; margin: 30px 0; font-style: italic; color: var(--primary); background: #e6f0ff; border-radius: 0 10px 10px 0; }

.about-card { background: var(--white); padding: 40px; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); text-align: center; border: 1px solid #eee; position: relative; }
.about-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--secondary); border-radius: 20px 20px 0 0; }

/* Founder Image Styling */
.founder-img {
    width: 150px; height: 150px; border-radius: 50%; object-fit: cover;
    border: 4px solid var(--light); box-shadow: 0 5px 15px rgba(0,0,0,0.1); margin-bottom: 20px;
}

.arn { background: var(--primary); color: var(--white); display: inline-block; padding: 6px 18px; border-radius: 20px; font-size: 0.9rem; margin: 10px 0 25px; font-weight: 600; }
.values-list { list-style: none; text-align: left; padding: 0; display: inline-block; }
.values-list li { margin-bottom: 12px; color: var(--dark); font-weight: 500; display: flex; align-items: center; }
.values-list i { color: #28a745; margin-right: 12px; background: #e8f5e9; padding: 5px; border-radius: 50%; font-size: 0.8rem; }
.services-modern-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.service-card-landscape { background: var(--white); padding: 25px; border-radius: 12px; position: relative; box-shadow: 0 4px 10px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 20px; border-left: 5px solid transparent; }
.service-card-landscape:hover { transform: translateX(5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); border-left-color: var(--secondary); }
.svc-icon-box { width: 60px; height: 60px; flex-shrink: 0; background: #eef4fc; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.5rem; transition: 0.4s; }
.service-card-landscape:hover .svc-icon-box { background: var(--primary); color: var(--white); transform: rotateY(360deg); }
.svc-content h4 { font-size: 1.1rem; color: var(--dark); margin-bottom: 5px; font-weight: 600; }
.svc-content p { font-size: 0.9rem; color: #666; margin-bottom: 0; line-height: 1.4; }

/* =========================================
   11. CONTACT & FOOTER
   ========================================= */
.contact-section { background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%); padding: 80px 0; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.contact-info { background: var(--primary); color: var(--white); padding: 40px; position: relative; overflow: hidden; }
.contact-info::before { content: ''; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; background: rgba(255,255,255,0.1); border-radius: 50%; }
.info-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
.c-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; transition: 0.3s; }
.info-item a { color: var(--white); text-decoration: none; border-bottom: 1px dashed rgba(255,255,255,0.5); }
.contact-form-box { padding: 40px; background: var(--white); }
.input-group-modern { position: relative; margin-bottom: 25px; }
.input-group-modern input { width: 100%; padding: 12px 10px; border: 1px solid #ddd; border-radius: 5px; outline: none; transition: 0.3s; font-size: 1rem; background: transparent; }
.input-group-modern label { position: absolute; left: 10px; top: 12px; color: #999; transition: 0.3s; pointer-events: none; background: var(--white); padding: 0 5px; }
.input-group-modern input:focus, .input-group-modern input:not(:placeholder-shown) { border-color: var(--secondary); }
.input-group-modern input:focus ~ label, .input-group-modern input:not(:placeholder-shown) ~ label { top: -10px; font-size: 0.8rem; color: var(--secondary); }
.full-width { width: 100%; }

.compliance-section { background: #1a1a1a; color: #ccc; padding: 60px 0; border-top: 5px solid var(--secondary); }
.compliance-box { max-width: 900px; margin: 0 auto; text-align: left; font-size: 0.95rem; line-height: 1.7; }
.compliance-box h4 { color: var(--white); margin-bottom: 15px; border-left: 4px solid var(--secondary); padding-left: 15px; text-transform: uppercase; font-size: 1rem; letter-spacing: 1px; margin-top: 30px; }
.compliance-box h4:first-child { margin-top: 0; }
.distributor-signature { margin-top: 40px; padding: 20px; border: 1px dashed rgba(255,255,255,0.2); border-radius: 8px; display: inline-block; }
.distributor-signature strong { color: var(--secondary); display: block; font-size: 1.1rem; margin-bottom: 5px; }

footer { background: #0b1116; color: #ccc; padding: 50px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 30px; }
.footer-col h3 { color: var(--white); margin-bottom: 15px; font-size: 1.2rem; }
.footer-col p { margin-bottom: 10px; font-size: 0.9rem; }
.social-links { margin-top: 15px; }
.social-links a { color: #ccc; margin-right: 15px; font-size: 1.2rem; transition: 0.3s; }
.social-links a:hover { color: var(--secondary); transform: translateY(-3px); display: inline-block; }
.footer-bottom { border-top: 1px solid #222; padding-top: 20px; text-align: center; font-size: 0.85rem; }

/* =========================================
   12. MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
    .hero-content { flex-direction: column; text-align: center; padding-top: 20px; }
    .hero-text { margin-bottom: 40px; width: 100%; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-btns { justify-content: center; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .calc-wrapper { grid-template-columns: 1fr; gap: 30px; }
    
    /* 2 Columns on Tablet */
    .partner-grid-row { grid-template-columns: repeat(2, 1fr); }
    .services-modern-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; cursor: pointer; }
    .bar { display: block; width: 25px; height: 3px; background: var(--white); margin: 5px 0; transition: 0.3s; }
    .navbar.scrolled .bar { background: var(--primary); }
    .nav-menu { position: fixed; left: -100%; top: 60px; flex-direction: column; background: var(--white); width: 100%; padding: 30px 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); transition: 0.3s; border-top: 1px solid #eee; height: auto; gap: 20px; }
    .nav-menu.active { left: 0; }
    .nav-link { color: var(--dark); font-size: 1.1rem; display: block; text-align: center; }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--primary); }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--primary); }

    .stats-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-info, .contact-form-box { padding: 30px 20px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .welcome-box { padding: 30px 20px; margin-top: -40px; }
    .partner-grid-row { grid-template-columns: 1fr; } 
    .services-modern-grid { grid-template-columns: 1fr; gap: 15px; }
    .service-card-landscape { padding: 20px; }
}

@media (max-width: 600px) {
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns a { width: 100%; justify-content: center; }
    .partner-top-header { text-align: center; }
    .green-line { margin: 0 auto; }
}
