@tailwind base;
@tailwind components;
@tailwind utilities;
/* ============================================================
   THEME TOGGLE - Dark/Light/System Mode
   ============================================================ */

/* Theme toggle button in navbar */
.theme-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
}

.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    position: relative;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(20deg) scale(1.05);
}

.theme-toggle-btn .theme-icon {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.theme-toggle-btn:hover .theme-icon {
    transform: rotate(180deg);
}

/* Theme dropdown */
.theme-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.theme-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333;
    text-decoration: none;
    border: none;
    background: transparent;
    width: 100%;
    font-size: 0.9rem;
}

.theme-option:hover {
    background: rgba(0, 51, 102, 0.06);
}

.theme-option.active {
    background: rgba(0, 51, 102, 0.1);
    color: #003366;
}

.theme-option .theme-option-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.theme-option .theme-option-label {
    font-weight: 500;
}

.theme-option .theme-option-check {
    margin-left: auto;
    color: #003366;
    opacity: 0;
    transition: opacity 0.2s;
}

.theme-option.active .theme-option-check {
    opacity: 1;
}

/* ===== DARK MODE STYLES - FIXED READABILITY ===== */
body.dark-mode {
    background-color: #0a0e1a;
    color: #e8edf5;
}

/* Navbar dark mode */
body.dark-mode .navbar.scrolled {
    background: rgba(10, 14, 26, 0.95) !important;
}

/* About Section dark mode */
body.dark-mode .about-premium {
    background: #0f1a2e;
}

body.dark-mode .about-premium::before,
body.dark-mode .about-premium::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
}

