/* ============================================================
   ULTRA MODERN CORPORATE SITE - MAIN CSS v2.0
   ============================================================ */

:root {
    --navy:        #0a1628;
    --navy-light:  #102040;
    --navy-mid:    #162040;
    --primary:     #1565c0;
    --primary-h:   #1976d2;
    --primary-light: rgba(21,101,192,0.12);
    --accent:      #f59e0b;
    --accent-h:    #fbbf24;
    --text-dark:   #0f172a;
    --text-body:   #334155;
    --text-muted:  #64748b;
    --bg-light:    #f8fafc;
    --bg-section:  #f1f5f9;
    --white:       #ffffff;
    --radius:      16px;
    --radius-lg:   24px;
    --shadow:      0 4px 24px rgba(15,23,42,0.08);
    --shadow-lg:   0 16px 48px rgba(15,23,42,0.14);
    --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}
img { max-width: 100%; }
a { text-decoration: none; }

/* ============================================================
   UTILITY
   ============================================================ */
.py-section { padding: 5rem 0; }
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-title span { color: var(--primary); }
.section-desc { color: var(--text-muted); max-width: 560px; line-height: 1.8; }

/* ============================================================
   NAVBAR — Glassmorphism + scroll-solid
   ============================================================ */
.navbar-main {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1050;
    padding: 1rem 0;
    background: rgba(10, 22, 40, 0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}
.navbar-main.scrolled {
    background: rgba(10, 22, 40, 0.97) !important;
    padding: 0.6rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.navbar-main .navbar-nav .nav-link {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.navbar-main .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 16px; height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: transform 0.3s ease;
}
.navbar-main .navbar-nav .nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.navbar-main .navbar-nav .nav-link:hover::after,
.navbar-main .navbar-nav .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.navbar-main .navbar-nav .nav-link.active { color: #fff; }

.brand-text { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; }

.dropdown-menu-glass {
    background: rgba(10,22,40,0.92) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 14px !important;
    padding: 0.5rem !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4) !important;
    min-width: 220px;
}
.dropdown-menu-glass .dropdown-item {
    border-radius: 8px;
    padding: 0.55rem 1rem;
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.875rem;
    transition: var(--transition);
}
.dropdown-menu-glass .dropdown-item:hover {
    background: rgba(255,255,255,0.1) !important;
    color: #fff !important;
}

.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem; font-weight: 600;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
    text-decoration: none;
}
.lang-btn:hover { color: #fff; border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.1); }
.lang-btn-active { color: #fff !important; border-color: rgba(255,255,255,0.6) !important; background: rgba(255,255,255,0.15) !important; }

.btn-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-h) 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    display: inline-flex; align-items: center; gap: 6px;
    box-shadow: 0 4px 12px rgba(21,101,192,0.35);
}
.btn-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(21,101,192,0.45); color: #fff; }

.navbar-toggler { border: 1px solid rgba(255,255,255,0.3); padding: 6px 10px; border-radius: 8px; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

body { padding-top: 76px; }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-carousel { margin-top: -76px; }
.hero-slide {
    height: 680px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg,
        rgba(10,22,40,0.90) 0%,
        rgba(10,22,40,0.60) 50%,
        rgba(10,22,40,0.20) 100%
    );
}
.hero-content { position: relative; z-index: 2; padding-top: 76px; }
.hero-content h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 900; color: #fff; line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-h) 100%);
    color: var(--navy);
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.25rem;
}
.hero-content p { font-size: 1.15rem; color: rgba(255,255,255,0.85); max-width: 560px; line-height: 1.7; }
.hero-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0.875rem 2rem; border-radius: 50px;
    font-weight: 700; font-size: 0.9rem; letter-spacing: 0.5px;
    transition: var(--transition);
}
.hero-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-h) 100%);
    color: #fff; box-shadow: 0 8px 24px rgba(21,101,192,0.45);
}
.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(21,101,192,0.55); color: #fff; }
.hero-btn-outline {
    color: #fff; border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px); background: rgba(255,255,255,0.06);
}
.hero-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.12); color: #fff; }
.carousel-indicators [data-bs-target] {
    width: 8px; height: 8px; border-radius: 50%; opacity: 0.5; border: none;
    background: rgba(255,255,255,0.7); transition: var(--transition);
}
.carousel-indicators .active { opacity: 1; width: 24px; border-radius: 4px; background: var(--accent); }
.carousel-control-prev, .carousel-control-next {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px); border-radius: 50%;
    top: 50%; bottom: auto; transform: translateY(-50%);
    opacity: 0.7; transition: var(--transition);
}
.carousel-control-prev { left: 2rem; }
.carousel-control-next { right: 2rem; }
.carousel-control-prev:hover, .carousel-control-next:hover { opacity: 1; background: rgba(255,255,255,0.2); }

