/* ============================================
   JCK Solar Private Limited - Main Stylesheet
   Complete Multi-Page Website
   ============================================ */

/* ==================== CSS Variables ==================== */
:root {
    --primary: #E53935;
    --primary-light: #EF5350;
    --primary-dark: #C62828;
    --secondary: #2E7D32;
    --secondary-light: #43A047;
    --secondary-dark: #1B5E20;
    --accent: #0EA5E9;
    --dark: #1F2937;
    --dark-light: #374151;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --light: #F3F4F6;
    --lighter: #F9FAFB;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    --gradient-dark: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 10px 40px rgba(229, 57, 53, 0.3);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ==================== Reset & Base ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ==================== Utilities ==================== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-dark { background: var(--gradient-dark); color: var(--white); }
.section-light { background: var(--lighter); }
.section-header { text-align: center; margin-bottom: 60px; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; background: rgba(229, 57, 53, 0.1);
    color: var(--primary-dark); font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px;
    border-radius: var(--radius-full); margin-bottom: 20px;
}
.section-dark .section-badge { background: rgba(229, 57, 53, 0.2); color: var(--primary); }
.section-title { font-size: clamp(32px, 5vw, 48px); margin-bottom: 20px; }
.section-dark .section-title { color: var(--white); }
.section-desc { font-size: 18px; color: var(--gray); line-height: 1.8; }
.section-dark .section-desc { color: var(--gray-light); }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 32px; font-family: var(--font-display); font-size: 15px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    border: none; border-radius: var(--radius-full); cursor: pointer;
    transition: var(--transition);
}
.btn-primary { background: var(--gradient-primary); color: var(--white); box-shadow: var(--shadow-primary); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(229, 57, 53, 0.4); }
.btn-secondary { background: var(--gradient-secondary); color: var(--white); }
.btn-secondary:hover { transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--light); transform: translateY(-3px); }
.btn-sm { padding: 12px 24px; font-size: 13px; }
.btn-lg { padding: 20px 40px; font-size: 16px; }