body.dark-mode .info-card-premium {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .info-card-premium:hover {
    background: rgba(255, 255, 255, 0.08);
}

body.dark-mode .card-title {
    color: #ffffff !important;
}

body.dark-mode .card-description {
    color: rgba(255, 255, 255, 0.85) !important;
}

body.dark-mode .values-list-premium li {
    color: rgba(255, 255, 255, 0.85) !important;
}

body.dark-mode .about-stats-mini {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .stat-mini-number {
    color: #4da6e0 !important;
}

body.dark-mode .stat-mini-label {
    color: rgba(255, 255, 255, 0.7) !important;
}

body.dark-mode .about-intro-text {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.dark-mode .about-badge {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .about-title {
    color: #fff !important;
}

body.dark-mode .about-cta-secondary {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

body.dark-mode .about-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Services Section dark mode */
body.dark-mode .services-premium {
    background: linear-gradient(180deg, #0a0e1a 0%, #0f1a2e 100%);
}

body.dark-mode .services-premium::before,
body.dark-mode .services-premium::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
}

body.dark-mode .service-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

body.dark-mode .service-title {
    color: #ffffff !important;
}

body.dark-mode .service-description {
    color: rgba(255, 255, 255, 0.8) !important;
}

body.dark-mode .service-tag {
    background: rgba(0, 51, 102, 0.2);
    color: #4da6e0 !important;
}

body.dark-mode .service-link {
    color: #4da6e0 !important;
}

body.dark-mode .service-link:hover {
    color: #6db8f0 !important;
}

body.dark-mode .service-icon-badge {
    background: #003366;
}

body.dark-mode .service-footer {
    border-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .services-badge {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .services-title {
    color: #fff !important;
}

body.dark-mode .services-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
}

body.dark-mode .cta-secondary {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

body.dark-mode .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Why Us Section dark mode */
body.dark-mode .why-us-premium {
    background: linear-gradient(135deg, #0a0e1a 0%, #0f1a2e 100%);
}

body.dark-mode .why-us-title {
    color: #ffffff !important;
}

body.dark-mode .why-us-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
}

body.dark-mode .reason-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .reason-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

body.dark-mode .reason-title {
    color: #ffffff !important;
}

body.dark-mode .reason-description {
    color: rgba(255, 255, 255, 0.8) !important;
}

body.dark-mode .reason-icon {
    background: rgba(0, 51, 102, 0.2);
    color: #4da6e0 !important;
}

body.dark-mode .reason-card:hover .reason-icon {
    background: #003366;
    color: #fff !important;
}

body.dark-mode .why-us-stats {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .stat-number {
    color: #4da6e0 !important;
    -webkit-text-fill-color: #4da6e0 !important;
}

body.dark-mode .stat-label {
    color: rgba(255, 255, 255, 0.7) !important;
}

body.dark-mode .stat-divider {
    background: rgba(255, 255, 255, 0.06);
}

body.dark-mode .why-us-image {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .why-us-badge {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .floating-badge {
    background: #1a1a2e !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
}

body.dark-mode .floating-badge i {
    color: #4da6e0 !important;
}

/* Testimonials Section dark mode */
body.dark-mode .testimonials-premium {
    background: linear-gradient(180deg, #0a0e1a 0%, #0f1a2e 100%);
}

body.dark-mode .testimonials-premium::before,
body.dark-mode .testimonials-premium::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
}

body.dark-mode .testimonials-content {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .testimonials-intro {
    background: rgba(0, 51, 102, 0.15);
    border-color: rgba(0, 172, 237, 0.2);
}

body.dark-mode .intro-text {
    color: rgba(255, 255, 255, 0.85) !important;
}

body.dark-mode .client-name {
    color: #ffffff !important;
}

body.dark-mode .client-role {
    color: rgba(255, 255, 255, 0.6) !important;
}

body.dark-mode .testimonial-question:hover {
    background: rgba(255, 255, 255, 0.04);
}

body.dark-mode .testimonial-item {
    border-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .answer-content p {
    color: rgba(255, 255, 255, 0.85) !important;
}

body.dark-mode .testimonial-float-badge {
    background: #1a1a2e !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
}

body.dark-mode .testimonial-icon {
    background: rgba(0, 51, 102, 0.2);
    color: #4da6e0 !important;
}

body.dark-mode .testimonial-item.active .testimonial-icon {
    background: #003366;
    color: #fff !important;
}

body.dark-mode .testimonials-badge {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .testimonials-title {
    color: #fff !important;
}

body.dark-mode .testimonials-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Reach Us Section dark mode */
body.dark-mode .reach-premium {
    background: linear-gradient(135deg, #0a0e1a 0%, #0f1a2e 100%);
}

body.dark-mode .reach-premium::before,
body.dark-mode .reach-premium::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
}

body.dark-mode .reach-form-wrapper {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .reach-title {
    color: #ffffff !important;
}

body.dark-mode .reach-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
}

body.dark-mode .form-label {
    color: rgba(255, 255, 255, 0.85) !important;
}

body.dark-mode .form-control {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
}

body.dark-mode .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #003366;
}

body.dark-mode .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

body.dark-mode .reach-float-badge {
    background: #1a1a2e !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
}

body.dark-mode .reach-float-badge i {
    color: #4da6e0 !important;
}

body.dark-mode .social-label {
    color: rgba(255, 255, 255, 0.6) !important;
}

body.dark-mode .social-icon-reach {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7) !important;
}

body.dark-mode .social-icon-reach:hover {
    background: #003366;
    color: #fff !important;
}

body.dark-mode .reach-social {
    border-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .reach-badge {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Footer dark mode */
body.dark-mode .footer-premium {
    background: linear-gradient(165deg, #050812 0%, #0a0e1a 30%, #0f1a2e 60%, #050812 100%);
}

body.dark-mode .footer-wave .wave-fill {
    fill: #0f1a2e;
}

body.dark-mode .footer-bottom-bar {
    background: rgba(0, 0, 0, 0.4);
}

body.dark-mode .brand-name {
    background: linear-gradient(135deg, #ffffff 0%, #4da6e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.dark-mode .brand-description {
    color: rgba(255, 255, 255, 0.7) !important;
}

body.dark-mode .footer-heading {
    color: #ffffff !important;
}

body.dark-mode .footer-links li a {
    color: rgba(255, 255, 255, 0.6) !important;
}

body.dark-mode .footer-links li a:hover {
    color: #ffffff !important;
}

body.dark-mode .contact-text span,
body.dark-mode .contact-text a {
    color: rgba(255, 255, 255, 0.7) !important;
}

body.dark-mode .contact-text a:hover {
    color: #4da6e0 !important;
}

body.dark-mode .contact-icon {
    background: rgba(0, 51, 102, 0.2);
    color: #4da6e0 !important;
}

body.dark-mode .newsletter-form {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .newsletter-input {
    color: #ffffff !important;
}

body.dark-mode .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

body.dark-mode .social-link {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6) !important;
}

body.dark-mode .social-link:hover {
    color: #ffffff !important;
}

body.dark-mode .copyright {
    color: rgba(255, 255, 255, 0.5) !important;
}

body.dark-mode .footer-legal-links a {
    color: rgba(255, 255, 255, 0.4) !important;
}

body.dark-mode .footer-legal-links a:hover {
    color: #4da6e0 !important;
}

/* Theme dropdown dark mode */
body.dark-mode .theme-dropdown {
    background: #1a1a2e;
    border-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .theme-option {
    color: rgba(255, 255, 255, 0.85) !important;
}

body.dark-mode .theme-option:hover {
    background: rgba(255, 255, 255, 0.06);
}

body.dark-mode .theme-option.active {
    background: rgba(0, 51, 102, 0.2);
    color: #4da6e0 !important;
}

body.dark-mode .theme-option .theme-option-check {
    color: #4da6e0 !important;
}

/* ===== SYSTEM PREFERENCE DETECTION ===== */
@media (prefers-color-scheme: dark) {
    body.system-mode {
        background-color: #0a0e1a;
        color: #e8edf5;
    }
}

/* ===== THEME TRANSITION ===== */
body {
    transition: background-color 0.4s ease, color 0.4s ease;
}

body * {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ============================================================
   GLOBAL STYLES
   ============================================================ */

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: #003366 !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



/* ============================================================
   ABOUT US SECTION - World Class Professional Design
   ============================================================ */

.about-premium {
    padding: 80px 20px 100px;
    background: #003366;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Background decoration elements */
.about-premium::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatBgAbout 25s ease-in-out infinite;
}

.about-premium::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatBgAbout 30s ease-in-out infinite reverse;
}

@keyframes floatBgAbout {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 30px) scale(1.1); }
}

/* Subtle grid pattern */
.about-premium .grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== Section Header ===== */
.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.about-badge::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    animation: pulseDotAbout 1.5s infinite;
}

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

.about-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.about-title .highlight-text {
    color: #00aced;
    position: relative;
}

.about-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #00aced;
    border-radius: 2px;
    opacity: 0.5;
}

.about-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00aced, transparent);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ===== About Content ===== */
.about-content {
    margin-bottom: 50px;
}

.about-text-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 0 20px;
    position: relative;
    margin-bottom: 30px;
}

.about-intro-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(0, 172, 237, 0.2);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.about-intro-text::after {
    content: '"';
    font-size: 4rem;
    color: rgba(0, 172, 237, 0.2);
    position: absolute;
    bottom: -40px;
    right: -10px;
    font-family: Georgia, serif;
}

/* ===== Mini Stats ===== */
.about-stats-mini {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 10px;
}

.stat-mini-item {
    text-align: center;
}

.stat-mini-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #00aced;
    line-height: 1;
}

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

.stat-mini-divider {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 1px;
}

/* ===== Info Cards Grid ===== */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.info-card-premium {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 30px 30px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    text-align: left;
}

.info-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00aced, #ffffff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

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

.info-card-premium:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 172, 237, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 172, 237, 0.03) 0%, transparent 60%);
    pointer-events: none;
    transition: all 0.6s;
}

.info-card-premium:hover .card-glow {
    transform: scale(1.2);
}

/* Card Icon */
.card-icon-wrapper {
    margin-bottom: 18px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(0, 172, 237, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #00aced;
    transition: all 0.4s;
}

.info-card-premium:hover .card-icon {
    background: #00aced;
    color: #003366;
    transform: rotate(-10deg) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 172, 237, 0.3);
}

/* Card Content */
.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.card-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

.card-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    transition: all 0.4s;
}

.info-card-premium:hover .card-number {
    color: rgba(0, 172, 237, 0.08);
    transform: scale(1.1);
}

/* Values List */
.values-list-premium {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list-premium li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s;
}

.values-list-premium li:last-child {
    border-bottom: none;
}

.values-list-premium li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.values-list-premium li i {
    color: #00aced;
    font-size: 1rem;
    width: 20px;
}

/* ===== About CTA ===== */
.about-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.about-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #00aced;
    color: #003366;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 25px rgba(0, 172, 237, 0.3);
}

.about-cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 40px rgba(0, 172, 237, 0.4);
    color: #003366;
    text-decoration: none;
    background: #00d4ff;
}

.about-cta-primary i {
    transition: transform 0.3s;
}

.about-cta-primary:hover i {
    transform: translateX(6px);
}

.about-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.about-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-4px);
}

.about-cta-secondary i {
    color: #00aced;
    font-size: 1.1rem;
}

/* ============================================================
   RESPONSIVE - About Us Section
   ============================================================ */

@media (max-width: 1024px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .info-cards-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-card-premium:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-premium {
        padding: 60px 15px 80px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-intro-text {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .about-intro-text::before,
    .about-intro-text::after {
        display: none;
    }
    
    .about-stats-mini {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .stat-mini-divider {
        width: 60%;
        height: 2px;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .info-card-premium:last-child {
        max-width: 100%;
    }
    
    .info-card-premium {
        padding: 28px 22px 25px;
        text-align: center;
    }
    
    .card-icon-wrapper {
        display: flex;
        justify-content: center;
    }
    
    .values-list-premium li {
        justify-content: center;
    }
    
    .card-number {
        display: none;
    }
    
    .about-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .about-cta-primary,
    .about-cta-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.6rem;
    }
    
    .about-badge {
        font-size: 0.7rem;
        padding: 4px 16px;
    }
    
    .about-intro-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .stat-mini-number {
        font-size: 1.6rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-description {
        font-size: 0.88rem;
    }
    
    .values-list-premium li {
        font-size: 0.9rem;
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeInUpAbout {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card-premium {
    animation: fadeInUpAbout 0.6s ease both;
}

.info-card-premium:nth-child(1) { animation-delay: 0.1s; }
.info-card-premium:nth-child(2) { animation-delay: 0.2s; }
.info-card-premium:nth-child(3) { animation-delay: 0.3s; }

.about-intro-text {
    animation: fadeInUpAbout 0.8s ease both;
}

.about-stats-mini {
    animation: fadeInUpAbout 0.9s ease both;
}

/* ============================================================
   SERVICES SECTION - Brand Colors (#003366, White, Black)
   ============================================================ */

.services-premium {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background decoration with brand color */
.services-premium::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 51, 102, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatBg 20s ease-in-out infinite;
}

.services-premium::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 51, 102, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatBg 25s ease-in-out infinite reverse;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== Section Header ===== */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-badge {
    display: inline-block;
    background: rgba(0, 51, 102, 0.08);
    color: #003366;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 51, 102, 0.1);
    position: relative;
}

.services-badge::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #003366;
    animation: pulseDot 1.5s infinite;
}

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

.services-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 12px;
}

.services-title .highlight-text {
    color: #003366;
    position: relative;
    display: inline-block;
}

.services-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #003366;
    border-radius: 2px;
    opacity: 0.3;
}

.services-subtitle {
    font-size: 1.15rem;
    color: #6b7a8f;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== Service Cards ===== */
.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #003366, #005599, #003366);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    z-index: 2;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 51, 102, 0.12);
}

/* Service Image */
.service-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-image {
    transform: scale(1.08);
}

/* Image Overlay - Brand Color */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.85), rgba(0, 85, 153, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #003366;
    transform: scale(0.5) rotate(-45deg);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon {
    transform: scale(1) rotate(0deg);
}

/* Service Body */
.service-body {
    padding: 28px 25px 25px;
    position: relative;
}

.service-icon-badge {
    position: absolute;
    top: -25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #003366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.3);
    transition: all 0.4s;
    animation: breatheBadge 2.5s ease-in-out infinite;
}

@keyframes breatheBadge {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(0, 51, 102, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 12px 35px rgba(0, 51, 102, 0.4); }
}

/* Different delay for each card */
.service-card:nth-child(1) .service-icon-badge { animation-delay: 0s; }
.service-card:nth-child(2) .service-icon-badge { animation-delay: 0.5s; }
.service-card:nth-child(3) .service-icon-badge { animation-delay: 1s; }
.service-card:nth-child(4) .service-icon-badge { animation-delay: 1.5s; }
.service-card:nth-child(5) .service-icon-badge { animation-delay: 2s; }

.service-card:hover .service-icon-badge {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 12px 35px rgba(0, 51, 102, 0.5);
    animation-play-state: paused;
    background: #005599;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 12px;
    margin-top: 5px;
    transition: color 0.3s;
}

.service-card:hover .service-title {
    color: #003366;
}

.service-description {
    color: #6b7a8f;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Service Footer */
.service-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.service-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(0, 51, 102, 0.06);
    color: #003366;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.service-card:hover .service-tag {
    background: rgba(0, 51, 102, 0.12);
}

.service-link {
    margin-left: auto;
    color: #003366;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.service-link i {
    transition: transform 0.3s;
    font-size: 0.75rem;
}

.service-link:hover {
    color: #005599;
    text-decoration: none;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== Splide Customizations - Brand Colors ===== */
#services-slider .splide__slide {
    padding: 0 15px;
}

#services-slider .splide__arrow {
    background: #fff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

#services-slider .splide__arrow:hover {
    background: #003366 !important;
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.3);
    transform: scale(1.05);
}

#services-slider .splide__arrow:hover svg {
    fill: #fff;
}

#services-slider .splide__arrow svg {
    fill: #0a1628;
    transition: fill 0.3s;
}

#services-slider .splide__pagination {
    bottom: -35px;
}