/* ============================================================
   SECTION HEADERS (legacy)
   ============================================================ */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800; color: var(--text-dark);
    position: relative; padding-bottom: 1rem; margin-bottom: 1rem;
}
.section-header h2::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 3px; background: var(--primary); border-radius: 2px;
}
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-img {
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(0,0,0,0.14);
    width: 100%; object-fit: cover;
}
.about-feature {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-light); border-radius: 12px;
    border: 1px solid rgba(21,101,192,0.08); transition: var(--transition);
}
.about-feature:hover { border-color: rgba(21,101,192,0.25); background: white; box-shadow: var(--shadow); }
.about-feature-icon { font-size: 1.4rem; color: var(--primary); flex-shrink: 0; }
.stat-box { text-align: center; padding: 2rem; }
.stat-box .stat-num { font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-box .stat-label { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.25rem; }

/* ============================================================
   COUNTER SECTION
   ============================================================ */
.counter-section {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2f5a 50%, var(--primary) 100%);
    color: white; padding: 5rem 0; position: relative; overflow: hidden;
}
.counter-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='%23ffffff' fill-opacity='0.03'%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/svg%3E");
}
.counter-item { text-align: center; position: relative; z-index: 1; }
.counter-num {
    font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 900; line-height: 1;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.counter-label { font-size: 0.9rem; opacity: 0.75; margin-top: 0.5rem; font-weight: 500; }
.counter-divider { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; }

/* ============================================================
   SERVICE & CARD STYLES
   ============================================================ */
.service-card {
    padding: 2rem; border-radius: var(--radius);
    background: white; border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition); height: 100%; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 64px; height: 64px; border-radius: 14px;
    background: var(--primary-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; color: var(--primary); margin-bottom: 1.25rem; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: #fff; transform: scale(1.1); }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.service-icon-wrap {
    width: 64px; height: 64px; border-radius: 16px;
    background: rgba(21,101,192,0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem; font-size: 1.75rem; color: var(--primary);
    transition: background 0.3s, color 0.3s;
}
.card-hover:hover .service-icon-wrap { background: var(--primary); color: #fff; }
.card-hover {
    border: none; border-radius: var(--radius);
    box-shadow: var(--shadow); transition: var(--transition);
    overflow: hidden; height: 100%; background: white;
}
.card-hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
    border-radius: var(--radius); overflow: hidden;
    background: white; border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition); height: 100%;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card .product-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img { transform: scale(1.05); }
.product-img-wrap { overflow: hidden; }
.product-card .product-body { padding: 1.5rem; }
.product-cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--primary); opacity: 0.7; }
.product-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin: 0.5rem 0 0.75rem; }
.product-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ============================================================
   REFERENCES
   ============================================================ */
.ref-card {
    border-radius: var(--radius); padding: 2rem; text-align: center;
    background: white; border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition); height: 100%;
}
.ref-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.ref-logo { width: 80px; height: 80px; object-fit: contain; border-radius: 12px; margin: 0 auto 1rem; display: block; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-section { background: linear-gradient(135deg, var(--bg-section) 0%, #e8f0fe 100%); }
.testimonial-card {
    background: white; border-radius: var(--radius-lg); padding: 2.5rem 2rem;
    box-shadow: var(--shadow); border: 1px solid rgba(21,101,192,0.08);
    height: 100%; transition: var(--transition); position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-card::before {
    content: '\201C'; position: absolute; top: 1.5rem; right: 1.75rem;
    font-size: 5rem; line-height: 1; color: var(--primary); opacity: 0.1;
    font-family: Georgia, serif;
}
.testimonial-stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text { color: var(--text-body); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary-light); flex-shrink: 0; }
.testimonial-initials {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-h));
    color: white; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--text-dark); font-size: 0.95rem; }