/* ==================== Navigation ==================== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 15px 0; background: var(--white); box-shadow: var(--shadow);
    transition: var(--transition);
}
.navbar.transparent { background: transparent; box-shadow: none; }
.navbar.scrolled { background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); box-shadow: var(--shadow-md); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 45px; height: 45px; background: var(--gradient-primary);
    border-radius: var(--radius); display: flex; align-items: center;
    justify-content: center; font-size: 20px; color: var(--white);
}
.logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--dark); }
.logo-text span { color: var(--primary); }
.navbar.transparent .logo-text { color: var(--white); }
.navbar.scrolled .logo-text { color: var(--dark); }
.nav-links { display: flex; align-items: center; gap: 5px; }
.nav-links a {
    padding: 10px 18px; font-size: 15px; font-weight: 500; color: var(--dark);
    border-radius: var(--radius); position: relative;
}
.navbar.transparent .nav-links a { color: rgba(255,255,255,0.9); }
.navbar.scrolled .nav-links a { color: var(--dark); }
.nav-links a:hover { background: rgba(245, 158, 11, 0.1); color: var(--primary); }
.nav-links a.active { color: var(--primary); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-toggle::after { content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-left: 6px; font-size: 12px; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 240px;
    background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
    padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: var(--transition);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
    display: block; padding: 12px 20px; color: var(--dark) !important; font-size: 14px;
}
.dropdown-menu a:hover { background: var(--light); color: var(--primary) !important; }
.dropdown-menu a.active { color: var(--primary) !important; }
.nav-cta {
    padding: 12px 24px !important; background: var(--gradient-primary) !important;
    color: var(--white) !important; border-radius: var(--radius-full) !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-primary); background: var(--gradient-primary) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; }
.nav-toggle span { width: 25px; height: 3px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.navbar.transparent .nav-toggle span { background: var(--white); }

/* ==================== Page Header ==================== */
.page-header {
    padding: 160px 0 100px; background: var(--gradient-dark);
    position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(5, 150, 105, 0.1) 0%, transparent 50%);
}
.page-header-content { position: relative; z-index: 1; text-align: center; }
.page-header h1 { font-size: clamp(36px, 6vw, 56px); color: var(--white); margin-bottom: 20px; }
.page-header p { font-size: 20px; color: rgba(255,255,255,0.8); max-width: 700px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 10px; margin-top: 25px; }
.breadcrumb a, .breadcrumb span { font-size: 14px; color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb i { font-size: 10px; }

/* ==================== Hero Section ==================== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background: var(--gradient-dark); overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(5, 150, 105, 0.1) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 120px 0 80px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 20px; background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full); font-size: 14px; font-weight: 500;
    color: var(--white); margin-bottom: 30px;
}
.hero-badge i { color: var(--primary); }
.hero-title { font-size: clamp(40px, 7vw, 72px); color: var(--white); margin-bottom: 25px; line-height: 1.1; }
.hero-title .highlight { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 20px; color: rgba(255,255,255,0.85); margin-bottom: 40px; line-height: 1.8; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 20px; }
.hero-stats { display: flex; gap: 60px; margin-top: 80px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.stat-item { text-align: left; }
.stat-number { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }

/* ==================== Cards ==================== */
.card {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); transition: var(--transition); overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-img { height: 220px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 30px; }
.card-title { font-size: 22px; margin-bottom: 15px; }
.card-text { color: var(--gray); margin-bottom: 20px; }

/* Service Cards */
.service-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 40px 30px;
    text-align: center; box-shadow: var(--shadow); transition: var(--transition);
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient-primary); transform: scaleX(0); transition: var(--transition);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 80px; height: 80px; margin: 0 auto 25px;
    background: rgba(229, 57, 53, 0.1); border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: var(--primary); transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gradient-primary); color: var(--white); transform: scale(1.1); }
.service-card h3 { font-size: 22px; margin-bottom: 15px; }
.service-card p { color: var(--gray); margin-bottom: 25px; line-height: 1.7; }
.service-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.service-link i { transition: var(--transition); }
.service-link:hover i { transform: translateX(5px); }

/* Feature Cards */
.feature-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 30px;
    box-shadow: var(--shadow); transition: var(--transition);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature-icon {
    width: 60px; height: 60px; background: rgba(229, 57, 53, 0.1);
    border-radius: var(--radius); display: flex; align-items: center;
    justify-content: center; font-size: 26px; color: var(--primary); margin-bottom: 20px;
}
.feature-card h4 { font-size: 18px; margin-bottom: 12px; }
.feature-card p { color: var(--gray); font-size: 15px; line-height: 1.7; }

/* ==================== Grids ==================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; align-items: start; }
.grid-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* ==================== Content Styles ==================== */
.content-block { margin-bottom: 60px; }
.content-block:last-child { margin-bottom: 0; }
.content-block h2 { font-size: 32px; margin-bottom: 20px; color: var(--dark); }
.content-block h3 { font-size: 24px; margin-bottom: 15px; color: var(--dark); }
.content-block h4 { font-size: 20px; margin-bottom: 12px; color: var(--dark); }
.content-block p { color: var(--gray); margin-bottom: 20px; line-height: 1.8; }
.content-block ul { margin-bottom: 20px; }
.content-block ul li {
    position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--dark-light);
}
.content-block ul li::before {
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; left: 0; top: 2px; color: var(--secondary); font-size: 14px;
}
.highlight-box {
    background: rgba(245, 158, 11, 0.1); border-left: 4px solid var(--primary);
    padding: 25px 30px; border-radius: 0 var(--radius) var(--radius) 0; margin: 30px 0;
}
.highlight-box h4 { color: var(--primary-dark); margin-bottom: 10px; }
.highlight-box p { margin-bottom: 0; }

