/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Color Palette */
    --primary-color: #0f172a;
    --secondary-color: #1e293b;
    --accent-color: #3b82f6;
    --accent-light: #60a5fa;
    --gold-color: #f59e0b;
    --gold-light: #fbbf24;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --text-gray: #94a3b8;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    
    /* Premium Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --gradient-light: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

/* Smooth Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3),
                    0 0 40px rgba(59, 130, 246, 0.2);
    }
    50% { 
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.5),
                    0 0 60px rgba(59, 130, 246, 0.3);
    }
}

/* ===================================
   Premium Navbar
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 55px;
    width: 55px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.logo:hover img {
    box-shadow: var(--shadow-xl);
    transform: rotate(-5deg);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    position: relative;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: var(--bg-light);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===================================
   Premium Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.85) 0%,
        rgba(30, 41, 59, 0.75) 50%,
        rgba(59, 130, 246, 0.65) 100%
    );
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.02) 35px,
            rgba(255, 255, 255, 0.02) 70px
        );
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 24px;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    font-size: 1.1rem;
    color: #fbbf24;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-title-line {
    color: white;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-title-highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.5));
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(139, 92, 246, 0.7));
    }
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-bottom: 3rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: 2px solid transparent;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-hero-primary:hover::before {
    opacity: 1;
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.5);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.2);
}

.btn-hero-primary i,
.btn-hero-secondary i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-hero-primary span,
.btn-hero-secondary span {
    position: relative;
    z-index: 1;
}

.btn-hero-primary:hover i {
    transform: scale(1.2);
}

.btn-hero-secondary:hover i {
    transform: rotate(360deg);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-feature-icon i {
    font-size: 1.75rem;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-feature-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.hero-feature-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 4;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

.scroll-indicator:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ===================================
   Animations
   =================================== */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
}

.fade-in-up.delay-2 {
    animation-delay: 0.4s;
}

.fade-in-up.delay-3 {
    animation-delay: 0.6s;
}

.fade-in-up.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Premium Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.btn-secondary:hover {
    background: var(--gradient-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.4);
}

.btn-gold {
    background: var(--gradient-gold);
    color: white;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
}

/* ===================================
   Premium Stats Section
   =================================== */
.stats {
    padding: 5rem 0;
    background: var(--bg-white);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--gradient-light);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-blue);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.stat-item:hover::before {
    opacity: 0.1;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-2xl);
}

.stat-item i {
    font-size: 3.5rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

/* ===================================
   Premium Section Styles
   =================================== */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInDown 0.8s ease;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-gold);
    border-radius: 3px;
}

.title-underline {
    width: 100px;
    height: 5px;
    background: var(--gradient-blue);
    margin: 0 auto 1.5rem;
    border-radius: 3px;
    position: relative;
}

.title-underline::before,
.title-underline::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 5px;
    background: var(--gradient-gold);
    border-radius: 3px;
}

.title-underline::before {
    left: -50px;
}

.title-underline::after {
    right: -50px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* ===================================
   About Section
   =================================== */
/* ===================================
   Premium About Section
   =================================== */
.about {
    background: var(--bg-white);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-blue);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.2;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.08);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-gold);
    color: white;
    padding: 18px 30px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    animation: float 3s ease-in-out infinite;
}