.testimonial-meta { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
    background: white; border-radius: var(--radius); overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06); transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-img-wrap { display: block; overflow: hidden; }
.blog-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.5s ease; display: block; }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-body { padding: 1.5rem; }
.blog-cat {
    display: inline-block; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--primary); background: var(--primary-light);
    padding: 0.25rem 0.75rem; border-radius: 50px; margin-bottom: 0.75rem;
}
.blog-cat-hero {
    display: inline-block; background: rgba(255,255,255,0.15); color: white;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 0.35rem 1rem; border-radius: 50px; backdrop-filter: blur(10px);
}
.blog-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.75rem; line-height: 1.4; }
.blog-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.blog-title a:hover { color: var(--primary); }
.blog-summary { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.blog-meta { font-size: 0.8rem; color: var(--text-muted); display: flex; gap: 1rem; margin-top: 0.75rem; flex-wrap: wrap; }
.blog-content { font-size: 1.05rem; line-height: 1.85; color: var(--text-body); }
.blog-content h2, .blog-content h3 { color: var(--text-dark); font-weight: 700; margin-top: 2rem; }
.blog-content p { margin-bottom: 1.25rem; }
.blog-content img { border-radius: var(--radius); max-width: 100%; }
.bg-gradient-primary { background: linear-gradient(135deg, var(--navy), var(--primary)); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid rgba(0,0,0,0.07) !important; border-radius: var(--radius) !important; overflow: hidden; box-shadow: var(--shadow); }
.faq-item .accordion-button {
    background: white; color: var(--text-dark); font-weight: 600; font-size: 1rem;
    padding: 1.25rem 1.5rem; border-radius: 0 !important; box-shadow: none !important;
}
.faq-item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-h) 100%);
    color: white;
}
.faq-item .accordion-button:not(.collapsed) .faq-num { color: rgba(255,255,255,0.7); }
.faq-num { font-size: 0.75rem; font-weight: 700; color: var(--primary); opacity: 0.6; flex-shrink: 0; }
.faq-answer { background: var(--bg-light); padding: 1.25rem 1.5rem; color: var(--text-body); line-height: 1.8; }

/* ============================================================
   GALLERY, TEAM, CERT
   ============================================================ */
