/* ===== Variables & Base ===== */
:root {
    --primary: #1a3a9e;
    --secondary: #16328a;
    --accent: #d4a520;
    --accent-dark: #b8922a;
    --accent-light: #e8c84a;
    --text: #2d2d2d;
    --text-light: #5a5a5a;
    --white: #ffffff;
    --bg-light: #f2f5fb;
    --bg-dark: #142f78;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.text-accent {
    color: var(--accent);
}

.section-padding {
    padding: 100px 0;
    overflow-x: hidden;
}

section {
    overflow-x: hidden;
}

/* ===== Buttons ===== */
.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 32, 0.4);
}

/* ===== Navbar ===== */
.navbar {
    padding: 15px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(20, 47, 120, 0.97);
    backdrop-filter: blur(10px);
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
    height: 55px;
    transition: height 0.3s ease;
}

.navbar.scrolled .nav-logo {
    height: 42px;
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 8px 18px;
    font-size: 0.92rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent);
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}

.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%28212, 165, 32, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #122a6a 100%);
    overflow: hidden;
    padding-bottom: 60px;
    max-width: 100%;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(212,165,32,0.05)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(212,165,32,0.03)" stroke-width="0.5"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(212,165,32,0.02)" stroke-width="0.5"/></svg>');
    background-size: 300px;
    animation: float 20s linear infinite;
}

@keyframes float {
    from { background-position: 0 0; }
    to { background-position: 300px 300px; }
}

.hero-content {
    min-height: calc(100vh - 200px);
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(212,165,32,0.08) 0%, transparent 60%);
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 165, 32, 0.15);
    color: var(--accent);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 165, 32, 0.3);
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons .btn-outline-light {
    border-radius: 50px;
}

.hero-buttons .btn {
    font-size: 0.9rem;
}

.stat-card {
    text-align: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px 12px;
}

.stat-number {
    display: inline;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
}

.stat-plus {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* ===== Section Tags & Titles ===== */
.section-tag {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 45px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background: var(--accent);
}

.section-tag.light {
    color: var(--accent-light);
}

.section-tag.light::before {
    background: var(--accent-light);
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ===== Founder Card ===== */
.founder-card {
    text-align: center;
}

.founder-image-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.founder-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(20,47,120,0.6), transparent);
}

.founder-image {
    width: 100%;
    max-width: 380px;
    display: block;
    border-radius: 20px;
}

.founder-info {
    margin-top: 20px;
}

.founder-info h4 {
    color: var(--primary);
    margin-bottom: 4px;
}

.founder-info p {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===== About Features ===== */
.about-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.about-feature h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--primary);
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ===== Module Cards ===== */
.module-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 28px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.06);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.module-card:hover::before {
    transform: scaleX(1);
}

.module-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(212,165,32,0.1), rgba(212,165,32,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.module-card:hover .module-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
}

.module-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.module-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.module-duration {
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
}

.module-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.module-link i {
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.module-link:hover {
    color: var(--accent-dark);
}

.module-link:hover i {
    transform: translateX(4px);
}

/* Module cards with image header */
.module-card.module-has-img {
    padding: 0;
    text-align: left;
}

.module-img {
    width: 100%;
    height: 310px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.module-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.module-card:hover .module-img img {
    transform: scale(1.06);
}

.module-body {
    padding: 22px 24px 20px;
}

/* ===== Why Cards ===== */
.why-card {
    text-align: center;
    padding: 35px 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.why-card h5 {
    color: var(--white);
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.why-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== Team Cards ===== */
.team-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid var(--accent);
}

.team-image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-light), #dce3f0);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent);
}

.team-card h5 {
    color: var(--primary);
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.team-role {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-socials a:hover {
    background: var(--accent);
    color: var(--white);
}

/* ===== Testimonials ===== */
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 28px;
    border: 1px solid rgba(0,0,0,0.06);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.testimonial-author h6 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ===== Gallery Swiper ===== */
.gallery-swiper {
    width: 100%;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.gallery-grid-item {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    background: #e8ecf4;
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-grid-item:hover img {
    transform: scale(1.05);
}

.gallery-placeholder-item {
    background: linear-gradient(135deg, #e8ecf4, #d8dfe8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0bac8;
    font-size: 2rem;
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .gallery-grid-item {
        aspect-ratio: 4/3;
    }
}

/* ===== Admin Gallery Grid ===== */
.gallery-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.gallery-admin-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f0f0f0;
}

.gallery-admin-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-admin-item .gallery-delete-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
}

.gallery-admin-item:hover .gallery-delete-btn {
    opacity: 1;
}

/* ===== Pricing Section ===== */
.pricing-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.09);
}

.pricing-card-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 24px;
    color: var(--white);
}

.pricing-card-header .form-label,
.pricing-card-header p {
    color: var(--white);
}

.pricing-flag-select {
    position: relative;
}

.pricing-flag-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: none;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    cursor: pointer;
    text-align: left;
}