.about-text h3 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.about-text > p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    background: white;
    border-color: var(--accent-light);
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.feature-item i {
    color: var(--success-color);
    font-size: 1.75rem;
    margin-top: 4px;
    min-width: 30px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.7;
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.why-choose .section-header {
    position: relative;
    z-index: 1;
}

.why-choose .section-title {
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.why-choose .section-subtitle {
    color: #ffffff !important;
    opacity: 0.95;
}

.why-choose .title-underline {
    background: linear-gradient(90deg, transparent, #3b82f6, #8b5cf6, transparent);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.why-choose-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.why-choose-card:hover::before {
    opacity: 1;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.why-choose-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    transition: all 0.5s ease;
}

.why-choose-card:hover .why-choose-number {
    color: rgba(59, 130, 246, 0.2);
    transform: scale(1.2);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.why-choose-card:hover .why-choose-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.why-choose-icon i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.why-choose-card h3 {
    font-size: 1.5rem;
    color: #ffffff !important;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.why-choose-card p {
    color: #ffffff !important;
    opacity: 0.9;
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* ===================================
   Premium Fleet Section
   =================================== */
/* ===================================
   Premium Fleet Section
   =================================== */
.fleet {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.fleet::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.fleet::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.fleet-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.fleet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.fleet-card:hover::before {
    transform: scaleX(1);
}

.fleet-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(245, 158, 11, 0.3));
    border-radius: 28px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
    filter: blur(20px);
}

.fleet-card:hover::after {
    opacity: 1;
}

.fleet-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.fleet-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.fleet-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0.6;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.fleet-card:hover .fleet-image::before {
    opacity: 0.8;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.2) rotate(2deg);
}

.fleet-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.fleet-badge {
    align-self: flex-end;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
}

.fleet-badge.popular {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.fleet-badge.new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    animation: glow 2s ease-in-out infinite;
}

.fleet-badge i {
    font-size: 0.9rem;
}

.fleet-category {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
}

.fleet-info {
    padding: 2rem;
}

.fleet-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    gap: 1rem;
}

.fleet-info h3 {
    font-size: 1.85rem;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.2;
}

.fleet-rating {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.fleet-rating i {
    color: #fbbf24;
    font-size: 1rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.fleet-rating i.far {
    color: #d1d5db;
}

.fleet-specs {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 2px solid var(--bg-light);
    border-bottom: 2px solid var(--bg-light);
}

.fleet-spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.fleet-spec-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.fleet-features {
    margin-bottom: 2rem;
    display: grid;
    gap: 0.75rem;
}

.fleet-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 0;
}

.fleet-features li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-blue);
    transition: width 0.3s ease;
    bottom: 0;
}

.fleet-features li:hover {
    color: var(--text-dark);
    padding-left: 12px;
}

.fleet-features li:hover::before {
    width: 100%;
}

.fleet-features i {
    color: var(--success-color);
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.fleet-features li:hover i {
    transform: scale(1.2) rotate(360deg);
}

.fleet-features span {
    flex: 1;
}

.fleet-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.fleet-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.fleet-btn i {
    transition: transform 0.3s ease;
}

.fleet-btn:hover i {
    transform: translateX(5px);
}

.btn-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-blue);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-icon:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-icon:hover::before {
    opacity: 1;
}

.btn-icon:hover i {
    color: white;
    transform: scale(1.15);
}

/* ===================================
   Premium Facilities Section
   =================================== */
.facilities {
    background: var(--bg-white);
    position: relative;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.facility-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--gradient-light);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.7s ease;
}

.facility-card:hover::before {
    left: 100%;
}

.facility-card:hover {
    background: white;
    border-color: var(--accent-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

.facility-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.75rem;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.facility-card:hover .facility-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.facility-icon i {
    font-size: 2.2rem;
    color: white;
}

.facility-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.facility-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===================================
   Premium Gallery Section
   =================================== */
.gallery {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.92));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 30px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.2) rotate(3deg);
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.1s;
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.95;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.2s;
    letter-spacing: 0.02em;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

.gallery-overlay::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 3px solid white;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease 0.3s;
}

.gallery-item:hover .gallery-overlay::before {
    opacity: 0.3;
    width: 120px;
    height: 120px;
}

/* ===================================
   Services Section
   =================================== */
/* ===================================
   Premium Services Section
   =================================== */
