/* ========================================
   MOK LOGISTIK - PREMIUM LANDING PAGE
   Modern Blue Theme - Ultra Professional
======================================== */

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Blue Color Palette */
    --primary-blue: #0066FF;
    --dark-blue: #003D99;
    --light-blue: #4D94FF;
    --accent-blue: #00B4D8;
    --electric-blue: #00D9FF;
    
    /* Supporting Colors */
    --success-green: #10B981;
    --whatsapp: #25D366;
    --warning: #F59E0B;
    
    /* Neutrals */
    --dark: #0F172A;
    --gray-900: #1E293B;
    --gray-800: #334155;
    --gray-700: #475569;
    --gray-600: #64748B;
    --gray-400: #94A3B8;
    --gray-300: #CBD5E1;
    --gray-200: #E2E8F0;
    --gray-100: #F1F5F9;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #00B4D8 100%);
    --gradient-dark: linear-gradient(135deg, #003D99 0%, #0066FF 100%);
    --gradient-light: linear-gradient(135deg, #4D94FF 0%, #00D9FF 100%);
    --gradient-hero: linear-gradient(135deg, #0052CC 0%, #0066FF 50%, #0080FF 100%);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 102, 255, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 102, 255, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 102, 255, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 102, 255, 0.24);
    --shadow-2xl: 0 24px 64px rgba(0, 102, 255, 0.32);
    
    /* Spacing */
    --section-padding: 120px;
    --container-padding: 24px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ========================================
   HEADER - Premium Sticky Navigation
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.header.scrolled .logo-img {
    height: 50px;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-call:hover::before {
    left: 100%;
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-call i {
    font-size: 20px;
    animation: phoneRing 1.5s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
}

/* ========================================
   HERO SECTION - Stunning First Impression
======================================== */
.hero {
    position: relative;
    background: var(--gradient-hero);
    color: var(--white);
    padding: 180px 0 140px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(77, 148, 255, 0.15) 0%, transparent 50%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    animation: moveBackground 60s linear infinite;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-title-main {
    display: inline;
}

.highlight {
    display: block;
    background: linear-gradient(135deg, #00D9FF 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

.trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.badge i {
    font-size: 20px;
    color: var(--electric-blue);
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s backwards;
}

/* ========================================
   BUTTONS - Premium Call-to-Action
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    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 i {
    font-size: 20px;
    position: relative;
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-4px) scale(1.02);
}

/* Hero Card with 3D Effect */
.hero-image {
    position: relative;
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards;
}

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

.hero-card {
    background: var(--white);
    color: var(--gray-900);
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-2xl);
    position: relative;
    transition: transform 0.6s ease;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-card:hover {
    transform: translateY(-10px) rotateX(5deg);
}

.hero-card:hover::before {
    opacity: 1;
}

.hero-card i {
    font-size: 72px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

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

.hero-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.hero-card p {
    color: var(--gray-600);
    font-size: 18px;
}

/* Hero Wave Separator */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.hero-wave path {
    fill: var(--white);
}

/* ========================================
   SERVICES SECTION - Premium Cards
======================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 20px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    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: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

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

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--light-blue);
}

.service-card.featured {
    background: linear-gradient(135deg, #F0F7FF 0%, #E6F2FF 100%);
    border-color: var(--primary-blue);
    transform: scale(1.03);
}

.service-card.featured:hover {
    transform: translateY(-12px) scale(1.03);
}

.popular-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.service-icon i {
    font-size: 40px;
    color: var(--white);
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--dark);
    font-weight: 700;
}

.service-card > p {
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.8;
    font-size: 16px;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray-800);
    font-weight: 500;
    font-size: 15px;
}

.service-features li i {
    color: var(--success-green);
    font-size: 20px;
    flex-shrink: 0;
}

/* ========================================
   WHY CHOOSE US - Benefits Grid
======================================== */
.why-choose {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 48px 36px;
    border-radius: 20px;
    background: var(--gray-100);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.benefit-card:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--light-blue);
}

.benefit-icon {
    width: 110px;
    height: 110px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: var(--gradient-light);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card:hover .benefit-icon::before {
    opacity: 0.3;
}

.benefit-icon i {
    font-size: 48px;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 700;
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 15px;
}

/* ========================================
   PROCESS SECTION - Timeline Style
======================================== */
.process {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -25px;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.4s ease;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: var(--gradient-light);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.step:hover .step-number {
    transform: scale(1.15);
}

.step:hover .step-number::before {
    opacity: 0.4;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 700;
}

.step p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 15px;
}

/* ========================================
   CONTACT SECTION - Premium Design
======================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 800;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 19px;
    color: var(--gray-600);
    margin-bottom: 48px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: var(--gray-100);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.contact-method:hover::before {
    transform: scaleY(1);
}

.contact-method:hover {
    background: var(--white);
    border-color: var(--light-blue);
    box-shadow: var(--shadow-lg);
    transform: translateX(12px);
}

.method-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-method:hover .method-icon {
    transform: scale(1.15) rotate(5deg);
}

.method-icon.phone {
    background: var(--gradient-primary);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

.method-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.method-icon.email {
    background: var(--gradient-dark);
    box-shadow: 0 8px 24px rgba(0, 61, 153, 0.3);
}

.method-content h4 {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 6px;
    font-weight: 600;
}

.method-value {
    font-size: 22px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 6px;
}

.method-label {
    font-size: 14px;
    color: var(--gray-600);
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 16px;
}

.contact-feature i {
    color: var(--success-green);
    font-size: 22px;
}

/* ========================================
   CONTACT FORM - Modern Design
======================================== */
.contact-form-wrapper {
    background: linear-gradient(135deg, #F0F7FF 0%, #E6F2FF 100%);
    padding: 50px;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-200);
}

.contact-form h3 {
    font-size: 32px;
    margin-bottom: 36px;
    color: var(--dark);
    font-weight: 700;
}

.form-group {
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--gray-800);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--gray-900);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.btn-block {
    width: 100%;
    justify-content: center;
    font-size: 18px;
    padding: 20px 40px;
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-block:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.form-note {
    text-align: center;
    color: var(--gray-600);
    font-size: 14px;
    margin-top: 20px;
}

/* ========================================
   REVIEWS / TESTIMONIALS SECTION
======================================== */
.reviews {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: var(--gray-100);
    padding: 36px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.review-card:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--light-blue);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.review-stars {
    display: flex;
    gap: 4px;
    color: #FFC107;
    font-size: 16px;
}

.review-date {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 4px;
}

.review-text {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 16px;
}

.review-platform {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 14px;
}

.review-platform i {
    color: #4285F4;
    font-size: 18px;
}

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

/* ========================================
   FAQ SECTION - Accordion Style
======================================== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--light-blue);
}

.faq-item.active {
    border-color: var(--primary-blue);
}

.faq-question {
    padding: 28px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question h4 {
    font-size: 19px;
    color: var(--dark);
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: var(--primary-blue);
    font-size: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 32px 28px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 16px;
}

/* ========================================
   FOOTER CTA - Final Push
======================================== */
.footer-cta {
    padding: 100px 0;
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 217, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(77, 148, 255, 0.2) 0%, transparent 50%);
}

.footer-cta-content {
    position: relative;
    z-index: 1;
}

.footer-cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.footer-cta-content p {
    font-size: 21px;
    margin-bottom: 48px;
    opacity: 0.95;
    line-height: 1.6;
}

.footer-cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-light {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
}

.btn-light:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: var(--white);
}

.btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

/* ========================================
   FOOTER - Professional
======================================== */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 40px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo span {
    color: var(--white);
}

.footer-logo strong {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-info p {
    color: var(--gray-400);
    line-height: 1.8;
    font-size: 16px;
}

.footer-contact h4 {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 700;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    color: var(--gray-400);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-contact p:hover {
    color: var(--light-blue);
}

.footer-contact i {
    color: var(--primary-blue);
    width: 24px;
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 15px;
}

/* ========================================
   FLOATING BUTTONS - Always Visible
======================================== */
.whatsapp-float,
.phone-float {
    position: fixed;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    z-index: 9998;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 3s ease-in-out infinite;
    text-decoration: none;
}

.whatsapp-float {
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
}

.phone-float {
    bottom: 115px;
    right: 30px;
    background: var(--gradient-primary);
}

.whatsapp-float:hover,
.phone-float:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-2xl);
}

.whatsapp-float:active,
.phone-float:active {
    transform: scale(0.95);
}

/* ========================================
   SUCCESS MESSAGE
======================================== */
.success-message {
    position: fixed;
    top: 120px;
    right: 30px;
    background: var(--success-green);
    color: var(--white);
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    z-index: 99999;
    animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.success-message.show {
    display: flex;
}

.success-message i {
    font-size: 24px;
}

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

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 90px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }
    
    .hero {
        padding: 140px 0 100px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-title-main {
        display: block;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .services-grid,
    .benefits-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta,
    .footer-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 36px 24px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .step::after {
        display: none;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method:hover {
        transform: translateY(-8px);
    }
    
    .logo-img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-call {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 12px 24px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-title-main {
        display: block;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .service-card,
    .benefit-card {
        padding: 36px 24px;
    }
    
    .whatsapp-float,
    .phone-float {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    
    .phone-float {
        bottom: 95px;
    }
    
    .whatsapp-float,
    .phone-float {
        right: 20px;
    }
    
    .footer-cta-content h2 {
        font-size: 32px;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SMOOTH SCROLLING
======================================== */
html {
    scroll-behavior: smooth;
}

/* Loading state */
.loading {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Selection color */
::selection {
    background: var(--primary-blue);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-blue);
    color: var(--white);
}