/* ==================== Tables ==================== */
.table-container { overflow-x: auto; margin: 30px 0; }
table {
    width: 100%; border-collapse: collapse; background: var(--white);
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
table th, table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--light); }
table th { background: var(--dark); color: var(--white); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
table tr:last-child td { border-bottom: none; }
table tr:hover td { background: var(--lighter); color: var(--dark) !important; }
table td { color: var(--dark-light); }

/* ==================== Tabs ==================== */
.tabs { margin: 40px 0; }
.tab-nav { display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.tab-btn {
    padding: 14px 28px; background: var(--light); border: none;
    border-radius: var(--radius-full); font-family: var(--font-display);
    font-size: 15px; font-weight: 600; color: var(--gray); cursor: pointer;
    transition: var(--transition);
}
.tab-btn:hover { background: var(--gray-light); color: var(--dark); }
.tab-btn.active { background: var(--gradient-primary); color: var(--white); box-shadow: var(--shadow-primary); }
.tab-content { display: none; animation: fadeIn 0.5s ease; }
.tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ==================== Accordion ==================== */
.accordion { margin: 30px 0; }
.accordion-item { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 15px; overflow: hidden; }
.accordion-header {
    padding: 20px 25px; cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; font-weight: 600; color: var(--dark); transition: var(--transition);
}
.accordion-header:hover { background: var(--lighter); }
.accordion-header i { transition: var(--transition); color: var(--primary); }
.accordion-item.active .accordion-header i { transform: rotate(180deg); }
.accordion-body { padding: 0 25px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.accordion-item.active .accordion-body { padding: 0 25px 25px; max-height: 1000px; }

/* ==================== Image Gallery ==================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
    position: relative; border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    opacity: 0; transition: var(--transition); z-index: 1;
}
.gallery-item:hover::before { opacity: 1; }

/* ==================== Stats Section ==================== */
.stats-section { background: var(--gradient-primary); padding: 80px 0; position: relative; overflow: hidden; }
.stats-section::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; position: relative; z-index: 1; }
.stats-item { text-align: center; color: var(--white); }
.stats-item .icon { font-size: 48px; margin-bottom: 15px; opacity: 0.9; }
.stats-item .number { font-family: var(--font-display); font-size: 56px; font-weight: 700; line-height: 1; margin-bottom: 10px; }
.stats-item .label { font-size: 16px; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; }

/* ==================== Why Choose Us ==================== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.why-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg); padding: 35px 25px; text-align: center;
    transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.why-icon {
    width: 70px; height: 70px; margin: 0 auto 20px;
    background: var(--gradient-primary); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; color: var(--white);
}
.why-card h4 { font-size: 18px; color: var(--white); margin-bottom: 12px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ==================== CTA Section ==================== */
.cta-section { background: var(--lighter); padding: 100px 0; }
.cta-box {
    background: var(--gradient-dark); border-radius: var(--radius-xl);
    padding: 80px; text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 1; }
.cta-box h2 { font-size: clamp(28px, 4vw, 42px); color: var(--white); margin-bottom: 20px; }
.cta-box p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ==================== Contact ==================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info h3 { font-size: 28px; margin-bottom: 20px; }
.contact-info > p { color: var(--gray); margin-bottom: 40px; line-height: 1.8; }
.contact-items { display: flex; flex-direction: column; gap: 25px; }
.contact-item { display: flex; align-items: flex-start; gap: 20px; }
.contact-item-icon {
    width: 55px; height: 55px; background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius); display: flex; align-items: center;
    justify-content: center; font-size: 22px; color: var(--primary); flex-shrink: 0;
}
.contact-item-content h5 { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.contact-item-content p, .contact-item-content a { font-size: 17px; color: var(--dark); }
.contact-item-content a:hover { color: var(--primary); }
.contact-form {
    background: var(--white); border-radius: var(--radius-xl);
    padding: 50px; box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 16px 20px; border: 2px solid var(--light);
    border-radius: var(--radius); font-size: 15px; color: var(--dark);
    background: var(--lighter); transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary); background: var(--white);
}
.form-group textarea { min-height: 150px; resize: vertical; }

/* ==================== Footer ==================== */
.footer { background: var(--dark); color: var(--white); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { color: rgba(255,255,255,0.7); margin: 25px 0; line-height: 1.8; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 45px; height: 45px; background: rgba(255,255,255,0.1);
    border-radius: var(--radius); display: flex; align-items: center;
    justify-content: center; font-size: 18px; color: var(--white);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gradient-primary); transform: translateY(-3px); }
.footer h4 { font-size: 18px; margin-bottom: 25px; position: relative; padding-bottom: 15px; color: #ffffff; }
.footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary); border-radius: 2px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 15px; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; color: rgba(255,255,255,0.7); font-size: 15px; }
.footer-contact i { color: var(--primary); font-size: 18px; margin-top: 3px; }
.footer-bottom {
    padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 20px;
}
.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 14px; }