.services {
    background: var(--bg-white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--gradient-light);
    padding: 3rem;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.7s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    background: white;
    border-color: var(--accent-color);
    box-shadow: var(--shadow-2xl);
    transform: translateY(-12px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.5s ease;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.service-icon i {
    font-size: 2.2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.65rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1rem;
}

.service-list {
    padding-left: 0;
}

.service-list li {
    padding: 0.85rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-list li:hover {
    color: var(--text-dark);
    padding-left: 10px;
    border-color: var(--accent-color);
}

.service-list li:last-child {
    border-bottom: none;
}

/* ===================================
   Premium Pricing Section
   =================================== */
.pricing {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.pricing-info-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.pricing-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.pricing-info-item i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 24px;
    overflow: hidden;
}

.pricing-table thead {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.pricing-table thead th {
    padding: 1.75rem 2rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.pricing-table thead th i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.pricing-row {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-row:hover {
    background: rgba(59, 130, 246, 0.03);
    transform: scale(1.01);
}

.pricing-row.highlight {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
    border-left: 4px solid var(--accent-color);
}

.pricing-row.highlight.premium {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.08), rgba(236, 72, 153, 0.08));
    border-left: 4px solid #f59e0b;
}

.pricing-row td {
    padding: 1.75rem 2rem;
    font-size: 1rem;
}

.pricing-row .destination {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-row .destination i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.pricing-row.highlight .destination i {
    color: #f59e0b;
}

.badge-popular,
.badge-premium {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-left: 10px;
}

.badge-popular {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.badge-premium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.pricing-row .price {
    font-weight: 700;
}

.price-amount {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 800;
}

.pricing-row.highlight .price-amount {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-row.highlight.premium .price-amount {
    background: linear-gradient(135deg, #f59e0b, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-row .duration {
    color: var(--text-light);
    font-weight: 600;
}

.pricing-note {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 24px;
    border-left: 6px solid #f59e0b;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.15);
}

.pricing-note-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.pricing-note-content h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.pricing-note-content ul {
    list-style: none;
}

.pricing-note-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
}

.pricing-note-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 900;
}

.pricing-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 32px;
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
}

.pricing-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.pricing-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.15rem;
    position: relative;
    z-index: 1;
}

/* ===================================
   Premium FAQ Section
   =================================== */
.faq {
    background: var(--bg-white);
    position: relative;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

.faq-question {
    padding: 2rem 2.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
}

.faq-question h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
    line-height: 1.5;
}

.faq-question i {
    font-size: 1.3rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 2.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2.5rem 2rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* ===================================
   Premium Testimonials Section
   =================================== */
.testimonials {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.google-review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 2.5rem 3rem;
    border-radius: 24px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    gap: 2rem;
    flex-wrap: wrap;
}

.google-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4285f4, #ea4335);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
}

.google-rating-summary {
    flex: 1;
    min-width: 250px;
}

.rating-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 0.75rem;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 1.75rem;
    filter: drop-shadow(0 2px 6px rgba(251, 191, 36, 0.4));
}

.rating-text {
    color: var(--text-light);
    font-size: 1.05rem;
    margin: 0;
}

.rating-text strong {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 900;
}

.btn-google-review {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #4285f4, #3367d6);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
}

.btn-google-review:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(66, 133, 244, 0.5);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    color: var(--accent-light);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.testimonial-card.google-review {
    border-left: 4px solid #4285f4;
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.reviewer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.15rem;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.review-source {
    color: #4285f4;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    flex: 1;
}

.review-date {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Old testimonial styles - keeping for backwards compatibility */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--bg-light);
}

.testimonial-author img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-light);
    box-shadow: var(--shadow-md);
}

.testimonial-author h4 {
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===================================
   Premium Contact Section
   =================================== */
.contact {
    background: var(--bg-white);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.75rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.contact-item:hover {
    background: white;
    border-color: var(--accent-light);
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.contact-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: var(--gradient-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.contact-icon i {
    font-size: 1.65rem;
    color: white;
}

.contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.65rem;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.98rem;
}

.social-media {
    padding: 2rem;
    background: var(--gradient-light);
    border-radius: 16px;
}

.social-media h4 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 1.25rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.social-icon:hover {
    background: var(--gradient-dark);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.4);
}

.contact-form {
    background: var(--gradient-light);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 1.05rem;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Map Container Styles */
.map-container {
    margin-top: 5rem;
    background: white;
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--bg-light);
}

.map-header i {
    font-size: 2.5rem;
    color: var(--accent-color);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-header h3 {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 800;
    margin: 0;
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    position: relative;
}

.map-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid rgba(59, 130, 246, 0.2);
    border-radius: 24px;
    pointer-events: none;
    z-index: 1;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) brightness(1.05);
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-map i {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-map:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.btn-map:hover::before {
    opacity: 1;
}

.btn-map:hover i {
    transform: translateX(5px);
}

.btn-map span {
    position: relative;
    z-index: 1;
}

/* ===================================
   Premium Footer
   =================================== */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-blue);
}

.footer::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3.5rem;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 55px;
    width: 55px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-col ul li {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 8px;
    transform: translateX(5px);
}

.footer-col ul li i {
    margin-right: 12px;
    color: var(--accent-light);
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

/* ===================================
   Premium Float Buttons
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-wa 2s infinite;
    cursor: pointer;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    opacity: 0.3;
    animation: ripple 2s infinite;
}

.whatsapp-float::after {
    content: 'Chat Sekarang!';
    position: absolute;
    right: 85px;
    background: var(--gradient-dark);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: var(--shadow-xl);
    letter-spacing: 0.02em;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover::after {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-wa {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.scroll-top {
    position: fixed;
    bottom: 115px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-blue);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    animation: fadeInUp 0.5s ease;
}

.scroll-top:hover {
    background: var(--gradient-dark);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.4);
}

.scroll-top i {
    animation: bounce-up 1.5s infinite;
}

@keyframes bounce-up {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        min-height: 650px;
        margin-top: 70px;
    }

    .hero-bg-image {
        object-position: center;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .hero-feature-item {
        padding: 1.25rem 1.5rem;
    }

    .hero-feature-icon {
        width: 55px;
        height: 55px;
    }

    .hero-feature-icon i {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .why-choose-card {
        padding: 2.5rem 2rem;
    }

    .pricing-info-box {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .pricing-table-wrapper {
        border-radius: 16px;
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table thead th {
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }

    .pricing-row td {
        padding: 1.25rem 1rem;
    }

    .pricing-note {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .pricing-cta {
        padding: 3rem 1.5rem;
    }

    .pricing-cta h3 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 1.5rem 1.75rem;
    }

    .faq-question h4 {
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.75rem 1.5rem;
    }

    .google-review-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .google-rating-summary {
        text-align: center;
    }

    .rating-stars {
        justify-content: center;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .map-container {
        padding: 2rem;
        border-radius: 24px;
        margin-top: 3rem;
    }

    .map-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }

    .map-header h3 {
        font-size: 1.5rem;
    }

    .map-wrapper {
        border-radius: 16px;
        margin-bottom: 1.5rem;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 550px;
        margin-top: 70px;
    }

    .hero-content-wrapper {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.2;
        gap: 0.15rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
        margin-bottom: 1.5rem;
    }

    .hero-badge i {
        font-size: 0.9rem;
    }

    .hero-buttons {
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 28px;
        font-size: 0.9rem;
        border-radius: 14px;
    }

    .hero-features {
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .hero-feature-item {
        padding: 1rem 1.25rem;
        border-radius: 16px;
    }

    .hero-feature-icon {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }

    .hero-feature-icon i {
        font-size: 1.3rem;
    }

    .hero-feature-label {
        font-size: 0.95rem;
    }

    .hero-feature-desc {
        font-size: 0.8rem;
    }

    .scroll-indicator {
        font-size: 0.8rem;
        bottom: 25px;
    }

    .scroll-indicator i {
        font-size: 1.25rem;
    }

    /* Map Section Mobile */
    .map-container {
        padding: 1.5rem;
        border-radius: 20px;
        margin-top: 2rem;
    }

    .map-header h3 {
        font-size: 1.25rem;
    }

    .map-header-icon {
        width: 55px;
        height: 55px;
    }

    .map-header-icon i {
        font-size: 1.5rem;
    }

    .map-wrapper {
        border-radius: 12px;
    }

    .map-wrapper iframe {
        height: 250px;
        border-radius: 12px;
    }

    .btn-map {
        padding: 14px 28px;
        font-size: 0.9rem;
        border-radius: 14px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        height: 40px;
        width: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .why-choose-card {
        padding: 2rem 1.75rem;
    }

    .why-choose-icon {
        width: 70px;
        height: 70px;
    }

    .why-choose-icon i {
        font-size: 1.75rem;
    }

    .why-choose-number {
        font-size: 3rem;
    }

    .why-choose-card h3 {
        font-size: 1.3rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .pricing-info-box {
        gap: 1rem;
    }

    .pricing-info-item {
        font-size: 0.85rem;
    }

    .pricing-table thead th {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }

    .pricing-row td {
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
    }

    .pricing-row .destination {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .price-amount {
        font-size: 1.1rem;
    }

    .pricing-note {
        padding: 1.5rem;
    }

    .pricing-note-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .pricing-note-content h4 {
        font-size: 1.1rem;
    }

    .pricing-note-content ul li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .pricing-cta {
        padding: 2.5rem 1rem;
    }

    .pricing-cta h3 {
        font-size: 1.5rem;
    }

    .pricing-cta p {
        font-size: 1rem;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-question i {
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .google-review-header {
        padding: 1.5rem 1.25rem;
        gap: 1.5rem;
    }

    .google-logo {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .rating-text {
        font-size: 0.95rem;
    }

    .rating-text strong {
        font-size: 1.5rem;
    }

    .btn-google-review {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .review-header {
        gap: 1rem;
    }

    .reviewer-photo {
        width: 50px;
        height: 50px;
    }

    .reviewer-info h4 {
        font-size: 1rem;
    }

    .review-source {
        font-size: 1.25rem;
    }

    .whatsapp-float,
    .scroll-top {
        right: 20px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 85px;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* ===================================
   Loading Animation
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Smooth scroll offset for fixed navbar */
section {
    scroll-margin-top: 80px;
}