/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f7fc;
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   NAVBAR STYLES
   ============================================ */
.navbar {
    background: rgba(11, 42, 74, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: #7fc9ff;
    font-size: 1.8rem;
}

.logo span {
    color: #7fc9ff;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7fc9ff;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 4px;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.modern-footer {
    background: #0b1f30;
    color: #b6ccdf;
    padding: 60px 0 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-brand i {
    color: #7fc9ff;
    font-size: 1.8rem;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b6ccdf;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
    background: #ffd700;
    color: #0b2a4a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #f59e0b);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.6rem;
    color: #ffd700;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.footer-contact li i {
    color: #ffd700;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li span {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-contact li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: white;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-bottom-links .separator {
    color: #334155;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #f59e0b);
    color: #0b2a4a;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

/* ============================================
   PAGE HERO (BREADCRUMB FIXED)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #0b2a4a 0%, #1a4a7a 40%, #2d6ca0 100%);
    padding: 80px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 201, 255, 0.05), transparent 70%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.page-hero-content h1 .highlight {
    background: linear-gradient(135deg, #7fc9ff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-content > p {
    font-size: 1.2rem;
    color: #b8d4f0;
    margin-bottom: 16px;
}

/* Breadcrumb Styles - FIXED */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    padding: 8px 0;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #b8d4f0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #ffd700;
    transform: translateX(2px);
}

.breadcrumb .separator {
    color: #64748b;
    font-weight: 300;
    margin: 0 4px;
}

.breadcrumb .current {
    color: #ffd700;
    font-weight: 600;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: #dbeafe;
    color: #1c4c7a;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0b2a4a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-header h2 .highlight {
    background: linear-gradient(135deg, #1c4c7a, #7fc9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #f59e0b);
    color: #0b2a4a;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 14px;
}

.btn-hero {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 12px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0b2a4a, #1a4a7a);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 201, 255, 0.05), transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-content h2 .highlight {
    background: linear-gradient(135deg, #ffd700, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: #b8d4f0;
    font-size: 1.2rem;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-footer {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-footer span {
    color: #b8d4f0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.cta-footer span i {
    color: #10b981;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
        gap: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 12px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-contact li i {
        margin-top: 4px;
    }
    
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .page-hero-content > p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-footer {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .page-hero-content h1 {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

.highlight {
    color: #1c4c7a;
}

/* ============================================
   LEGAL PAGES (Privacy, Terms, Cookie)
   ============================================ */
.legal-page {
    padding: 60px 0;
    background: white;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-meta {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.last-updated {
    color: #64748b;
    font-size: 0.95rem;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #0b2a4a;
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 1.2rem;
    color: #1c4c7a;
    margin: 20px 0 12px;
}

.legal-section p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section ul {
    padding-left: 24px;
    margin: 12px 0 16px;
}

.legal-section ul li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-section ul li::marker {
    color: #1c4c7a;
}

.legal-section a {
    color: #1c4c7a;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.legal-section a:hover {
    color: #ffd700;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.95rem;
}

.cookie-table thead {
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
}

.cookie-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #0b2a4a;
}

.cookie-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

.cookie-table tbody tr:hover {
    background: #f8fafc;
}

@media (max-width: 768px) {
    .legal-section h2 {
        font-size: 1.4rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
    
    .cookie-table {
        font-size: 0.85rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 8px 12px;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1c4c7a;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    color: #0b2a4a;
    margin-bottom: 2px;
}

.contact-item p {
    color: #475569;
    margin: 0;
}

.contact-item a {
    color: #1c4c7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffd700;
}

.contact-social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.contact-social h4 {
    font-size: 1rem;
    color: #0b2a4a;
    margin-bottom: 12px;
}

.contact-social .social-links {
    display: flex;
    gap: 12px;
}

.contact-social .social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c4c7a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social .social-links a:hover {
    background: #ffd700;
    color: #0b2a4a;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: #f8fafc;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
}

.contact-form h3 {
    font-size: 1.6rem;
    color: #0b2a4a;
    margin-bottom: 24px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: #0b2a4a;
    margin-bottom: 6px;
}

.contact-form .required {
    color: #ef4444;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1c4c7a;
    box-shadow: 0 0 0 3px rgba(28, 76, 122, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.map-section {
    padding: 0 0 80px;
    background: white;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.map-wrapper iframe {
    height: 100%;
    width: 100%;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .map-wrapper {
        height: 300px;
    }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-tag {
    display: inline-block;
    background: #dbeafe;
    color: #1c4c7a;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.about-text h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0b2a4a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text h2 .highlight {
    background: linear-gradient(135deg, #1c4c7a, #7fc9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.about-stats .stat-item {
    text-align: center;
}

.about-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b2a4a;
}

.about-stats .stat-label {
    font-size: 0.85rem;
    color: #64748b;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 42, 74, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-image:hover .about-image-overlay {
    background: rgba(11, 42, 74, 0.4);
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button i {
    color: #0b2a4a;
    font-size: 1.8rem;
    margin-left: 4px;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.mission-vision-section {
    padding: 80px 0;
    background: #f8fafc;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.mv-card.mission {
    background: white;
    border: 1px solid #e2e8f0;
}

.mv-card.vision {
    background: linear-gradient(135deg, #0b2a4a, #1a4a7a);
    color: white;
}

.mv-card.vision p {
    color: #b8d4f0;
}

.mv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.mv-card.mission .mv-icon {
    background: #dbeafe;
    color: #1c4c7a;
}

.mv-card.vision .mv-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.mv-card p {
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    background: white;
}

.value-card:hover {
    border-color: #7fc9ff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1c4c7a;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 1.4rem;
    color: #0b2a4a;
    margin-bottom: 12px;
}

.value-card p {
    color: #475569;
    line-height: 1.8;
}

/* Team Preview */
.team-preview {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    background: white;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #7fc9ff;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2.5rem;
    color: #1c4c7a;
}

.team-card h4 {
    font-size: 1.1rem;
    color: #0b2a4a;
    margin-bottom: 4px;
}

.team-card p {
    color: #64748b;
    font-size: 0.9rem;
}

/* ============================================
   SOLUTIONS PAGE
   ============================================ */
.solutions-detailed {
    padding: 80px 0;
    background: white;
}

.solution-item {
    padding: 60px 0;
    border-bottom: 1px solid #e2e8f0;
}

.solution-item:last-child {
    border-bottom: none;
}

.solution-item-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
}

.solution-item-content.reverse {
    grid-template-columns: 1fr auto;
}

.solution-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #1c4c7a;
    flex-shrink: 0;
}

.solution-text h3 {
    font-size: 1.8rem;
    color: #0b2a4a;
    margin-bottom: 12px;
}

.solution-text > p {
    color: #475569;
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.solution-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    margin-bottom: 24px;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: #475569;
    font-size: 0.95rem;
}

.solution-features li i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-item-content,
    .solution-item-content.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .solution-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .solution-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .solution-item {
        padding: 40px 0;
    }
    
    .solution-text h3 {
        font-size: 1.4rem;
    }
}

/* ============================================
   CASE STUDIES PAGE
   ============================================ */
.cases-section {
    padding: 80px 0;
    background: white;
}

.case-study-full {
    background: white;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    margin-bottom: 40px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-study-full:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.case-study-header {
    padding: 30px 36px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.case-study-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.case-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #dbeafe;
    line-height: 1;
}

.case-study-meta h3 {
    font-size: 1.4rem;
    color: #0b2a4a;
    margin-bottom: 4px;
}

.case-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: white;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #475569;
    border: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tag i {
    color: #1c4c7a;
}

.case-roi-badge {
    background: linear-gradient(135deg, #ffd700, #f59e0b);
    padding: 8px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
}

.roi-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #0b2a4a;
    line-height: 1.1;
}

.roi-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #78350f;
    text-transform: uppercase;
}

.case-study-body {
    padding: 30px 36px;
}

.case-company-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.case-company-info .info-item {
    font-size: 0.95rem;
    color: #475569;
}

.case-company-info .info-item strong {
    color: #0b2a4a;
}

.case-challenge,
.case-solution,
.case-results-detailed {
    margin-bottom: 20px;
}

.case-challenge:last-child,
.case-solution:last-child,
.case-results-detailed:last-child {
    margin-bottom: 0;
}

.case-challenge h4,
.case-solution h4,
.case-results-detailed h4 {
    font-size: 1.05rem;
    color: #0b2a4a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.case-challenge h4 i {
    color: #ef4444;
}

.case-solution h4 i {
    color: #f59e0b;
}

.case-results-detailed h4 i {
    color: #10b981;
}

.case-challenge p,
.case-solution p {
    color: #475569;
    line-height: 1.8;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 12px;
}

.result-item {
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
}

.result-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b2a4a;
}

.result-label {
    display: block;
    font-size: 0.85rem;
    color: #475569;
    font-weight: 500;
}

.result-detail {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .case-study-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .result-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .case-study-header {
        padding: 20px;
    }
    
    .case-study-body {
        padding: 20px;
    }
    
    .case-study-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .case-company-info {
        gap: 12px;
    }
    
    .result-grid {
        grid-template-columns: 1fr;
    }
    
    .case-number {
        font-size: 2rem;
    }
}

/* ============================================
   TEAM PAGE
   ============================================ */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #7fc9ff;
}

.member-card {
    overflow: hidden;
}

.member-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(transparent, rgba(11, 42, 74, 0.8));
    transition: all 0.3s ease;
}

.member-card:hover .member-social {
    bottom: 0;
}

.member-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #ffd700;
    color: #0b2a4a;
    transform: scale(1.1);
}

.member-info {
    padding: 24px;
}

.member-info h3 {
    font-size: 1.3rem;
    color: #0b2a4a;
    margin-bottom: 4px;
}

.member-role {
    display: inline-block;
    background: #dbeafe;
    color: #1c4c7a;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.member-info p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .team-grid-full {
        grid-template-columns: 1fr;
    }
    
    .member-image {
        height: 220px;
    }
}

/* ============================================
   CAROUSEL HERO (Home Page)
   ============================================ */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #0b2a4a 0%, #1a4a7a 40%, #2d6ca0 100%);
}

.slide-image[src=""],
.slide-image:not([src]) {
    background: linear-gradient(135deg, #0b2a4a 0%, #1a4a7a 40%, #2d6ca0 100%);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 42, 74, 0.85) 0%, rgba(26, 74, 122, 0.7) 50%, rgba(45, 108, 160, 0.5) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.slide-text {
    max-width: 700px;
    animation: slideInUp 0.8s ease forwards;
}

.carousel-slide:not(.active) .slide-text {
    animation: none;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    color: #b8d4f0;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.slide-badge i {
    color: #7fc9ff;
}

.slide-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 16px;
}

.slide-title .highlight {
    background: linear-gradient(135deg, #7fc9ff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-description {
    font-size: 1.1rem;
    color: #cce0f0;
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.slide-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #ffd700;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .slide-title {
        font-size: 2.8rem;
    }
    
    .slide-text {
        max-width: 100%;
    }
    
    .slide-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 90vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .slide-actions .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .carousel-indicators {
        bottom: 20px;
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    .slide-description {
        font-size: 0.9rem;
    }
    
    .slide-content {
        padding: 60px 0;
    }
}

/* Alert Styles */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid;
}

.alert i {
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.alert-success {
    background: #f0fdf4;
    color: #065f46;
    border-color: #86efac;
}

.alert-success i {
    color: #10b981;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fca5a5;
}

.alert-error i {
    color: #ef4444;
}

.alert-success strong,
.alert-error strong {
    display: block;
    margin-bottom: 4px;
}

.alert ul {
    margin: 4px 0 0 16px;
    padding: 0;
}

.alert ul li {
    margin-bottom: 2px;
}

.alert p {
    margin: 0;
}

/* ============================================
   WHATSAPP CHAT WIDGET
   ============================================ */
.whatsapp-chat-widget {
    position: fixed;
    bottom: 10px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* WhatsApp Chat Button */
.whatsapp-chat-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: none;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.whatsapp-chat-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-chat-button:active {
    transform: scale(0.95);
}

.whatsapp-chat-button .whatsapp-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.whatsapp-chat-button .whatsapp-label {
    font-size: 0.95rem;
    white-space: nowrap;
}

/* WhatsApp Popup */
.whatsapp-chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 40px);
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(37, 211, 102, 0.1);
}

.whatsapp-chat-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Popup Header */
.whatsapp-popup-header {
    background: linear-gradient(135deg, #075E54, #128C7E);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.whatsapp-popup-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.whatsapp-popup-info {
    flex: 1;
}

.whatsapp-popup-info h4 {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.whatsapp-popup-info p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.8;
}

.whatsapp-popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.whatsapp-popup-close:hover {
    opacity: 1;
}

/* Popup Body */
.whatsapp-popup-body {
    padding: 20px;
    background: #f0f7f5;
    min-height: 120px;
    max-height: 200px;
    overflow-y: auto;
}

.whatsapp-message-bubble {
    background: white;
    padding: 2px 4px;
    border-radius: 12px 12px 12px 4px;
    max-width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.whatsapp-message-bubble p {
    margin: 0 0 4px 0;
    color: #1e293b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.whatsapp-message-bubble p:last-child {
    margin-bottom: 0;
}

/* Popup Footer */
.whatsapp-popup-footer {
    padding: 8px 10px 10px;
    background: white;
    border-top: 1px solid #f1f5f9;
}

.whatsapp-quick-replies {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.quick-reply {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.8rem;
    color: #0b2a4a;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Segoe UI', sans-serif;
    text-align: left;
}

.quick-reply:hover {
    background: #dbeafe;
    border-color: #1c4c7a;
    transform: translateY(-2px);
}

.quick-reply:active {
    transform: scale(0.95);
}

.quick-reply i {
    color: #1c4c7a;
    font-size: 0.8rem;
}

.whatsapp-start-chat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    cursor: pointer;
}

.whatsapp-start-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    color: white;
}

.whatsapp-start-chat:active {
    transform: scale(0.98);
}

.whatsapp-powered {
    text-align: center;
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 8px;
}

/* Notification Badge */
.whatsapp-chat-button .notification-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ff3b30;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-chat-widget {
        bottom: 10px;
        right: 16px;
    }
    
    .whatsapp-chat-button {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .whatsapp-chat-button .whatsapp-label {
        font-size: 0.85rem;
    }
    
    .whatsapp-chat-popup {
        width: 340px;
        bottom: 30px;
        right: 0;
    }
    
    .whatsapp-quick-replies {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .whatsapp-chat-widget {
        bottom: 10px;
        right: 12px;
    }
    
    .whatsapp-chat-button {
        padding: 10px 14px;
        gap: 8px;
    }
    
    .whatsapp-chat-button .whatsapp-icon-wrapper {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .whatsapp-chat-button .whatsapp-label {
        font-size: 0.8rem;
    }
    
    .whatsapp-chat-popup {
        width: calc(100vw - 24px);
        bottom: 65px;
        right: 0;
        border-radius: 16px;
    }
    
    .whatsapp-popup-header {
        padding: 12px 16px;
    }
    
    .whatsapp-popup-body {
        padding: 16px;
        max-height: 150px;
    }
    
    .whatsapp-popup-footer {
        padding: 12px 16px 16px;
    }
}

/* Back to Top spacing - ensure no overlap */
.back-to-top {
    bottom: 30px;
    right: 30px;
}

/* On mobile, adjust positions */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
    
    .whatsapp-chat-widget {
        bottom: 10px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .whatsapp-chat-widget {
        bottom: 10px;
        right: 12px;
    }
}