/* ==================== Scroll Top ==================== */
.scroll-top {
    position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px;
    background: var(--gradient-primary); color: var(--white); border: none;
    border-radius: var(--radius); font-size: 20px; cursor: pointer;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: var(--transition); box-shadow: var(--shadow-primary); z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-5px); }

/* ==================== Animations ==================== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.slide-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.6s ease, transform 0.6s ease; }
.slide-left.visible { opacity: 1; transform: translateX(0); }
.slide-right { opacity: 0; transform: translateX(50px); transition: opacity 0.6s ease, transform 0.6s ease; }
.slide-right.visible { opacity: 1; transform: translateX(0); }

/* ==================== Responsive ==================== */
@media (max-width: 1200px) {
    .stats-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .grid-2, .grid-equal, .contact-grid { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
        background: var(--white); flex-direction: column; justify-content: center;
        gap: 10px; padding: 20px; transition: var(--transition); box-shadow: var(--shadow-xl);
    }
    .nav-links.active { right: 0; }
    .nav-links a { color: var(--dark); font-size: 18px; padding: 15px 20px; }
    .dropdown-menu { position: static; box-shadow: none; padding-left: 20px; opacity: 1; visibility: visible; transform: none; display: none; }
    .dropdown.active .dropdown-menu { display: block; }
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
    .hero-stats { flex-wrap: wrap; gap: 40px; }
    .stat-number { font-size: 36px; }
    .grid-3, .grid-4, .why-grid, .stats-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-box { padding: 50px 30px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer h4::after { left: 50%; transform: translateX(-50%); }
    .footer-social, .footer-contact li { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section { padding: 70px 0; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 30px; }
    .table-container { margin: 20px -24px; padding: 0 24px; }
}
@media (max-width: 480px) {
    .hero-buttons, .cta-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn, .cta-buttons .btn { width: 100%; }
    .gallery-grid { grid-template-columns: 1fr; }
    .tab-nav { flex-direction: column; }
    .tab-btn { width: 100%; }
}

/* ==================== Logo Image ==================== */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 50px; width: auto; }
.logo-content { display: flex; flex-direction: column; line-height: 1.3; }
.logo-text { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--dark); letter-spacing: 0.3px; white-space: nowrap; }
.logo-text span { color: var(--primary); }
.slogan { font-size: 10px; color: var(--gray); font-style: italic; letter-spacing: 0.2px; margin-top: 2px; display: block; }
.navbar.scrolled .logo-text { color: var(--dark); }
.navbar.scrolled .slogan { color: var(--gray); }

/* ==================== Vision & Mission Fix ==================== */
.vision-mission-section { display: block !important; visibility: visible !important; opacity: 1 !important; }
.vision-mission-section .card { display: block !important; visibility: visible !important; opacity: 1 !important; min-height: 300px; }