.gallery-item { cursor: pointer; border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gallery-overlay { position: absolute; inset: 0; background: rgba(10,22,40,0); color: #fff; display: flex; align-items: flex-end; padding: 1rem; transition: background 0.3s; }
.gallery-item:hover .gallery-overlay { background: rgba(10,22,40,0.55); }
.gallery-caption { transform: translateY(20px); opacity: 0; transition: all 0.3s; }
.gallery-item:hover .gallery-caption { transform: translateY(0); opacity: 1; }
.cert-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 100%; }
.cert-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.cert-card .cert-info { padding: 1.25rem; }
.cert-card .cert-info h5 { font-weight: 700; margin-bottom: 0.5rem; }
.team-card .team-photo { width: 100%; aspect-ratio: 1; object-fit: cover; }
.team-card .team-info { padding: 1.5rem; text-align: center; }
.team-card .team-name  { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.25rem; }
.team-card .team-title { color: var(--primary); font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem; }
.team-card .team-socials a { color: var(--text-muted); margin: 0 4px; font-size: 1.1rem; transition: color 0.2s; }
.team-card .team-socials a:hover { color: var(--primary); }

/* ============================================================
   FILTER TABS
   ============================================================ */
.filter-btns { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 2.5rem; }
.filter-btns .btn { border-radius: 50px; font-size: 0.875rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-card { background: var(--navy); color: white; border-radius: var(--radius-lg); padding: 2.5rem; height: 100%; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info-icon { width: 44px; height: 44px; min-width: 44px; background: rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.contact-form-card { border: none; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 2.5rem; }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3460 60%, var(--primary) 100%);
    padding: 5rem 0 4rem; color: white; text-align: center;
    margin-bottom: 0; position: relative; overflow: hidden;
}
.page-hero::after {
    content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
    height: 60px; background: white; clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; }
.page-hero p  { font-size: 1.1rem; opacity: 0.85; max-width: 600px; margin: 0.75rem auto 0; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3460 50%, var(--primary) 100%);
    color: white; padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-main { background: linear-gradient(180deg, #060e1c 0%, #030811 100%); color: white; }
.footer-heading { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-social-btn {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 1rem; text-decoration: none; transition: var(--transition);
}
.footer-social-btn:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-2px); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact-icon { width: 34px; height: 34px; min-width: 34px; border-radius: 8px; background: rgba(21,101,192,0.25); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; color: var(--accent); }
.footer-contact-item span, .footer-contact-item a { color: rgba(255,255,255,0.65); font-size: 0.875rem; line-height: 1.5; text-decoration: none; transition: color 0.2s; padding-top: 0.4rem; }
.footer-contact-item a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-page { min-height: 100vh; background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%); display: flex; align-items: center; }
.login-card { border-radius: var(--radius-lg); border: none; box-shadow: 0 20px 60px rgba(0,0,0,0.3); overflow: hidden; max-width: 440px; width: 100%; }
.login-header { background: var(--navy); color: white; padding: 2.5rem 2rem; text-align: center; }
.login-body { padding: 2rem; }

/* ============================================================
   ADMIN LAYOUT
   ============================================================ */
.admin-body { background: #f0f2f5; padding-top: 0 !important; }
.admin-sidebar { width: 260px !important; background: var(--navy); min-height: 100vh; position: fixed; top: 0; left: 0; bottom: 0; display: flex; flex-direction: column; z-index: 1040; overflow-y: auto; }
.admin-sidebar-brand { padding: 1.5rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.1); color: white; font-weight: 700; font-size: 1rem; display: flex; align-items: center; }
.admin-nav-link { display: flex; align-items: center; padding: 0.65rem 1rem; border-radius: 10px; margin-bottom: 2px; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: all 0.2s; }
.admin-nav-link:hover { background: rgba(255,255,255,0.08); color: white; }
.admin-nav-link.active { background: var(--primary); color: white; }
.admin-sidebar-footer { border-top: 1px solid rgba(255,255,255,0.1); padding: 1rem 0.5rem; }
.admin-content { margin-left: 260px; padding: 1.5rem 2rem; min-height: 100vh; }
.admin-mobile-nav { background: var(--navy); padding: 0.75rem 1rem; }
.admin-topbar { background: white; border-radius: 14px; padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.admin-card { background: white; border-radius: 14px; padding: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,0.06); margin-bottom: 1.5rem; }
.admin-stat-card { border-radius: 14px; padding: 1.5rem; color: white; position: relative; overflow: hidden; }
.admin-stat-card .stat-icon { font-size: 3rem; opacity: 0.2; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); }
.admin-stat-card .stat-num { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.admin-stat-card .stat-label { font-size: 0.875rem; opacity: 0.85; margin-top: 0.25rem; }

/* ============================================================
   CORPORATE PAGE CONTENT
   ============================================================ */
.corporate-page-content { font-size: 1.05rem; line-height: 1.9; color: var(--text-body); }
.corporate-page-content h2 { font-size: 1.6rem; font-weight: 700; color: var(--text-dark); margin-top: 2rem; }
.corporate-page-content h3 { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-top: 1.5rem; }
.corporate-page-content p { margin-bottom: 1.25rem; }
.bg-section { background: var(--bg-section); }

/* ============================================================
   GRADIENT BUTTON
   ============================================================ */
.btn-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-h) 100%);
    color: white; border: none; border-radius: 50px;
    padding: 0.75rem 2rem; font-weight: 600;
    box-shadow: 0 4px 15px rgba(21,101,192,0.3); transition: var(--transition);
}
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,101,192,0.45); color: white; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .admin-content { margin-left: 0; padding: 1rem; }
    .admin-sidebar { position: static; min-height: auto; width: 100% !important; }
    .hero-slide { height: 520px; }
    .hero-content h1 { font-size: 2.2rem; }
    body { padding-top: 68px; }
}
@media (max-width: 767.98px) {
    .hero-slide { height: 460px; }
    .py-section { padding: 3.5rem 0; }
    .counter-divider { display: none; }
}