#services-slider .splide__pagination__page {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

#services-slider .splide__pagination__page.is-active {
    background: #003366;
    transform: scale(1.2);
    width: 30px;
    border-radius: 10px;
}

/* ===== Services CTA - Brand Colors ===== */
.services-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #003366;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 25px rgba(0, 51, 102, 0.3);
}

.cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 40px rgba(0, 51, 102, 0.4);
    color: #fff;
    text-decoration: none;
    background: #005599;
}

.cta-primary i {
    transition: transform 0.3s;
}

.cta-primary:hover i {
    transform: translateX(6px);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: transparent;
    color: #0a1628;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s;
    border: 2px solid rgba(0, 0, 0, 0.06);
}

.cta-secondary:hover {
    background: rgba(0, 51, 102, 0.05);
    border-color: #003366;
    color: #0a1628;
    text-decoration: none;
    transform: translateY(-4px);
}

.cta-secondary i {
    color: #003366;
    font-size: 1.1rem;
}

/* ============================================================
   RESPONSIVE - Services Section
   ============================================================ */

@media (max-width: 1024px) {
    .services-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-premium {
        padding: 60px 15px;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .services-header {
        margin-bottom: 40px;
    }
    
    .service-image-wrapper {
        height: 180px;
    }
    
    .service-body {
        padding: 22px 18px 20px;
    }
    
    .service-icon-badge {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        top: -22px;
        right: 18px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.88rem;
    }
    
    #services-slider .splide__arrow {
        width: 40px;
        height: 40px;
    }
    
    #services-slider .splide__arrow--prev {
        left: 5px;
    }
    
    #services-slider .splide__arrow--next {
        right: 5px;
    }
    
    .services-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 1.6rem;
    }
    
    .services-badge {
        font-size: 0.7rem;
        padding: 4px 16px;
    }
    
    .service-image-wrapper {
        height: 150px;
    }
    
    .service-footer {
        flex-wrap: wrap;
    }
    
    .service-link {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
    
    #services-slider .splide__pagination {
        bottom: -25px;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: slideInUp 0.6s ease both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }

/* Gradient text animation for title */
.services-title .highlight-text {
    color: #003366;
    position: relative;
}

/* ============================================================
   WHY US SECTION - World Class Professional Design
   ============================================================ */

.why-us-premium {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 50%, #f0f2f5 100%);
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.why-us-premium::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 172, 237, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-us-premium::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-us-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== Section Header ===== */
.why-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-us-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 172, 237, 0.1), rgba(108, 92, 231, 0.1));
    color: #6c5ce7;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid rgba(108, 92, 231, 0.15);
}

.why-us-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 12px;
}

.why-us-title .highlight-text {
    background: linear-gradient(135deg, #00aced, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.why-us-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #00aced, #6c5ce7);
    border-radius: 2px;
    opacity: 0.3;
}

.why-us-subtitle {
    font-size: 1.15rem;
    color: #6b7a8f;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Image with Floating Badges ===== */
.why-us-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.why-us-image-wrapper {
    position: relative;
    display: inline-block;
}

.why-us-image {
    width: 280px;
    height: 280px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid rgba(0, 172, 237, 0.1);
}

.why-us-image:hover {
    transform: rotate(-8deg) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 10px 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0a1628;
    animation: floatBadge 3s ease-in-out infinite;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.floating-badge i {
    font-size: 1rem;
    color: #00aced;
}

.badge-top {
    top: -15px;
    right: -20px;
    animation-delay: 0s;
}

.badge-bottom {
    bottom: -15px;
    left: -20px;
    animation-delay: 0.5s;
}

.badge-left {
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    animation-delay: 1s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.badge-bottom {
    animation-name: floatBadge2;
}

@keyframes floatBadge2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(8px); }
}

/* ===== Reasons Grid ===== */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.reason-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    animation: fadeInUp 0.6s ease both;
}

.reason-card:nth-child(1) { animation-delay: 0.1s; }
.reason-card:nth-child(2) { animation-delay: 0.2s; }
.reason-card:nth-child(3) { animation-delay: 0.3s; }
.reason-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reason-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 172, 237, 0.15);
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #00aced, #6c5ce7);
    border-radius: 2px;
    transition: height 0.5s ease;
}

.reason-card:hover::before {
    height: 100%;
}

/* Reason Icon - Breathing/Pulsing Effect */
.reason-icon-wrapper {
    flex-shrink: 0;
    position: relative;
}

.reason-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 172, 237, 0.08), rgba(108, 92, 231, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #6c5ce7;
    transition: all 0.4s;
    position: relative;
    animation: breathePulse 2.5s ease-in-out infinite;
}

/* Breathing/Pulsing Animation */
@keyframes breathePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.15);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(108, 92, 231, 0.05);
    }
}

/* Different delay for each card */
.reason-card:nth-child(1) .reason-icon {
    animation-delay: 0s;
}

.reason-card:nth-child(2) .reason-icon {
    animation-delay: 0.6s;
}

.reason-card:nth-child(3) .reason-icon {
    animation-delay: 1.2s;
}

.reason-card:nth-child(4) .reason-icon {
    animation-delay: 1.8s;
}

.reason-card:hover .reason-icon {
    background: linear-gradient(135deg, #00aced, #6c5ce7);
    color: #fff;
    transform: rotate(-10deg) scale(1.05);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
    animation-play-state: paused;
}

/* Reason Content */
.reason-content {
    flex: 1;
}

.reason-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 8px;
}

.reason-description {
    color: #6b7a8f;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.reason-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    transition: all 0.4s;
}

.reason-card:hover .reason-number {
    color: rgba(0, 172, 237, 0.08);
    transform: scale(1.1);
}

/* ===== Stats Section ===== */
.why-us-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    margin-bottom: 50px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0a1628;
    line-height: 1;
    background: linear-gradient(135deg, #00aced, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    color: #6b7a8f;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 1px;
}

/* ===== CTA Buttons ===== */
.why-us-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #00aced, #6c5ce7);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 25px rgba(108, 92, 231, 0.3);
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 40px rgba(108, 92, 231, 0.4);
    color: #fff;
    text-decoration: none;
}

.cta-button i {
    transition: transform 0.3s;
}

.cta-button:hover i {
    transform: translateX(6px);
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: transparent;
    color: #0a1628;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s;
    border: 2px solid rgba(0, 0, 0, 0.08);
}

.cta-button-secondary:hover {
    background: rgba(0, 172, 237, 0.05);
    border-color: #00aced;
    color: #0a1628;
    text-decoration: none;
    transform: translateY(-4px);
}

.cta-button-secondary i {
    color: #00aced;
    font-size: 1.2rem;
}

/* ============================================================
   RESPONSIVE - Why Us Section
   ============================================================ */