.pricing-flag-trigger i.fa-chevron-down {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-light);
    transition: transform 0.2s;
}

.pricing-flag-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 100;
    max-height: 220px;
    overflow-y: auto;
}

.pricing-flag-dropdown.open {
    display: block;
}

.pricing-flag-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.92rem;
    cursor: pointer;
    transition: background 0.15s;
    color: var(--primary);
}

.pricing-flag-option:hover,
.pricing-flag-option.active {
    background: rgba(26, 58, 158, 0.07);
}

.pricing-flag-option.active {
    font-weight: 700;
}

.pricing-card-body {
    padding: 24px;
    flex: 1;
}

.pricing-card-footer {
    padding: 0 24px 24px;
}

.pricing-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.95rem;
}

.pricing-summary-row:last-child { border-bottom: none; }

.pricing-summary-row.total {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 2px solid var(--accent);
    border-bottom: none;
}

.pricing-summary-row.total span { font-weight: 700; color: var(--primary); }
.pricing-summary-row.total strong { font-size: 1.2rem; color: var(--accent); }

.pricing-modes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pricing-mode-btn {
    flex: 1;
    min-width: 80px;
    padding: 8px 4px;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    color: rgba(255,255,255,0.8);
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.pricing-mode-btn:hover {
    border-color: rgba(255,255,255,0.8);
    color: var(--white);
}

.pricing-mode-btn.active {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
}

.pricing-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.92rem;
}

.pricing-line:last-child { border-bottom: none; }

.pricing-line-label { color: var(--text-light); }

.pricing-line-value {
    font-weight: 700;
    color: var(--accent);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-section .btn-accent {
    background: var(--white);
    color: var(--accent-dark);
}

.cta-section .btn-accent:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* ===== Contact ===== */
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.contact-item h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--primary);
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== Contact Form ===== */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 0.95rem;
    height: auto;
    transition: border-color 0.3s ease;
}

.contact-form .col-md-6 > .form-select {
    padding: 14px 16px;
    min-height: 58px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 165, 32, 0.1);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    padding: 60px 0 30px;
    color: rgba(255,255,255,0.7);
    overflow-x: hidden;
}

.footer-logo {
    height: 60px;
    margin-bottom: 16px;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

.footer h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-country {
    display: inline-block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.06);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.footer-country:hover {
    background: rgba(255,255,255,0.12);
    color: var(--accent);
}

.footer-flag {
    width: 18px;
    height: auto;
    border-radius: 2px;
    vertical-align: middle;
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    border-radius: 12px 0 0 12px;
    padding: 12px 16px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form .btn {
    border-radius: 0 12px 12px 0;
    padding: 12px 20px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 30px 0 20px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

/* ===== Session Notification ===== */
.session-notif {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 380px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.18);
    z-index: 1001;
    overflow: hidden;
    transform: translateY(120%);
    opacity: 0;
    animation: notifSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 2s;
    border: 1px solid rgba(0,0,0,0.06);
}

.session-notif.hiding {
    animation: notifSlideOut 0.4s ease-in forwards;
}

@keyframes notifSlideIn {
    from { transform: translateY(120%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes notifSlideOut {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(120%); opacity: 0; }
}

.session-notif-flag {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--primary));
}

.session-notif-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
}

.session-notif-close:hover {
    color: var(--primary);
}

.session-notif-body {
    padding: 16px 40px 16px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.session-notif-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.session-notif-icon img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
}

.session-notif-text h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 2px;
}

.session-notif-text p {
    font-size: 0.78rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.session-notif-text .notif-flag-img {
    width: 16px;
    height: auto;
    border-radius: 2px;
    vertical-align: middle;
    margin-right: 3px;
}

.session-notif-footer {
    padding: 10px 20px;
    background: var(--bg-light);
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.session-notif-footer a {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

.session-notif-footer a:hover {
    color: var(--accent-dark);
}

.session-notif-footer .notif-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    margin-right: 6px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

@media (max-width: 767px) {
    .session-notif {
        left: 12px;
        right: 12px;
        max-width: none;
        bottom: 16px;
    }
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212,165,32,0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    color: var(--white);
}

/* ===== Background Variants ===== */
.bg-light {
    background-color: var(--bg-light) !important;
}

.bg-dark {
    background-color: var(--bg-dark) !important;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .stat-card {
        padding: 18px 10px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .navbar-collapse {
        background: rgba(20, 47, 120, 0.98);
        border-radius: 12px;
        padding: 20px;
        margin-top: 10px;
    }

    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-bottom: 40px;
    }

    .hero-content {
        min-height: auto;
        padding-top: 110px;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

        .hero-buttons .btn {
        text-align: center;
        font-size: 0.85rem;
        padding: 12px 24px;
    }

    .hero-buttons .me-3 {
        margin-right: 0 !important;
    }

    .stat-card {
        padding: 10px 8px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 0.88rem;
    }

    .stat-card {
        padding: 8px 6px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-plus {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }
}