@media (max-width: 1024px) {
    .reasons-grid {
        gap: 20px;
    }
    
    .why-us-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .why-us-premium {
        padding: 60px 15px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-us-title {
        font-size: 2rem;
    }
    
    .why-us-subtitle {
        font-size: 1rem;
    }
    
    .why-us-stats {
        flex-direction: column;
        gap: 25px;
        padding: 30px 20px;
    }
    
    .stat-divider {
        width: 80%;
        height: 2px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .why-us-image {
        width: 200px;
        height: 200px;
        padding: 20px;
    }
    
    .floating-badge {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
    
    .badge-top {
        top: -10px;
        right: -10px;
    }
    
    .badge-bottom {
        bottom: -10px;
        left: -10px;
    }
    
    .badge-left {
        display: none;
    }
    
    .reason-card {
        padding: 25px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .reason-number {
        display: none;
    }
    
    .reason-card::before {
        width: 100%;
        height: 3px;
        top: 0;
        left: 0;
    }
    
    .reason-card:hover::before {
        height: 3px;
        width: 100%;
    }
    
    .why-us-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button,
    .cta-button-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .why-us-title {
        font-size: 1.6rem;
    }
    
    .why-us-badge {
        font-size: 0.7rem;
        padding: 4px 16px;
    }
    
    .why-us-image {
        width: 160px;
        height: 160px;
        padding: 15px;
    }
    
    .reason-title {
        font-size: 1.05rem;
    }
    
    .reason-description {
        font-size: 0.88rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .cta-button,
    .cta-button-secondary {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 172, 237, 0.2);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 172, 237, 0);
    }
}

.reason-icon-wrapper {
    animation: pulseGlow 2s infinite;
}

.reason-icon-wrapper:nth-child(2) { animation-delay: 0.5s; }
.reason-icon-wrapper:nth-child(3) { animation-delay: 1s; }
.reason-icon-wrapper:nth-child(4) { animation-delay: 1.5s; }

/* ============================================================
   REACH US SECTION - World Class Professional Design
   ============================================================ */

.reach-premium {
    padding: 80px 20px;
    background: linear-gradient(135deg, #d8e4f0 0%, #e8edf5 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.reach-premium::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 51, 102, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatReach 20s ease-in-out infinite;
}

.reach-premium::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 172, 237, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatReach 25s ease-in-out infinite reverse;
}

@keyframes floatReach {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

.reach-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.reach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* ===== Image Column ===== */
.reach-image-wrapper {
    position: relative;
}

.reach-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s;
}

.reach-image-container:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.reach-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reach-image-container:hover .reach-image {
    transform: scale(1.03);
}

/* Image Overlay */
.reach-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.7), rgba(0, 85, 153, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reach-image-container:hover .reach-image-overlay {
    opacity: 1;
}

.reach-image-content {
    text-align: center;
    color: #fff;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reach-image-container:hover .reach-image-content {
    transform: scale(1);
}

.reach-image-content i {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
    color: #00aced;
}

.reach-image-content span {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.reach-image-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0 0;
}

/* Floating Badges */
.reach-float-badge {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0a1628;
    animation: floatBadgeReach 3s ease-in-out infinite;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.reach-float-badge i {
    font-size: 1.1rem;
    color: #003366;
}

.badge-1 {
    top: 30px;
    right: -15px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 30px;
    left: -15px;
    animation-delay: 0.5s;
}

@keyframes floatBadgeReach {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* ===== Form Column ===== */
.reach-form-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 45px 40px 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s;
}

.reach-form-wrapper:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

/* Form Header */
.reach-form-header {
    margin-bottom: 30px;
}

.reach-badge {
    display: inline-block;
    background: rgba(0, 51, 102, 0.08);
    color: #003366;
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 51, 102, 0.06);
}

.reach-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 8px;
}

.reach-title .highlight-text {
    color: #003366;
    position: relative;
}

.reach-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #003366;
    border-radius: 2px;
    opacity: 0.3;
}

.reach-subtitle {
    color: #6b7a8f;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== Form Styles ===== */
.reach-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #0a1628;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-label i {
    color: #003366;
    font-size: 0.85rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecf0;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: #f8f9fc;
    color: #0a1628;
    outline: none;
}

.form-control:focus {
    border-color: #003366;
    box-shadow: 0 0 0 4px rgba(0, 51, 102, 0.08);
    background: #ffffff;
}

.form-control::placeholder {
    color: #a8adb8;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.reach-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    background: #003366;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 25px rgba(0, 51, 102, 0.3);
    width: 100%;
    margin-top: 5px;
}

.reach-submit-btn:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 8px 40px rgba(0, 51, 102, 0.4);
    background: #005599;
}

.reach-submit-btn i {
    transition: transform 0.3s;
    font-size: 1.1rem;
}

.reach-submit-btn:hover i {
    transform: translateX(6px) rotate(-10deg);
}

/* ===== Social Icons ===== */
.reach-social {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    flex-wrap: wrap;
}

.social-label {
    color: #6b7a8f;
    font-size: 0.85rem;
    font-weight: 500;
}

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

.social-icon-reach {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 51, 102, 0.06);
    color: #003366;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}

.social-icon-reach:hover {
    background: #003366;
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.2);
    text-decoration: none;
}

/* ============================================================
   RESPONSIVE - Reach Us Section
   ============================================================ */

@media (max-width: 1024px) {
    .reach-grid {
        gap: 40px;
    }
    
    .reach-title {
        font-size: 2.2rem;
    }
    
    .reach-image {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .reach-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .reach-image-wrapper {
        order: -1;
    }
    
    .reach-image {
        height: 350px;
    }
    
    .reach-form-wrapper {
        padding: 35px 30px 30px;
    }
    
    .badge-1 {
        top: 20px;
        right: 10px;
    }
    
    .badge-2 {
        bottom: 20px;
        left: 10px;
    }
}

@media (max-width: 768px) {
    .reach-premium {
        padding: 60px 15px;
    }
    
    .reach-title {
        font-size: 1.8rem;
    }
    
    .reach-image {
        height: 280px;
    }
    
    .reach-form-wrapper {
        padding: 28px 20px 25px;
    }
    
    .reach-float-badge {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    .reach-float-badge i {
        font-size: 0.9rem;
    }
    
    .badge-1 {
        top: 15px;
        right: 5px;
    }
    
    .badge-2 {
        bottom: 15px;
        left: 5px;
    }
    
    .reach-image-content i {
        font-size: 2rem;
    }
    
    .reach-image-content span {
        font-size: 1.2rem;
    }
    
    .reach-submit-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
    
    .reach-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .reach-title {
        font-size: 1.5rem;
    }
    
    .reach-badge {
        font-size: 0.65rem;
        padding: 4px 14px;
    }
    
    .reach-image {
        height: 220px;
    }
    
    .reach-image-overlay {
        display: none;
    }
    
    .reach-float-badge {
        padding: 6px 12px;
        font-size: 0.65rem;
        border-radius: 10px;
    }
    
    .reach-float-badge i {
        font-size: 0.75rem;
    }
    
    .badge-1 {
        top: 10px;
        right: 5px;
    }
    
    .badge-2 {
        bottom: 10px;
        left: 5px;
    }
    
    .form-control {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .social-icon-reach {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    .reach-submit-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reach-image-wrapper {
    animation: slideInLeft 0.8s ease both;
}

.reach-form-wrapper {
    animation: slideInRight 0.8s ease both;
}

/* Form field animations */
.form-group {
    animation: fadeInUp 0.6s ease both;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }

.reach-submit-btn {
    animation: fadeInUp 0.6s ease both;
    animation-delay: 0.4s;
}

.reach-social {
    animation: fadeInUp 0.6s ease both;
    animation-delay: 0.5s;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

#contact {
    padding: 3rem;
    background-color: #003366;
    color: #d8e4f0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

#contact h2 {
    font-size: 2.5rem;
    color: #00aced;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #00aced;
    border-radius: 8px;
    background-color: #004080;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 40px;
    height: 40px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    transition: fill 0.3s;
}

.contact-item:hover .contact-icon svg {
    fill: #e6f7ff;
}

.contact-item p {
    margin: 0;
    font-size: 1.2rem;
}

/* ============================================================
   CAREER SECTION
   ============================================================ */

#career {
    padding: 3rem;
    background-color: #004080;
    color: whitesmoke;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s;
}

#career:hover {
    transform: translateY(-3px);
}

#career h2 {
    font-size: 2.5rem;
    color: #00aced;
    margin-bottom: 1rem;
}

#career p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #e6f7ff;
}

.apply-btn {
    background-color: #00aced;
    color: whitesmoke;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.apply-btn:hover {
    background-color: #0099cc;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   RELIABILITY SECTION
   ============================================================ */

.reliability-section {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-image: url("assets/images/reliability-section.png");
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    z-index: 0;
    color: #fff;
}

.overlay-reliability {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 40, 120, 0.7);
    z-index: 1;
}

.reliability-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.reliability-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.reliability-heading h2 {
    font-size: 46px;
    color: #fff;
    margin: 0;
    font-weight: bold;
}

.reliability-block {
    flex: 1 1 250px;
    padding-top: 60px;
}

.breathing-icon {
    margin-bottom: 20px;
}

.red-box {
    width: 70px;
    height: 70px;
    background-color: rgb(245, 245, 245);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.red-box img.breathing-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    animation: iconPulse 1.8s infinite ease-in-out;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

.reliability-block h3 {
    font-size: 22px;
    margin: 10px 0;
    color: #fff;
    font-weight: bold;
}

.reliability-block p {
    font-size: 16px;
    color: #ddd;
    max-width: 300px;
    margin: 0 auto;
    font-weight: bold;
}

@media (max-width: 800px) {
    .reliability-container {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================================
   WHAT OUR CLIENTS SAY - World Class Professional Design
   ============================================================ */

.testimonials-premium {
    padding: 80px 20px 100px;
    background: linear-gradient(180deg, #d8e4f0 0%, #e8edf5 100%);
    position: relative;
    overflow: hidden;
}

/* Background decorations */
.testimonials-premium::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 51, 102, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatTestimonial 20s ease-in-out infinite;
}

.testimonials-premium::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 172, 237, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatTestimonial 25s ease-in-out infinite reverse;
}

@keyframes floatTestimonial {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== Section Header ===== */
.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-badge {
    display: inline-block;
    background: rgba(0, 51, 102, 0.08);
    color: #003366;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 51, 102, 0.08);
    position: relative;
}

.testimonials-badge::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #003366;
    animation: pulseDotTestimonial 1.5s infinite;
}

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

.testimonials-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 8px;
}

.testimonials-title .highlight-text {
    color: #003366;
    position: relative;
}

.testimonials-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #003366;
    border-radius: 2px;
    opacity: 0.3;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #6b7a8f;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Testimonials Grid ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

/* ===== Image Column ===== */
.testimonials-image-wrapper {
    position: relative;
}

.testimonials-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    transition: all 0.5s;
}

.testimonials-image-container:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.testimonials-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonials-image-container:hover .testimonials-image {
    transform: scale(1.03);
}

/* Floating Badges */
.testimonial-float-badge {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0a1628;
    animation: floatBadgeTestimonial 3s ease-in-out infinite;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.rating-badge {
    bottom: 30px;
    right: -15px;
    animation-delay: 0s;
}

.rating-badge .rating-stars {
    color: #f5b342;
    font-size: 0.85rem;
}

.rating-badge .rating-stars i {
    margin: 0 1px;
}

.quote-badge {
    top: 30px;
    left: -15px;
    animation-delay: 0.5s;
}

.quote-badge i {
    color: #003366;
    font-size: 1.2rem;
}

@keyframes floatBadgeTestimonial {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* ===== Content Column ===== */
.testimonials-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 35px 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Intro Text */
.testimonials-intro {
    position: relative;
    margin-bottom: 25px;
    padding: 20px 25px;
    background: rgba(0, 51, 102, 0.03);
    border-radius: 12px;
    border-left: 4px solid #003366;
}

.intro-icon {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #003366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.intro-text {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

/* ===== Testimonial Items ===== */
.testimonial-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 5px;
    transition: all 0.3s;
}

.testimonial-item:last-child {
    border-bottom: none;
}

.testimonial-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 16px 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    border-radius: 8px;
}

.testimonial-question:hover {
    background: rgba(0, 51, 102, 0.03);
}

.testimonial-question:focus {
    outline: none;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.client-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0a1628;
    transition: color 0.3s;
}

.testimonial-item.active .client-name {
    color: #003366;
}

.client-role {
    font-size: 0.8rem;
    color: #6b7a8f;
    font-weight: 400;
}

.testimonial-icon {
    font-size: 1.2rem;
    color: #003366;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 51, 102, 0.06);
}

.testimonial-item.active .testimonial-icon {
    transform: rotate(180deg);
    background: #003366;
    color: #fff;
}

/* Testimonial Answer */
.testimonial-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding-left: 10px;
}

.testimonial-item.active .testimonial-answer {
    max-height: 500px;
}

.answer-content {
    padding: 5px 10px 20px 10px;
    position: relative;
}

.answer-content .quote-icon {
    color: rgba(0, 51, 102, 0.08);
    font-size: 2rem;
    position: absolute;
    top: 0;
    left: 0;
}

.answer-content p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0 0 12px 0;
    padding-left: 25px;
}

.answer-rating {
    color: #f5b342;
    font-size: 0.85rem;
    padding-left: 25px;
}

.answer-rating i {
    margin: 0 2px;
}

/* ============================================================
   RESPONSIVE - Testimonials Section
   ============================================================ */

@media (max-width: 1024px) {
    .testimonials-grid {
        gap: 40px;
    }
    
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonials-image {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-image-wrapper {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .testimonials-image {
        height: 350px;
    }
    
    .rating-badge {
        bottom: 20px;
        right: 10px;
    }
    
    .quote-badge {
        top: 20px;
        left: 10px;
    }
}

@media (max-width: 768px) {
    .testimonials-premium {
        padding: 60px 15px 80px;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .testimonials-image {
        height: 280px;
    }
    
    .testimonials-content {
        padding: 25px 20px 20px;
    }
    
    .testimonials-intro {
        padding: 15px 18px;
    }
    
    .intro-icon {
        display: none;
    }
    
    .testimonial-float-badge {
        padding: 8px 16px;
        font-size: 0.75rem;
        border-radius: 10px;
    }
    
    .testimonial-float-badge i {
        font-size: 0.9rem;
    }
    
    .rating-badge .rating-stars {
        font-size: 0.7rem;
    }
    
    .client-name {
        font-size: 0.9rem;
    }
    
    .answer-content p {
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 1.6rem;
    }
    
    .testimonials-badge {
        font-size: 0.65rem;
        padding: 4px 16px;
    }
    
    .testimonials-image {
        height: 220px;
    }
    
    .testimonial-float-badge {
        padding: 6px 12px;
        font-size: 0.65rem;
    }
    
    .rating-badge {
        bottom: 10px;
        right: 5px;
    }
    
    .quote-badge {
        display: none;
    }
    
    .testimonials-content {
        padding: 20px 15px 15px;
    }
    
    .client-info {
        flex: 1;
    }
    
    .client-role {
        font-size: 0.7rem;
    }
    
    .testimonial-icon {
        width: 26px;
        height: 26px;
        font-size: 0.9rem;
    }
    
    .answer-content p {
        font-size: 0.85rem;
        padding-left: 15px;
    }
    
    .answer-rating {
        padding-left: 15px;
        font-size: 0.75rem;
    }
    
    .answer-content .quote-icon {
        font-size: 1.2rem;
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes slideInLeftTestimonial {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRightTestimonial {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonials-image-wrapper {
    animation: slideInLeftTestimonial 0.8s ease both;
}

.testimonials-content {
    animation: slideInRightTestimonial 0.8s ease both;
}

/* Staggered animation for testimonial items */
.testimonial-item {
    animation: fadeInUp 0.5s ease both;
}

.testimonial-item:nth-child(1) { animation-delay: 0.1s; }
.testimonial-item:nth-child(2) { animation-delay: 0.2s; }
.testimonial-item:nth-child(3) { animation-delay: 0.3s; }
.testimonial-item:nth-child(4) { animation-delay: 0.4s; }
.testimonial-item:nth-child(5) { animation-delay: 0.5s; }
/* ============================================================
   PARTNERS SECTION
   ============================================================ */

.our-partners {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
}

.our-partners h2 {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 10px;
}

.our-partners p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 1.1em;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    justify-items: center;
}

.partner-item {
    text-align: center;
}

.partner-item a {
    text-decoration: none;
    color: inherit;
}

.partner-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ddd;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.partner-link {
    display: inline-block;
    margin-top: 5px;
    font-weight: 600;
    font-size: 1em;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.partner-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* ============================================================
   GOOGLE MAP
   ============================================================ */

.map-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 50vh;
    border: 0;
}

/* ============================================================
   FOOTER - World Class Professional Design
   ============================================================ */

/* ===== Main Footer Container ===== */
.footer-premium {
    background: linear-gradient(165deg, #0a1628 0%, #1a2a4a 30%, #0d2847 60%, #0a1a2e 100%);
    color: #e8edf5;
    position: relative;
    overflow: hidden;
    padding-top: 0;
    margin-top: -2px;
}

/* Animated background particles */
.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 10% 90%, rgba(0, 172, 237, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 10%, rgba(108, 92, 231, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 172, 237, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle grid pattern overlay */
.footer-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ===== Wave Decoration ===== */
.footer-wave {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 80px;
    overflow: hidden;
    margin-bottom: -5px;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.wave-fill {
    fill: #0d2847;
    opacity: 0.9;
}

/* ===== Main Footer Content ===== */
.footer-main {
    position: relative;
    z-index: 1;
    padding: 60px 20px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1.2fr 1.2fr 2fr;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

/* ===== Brand Column ===== */
.footer-brand {
    max-width: 380px;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 55px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-wrapper:hover .footer-logo {
    transform: rotate(-8deg) scale(1.05);
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #00aced 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.brand-description {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* ===== Social Links ===== */
.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 172, 237, 0.2);
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-link:hover::before {
    width: 120px;
    height: 120px;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(0, 172, 237, 0.3);
}

.social-link:nth-child(1):hover { background: #1877f2; }
.social-link:nth-child(2):hover { background: #1da1f2; }
.social-link:nth-child(3):hover { background: #0a66c2; }
.social-link:nth-child(4):hover { background: #e4405f; }
.social-link:nth-child(5):hover { background: #ff0000; }

/* ===== Footer Links Groups ===== */
.footer-links-group {
    min-width: 140px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, #00aced, #6c5ce7);
    border-radius: 2px;
    transition: width 0.4s;
}

.footer-links-group:hover .footer-heading::after {
    width: 55px;
}

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

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links li a i {
    font-size: 0.55rem;
    color: #00aced;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.footer-links li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.footer-links li a:hover {
    color: #fff;
    transform: translateX(6px);
}

/* ===== Contact Group ===== */
.footer-contact-group {
    min-width: 220px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

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

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: rgba(0, 172, 237, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00aced;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.contact-item:hover .contact-icon {
    background: rgba(0, 172, 237, 0.25);
    transform: scale(1.05);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
}

.contact-text span,
.contact-text a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: #00aced;
}

/* ===== Newsletter ===== */
.newsletter-wrapper {
    margin-top: 10px;
}

.newsletter-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
}

.newsletter-form:focus-within {
    border-color: rgba(0, 172, 237, 0.3);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 25px rgba(0, 172, 237, 0.05);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 18px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    min-width: 100px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
    background: linear-gradient(135deg, #00aced, #6c5ce7);
    border: none;
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 172, 237, 0.3);
}

.newsletter-btn i {
    font-size: 0.9rem;
}

/* ===== Footer Bottom Bar ===== */
.footer-bottom-bar {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1300px;
    margin: 0 auto;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.brand-highlight {
    color: #00aced;
    font-weight: 600;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
    padding: 0 10px;
}

.footer-legal-links a:hover {
    color: #00aced;
}

.legal-divider {
    color: rgba(255, 255, 255, 0.1);
}

.back-to-top-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #00aced, #6c5ce7);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 172, 237, 0.2);
}

.back-to-top-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 35px rgba(0, 172, 237, 0.4);
}

/* ============================================================
   RESPONSIVE - Footer
   ============================================================ */

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 2fr 1.2fr 1.2fr 1.8fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .brand-wrapper {
        justify-content: center;
    }
    
    .brand-description {
        text-align: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links-group {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links li a {
        justify-content: center;
    }
    
    .footer-contact-group {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .footer-wave {
        height: 50px;
    }
    
    .footer-main {
        padding: 40px 15px 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links-group,
    .footer-contact-group {
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .footer-logo {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .footer-wave {
        height: 35px;
    }
    
    .footer-main {
        padding: 30px 10px 20px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.06);
        padding: 6px;
    }
    
    .newsletter-input {
        text-align: center;
        padding: 12px 16px;
    }
    
    .newsletter-btn {
        justify-content: center;
        padding: 12px 20px;
        border-radius: 10px;
    }
    
    .footer-legal-links a {
        font-size: 0.7rem;
        padding: 0 6px;
    }
    
    .back-to-top-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.contact-item {
    animation: float 6s ease-in-out infinite;
}

.contact-item:nth-child(2) { animation-delay: 0.5s; }
.contact-item:nth-child(3) { animation-delay: 1s; }
.contact-item:nth-child(4) { animation-delay: 1.5s; }

/* ============================================================
   CHATBOT STYLES
   ============================================================ */

#chatbot-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #130678, #a29bfe);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(20, 3, 149, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#chatbot-icon:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(21, 3, 156, 0.6);
}

#chatbot-icon .chat-icon {
    font-size: 28px;
    animation: pulse 2s infinite;
}

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

#chat-text {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 998;
}

#chat-text.show {
    opacity: 1;
    transform: translateY(0);
}

#chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 400px;
    max-width: calc(100vw - 40px);
    height: 550px;
    max-height: calc(100vh - 140px);
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    animation: slideUp 0.3s ease;
}

#chatbot-window.show {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#chat-header {
    padding: 16px 20px;
    height: min-content;
    background: linear-gradient(135deg, #003366, #003366);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-avatar {
    font-size: 28px;
}

.chat-header-info {
    display: flex;
    flex-direction: column;
}

.chat-title {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.chat-status {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chat-status::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7bff9b;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

#close-chat {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#close-chat:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(90deg);
    transition: transform 0.3s;
}

#chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f7f8fc;
}

#chat-messages .message {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
    animation: fadeIn 0.3s ease;
}

#chat-messages .user {
    align-self: flex-end;
    background: #003366;
    color: #fff;
    border-bottom-right-radius: 4px;
}

#chat-messages .bot {
    align-self: flex-start;
    background: #ffffff;
    color: #1e1e2a;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecf0;
}

#chat-messages .typing {
    align-self: flex-start;
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 4px;
    border: 1px solid #e9ecf0;
}

#chat-messages .typing span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a29bfe;
    animation: typingDot 1.4s infinite;
}

#chat-messages .typing span:nth-child(2) {
    animation-delay: 0.2s;
}
#chat-messages .typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#chat-messages::-webkit-scrollbar {
    width: 4px;
}

#chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

#chat-messages::-webkit-scrollbar-thumb {
    background: #d0d3db;
    border-radius: 10px;
}

#quick-replies {
    padding: 8px 16px 12px 16px;
    background: #f7f8fc;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    border-top: 1px solid #f0f0f0;
}

.quick-reply {
    padding: 6px 14px;
    background: #fff;
    border: 1.5px solid #003366;
    border-radius: 20px;
    color: #003366;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.quick-reply:hover {
    background: #003366;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 14, 139, 0.3);
}

#chat-input-area {
    padding: 12px 16px 16px 16px;
    background: #ffffff;
    border-top: 1px solid #e9ecf0;
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
}

#user-input {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid #e9ecf0;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #f7f8fc;
}

#user-input:focus {
    border-color: #003366;
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
    background: #fff;
}

#chat-input-area button {
    background: #003366;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

#chat-input-area button:hover {
    background: #003366;
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

#chat-input-area button:active {
    transform: scale(0.96);
}

@media (max-width: 600px) {
    #chatbot-window {
        right: 10px;
        bottom: 80px;
        width: calc(100vw - 20px);
        height: calc(100vh - 120px);
        border-radius: 16px;
    }

    #chatbot-icon {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    #chatbot-icon .chat-icon {
        font-size: 24px;
    }

    #chat-text {
        right: 20px;
        bottom: 86px;
        font-size: 12px;
        padding: 6px 14px;
    }

    .quick-reply {
        font-size: 11px;
        padding: 4px 12px;
    }

    #quick-replies {
        padding: 6px 12px 10px 12px;
        gap: 6px;
    }

    #chat-input-area {
        padding: 10px 12px 14px 12px;
    }

    #chat-input-area button {
        padding: 8px 16px;
        font-size: 13px;
    }
}