/* ==============================
   Laundry Rakha - Landing Page
   Professional Arabic RTL Design
   ============================== */

/* ---------- CSS Variables ---------- */
:root {
    --primary-dark: #071F17;
    --primary: #0B3D2E;
    --primary-mid: #1B5E3B;
    --primary-light: #2D8659;
    --accent: #C8963E;
    --accent-light: #D4A853;
    --accent-glow: rgba(200, 150, 62, 0.3);
    --bg: #FAFAF7;
    --bg-alt: #F5F0E8;
    --card: #FFFFFF;
    --text: #1C1917;
    --text-light: #44403C;
    --text-muted: #78716C;
    --border: #E7E0D5;
    --success: #16A34A;
    --whatsapp: #25D366;
    --gold-text: #C8963E;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 16px 0;
}

.navbar.scrolled {
    background: rgba(11, 61, 46, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.nav-logo .logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px var(--accent-glow);
    overflow: hidden;
    padding: 4px;
}

.nav-logo .logo-icon i {
    font-size: 20px;
    color: var(--primary-dark);
}

.nav-logo .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.nav-logo .logo-text {
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn:active {
    transform: scale(0.97);
}

.btn-gold-nav {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0 4px 12px var(--accent-glow);
}

.btn-gold-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-gold-lg {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 16px;
    box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-gold-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-outline-lg {
    background: transparent;
    color: white;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-lg:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
}

.btn-whatsapp-lg {
    background: var(--whatsapp);
    color: white;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-call-lg {
    background: white;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.btn-call-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-45deg, #071F17, #0B3D2E, #1B5E3B, #0B3D2E);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    overflow: hidden;
    padding: 120px 24px 80px;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.png') center/cover no-repeat;
    opacity: 0.12;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(200, 150, 62, 0.3);
    border-radius: 50%;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 150, 62, 0.15);
    border: 1px solid rgba(200, 150, 62, 0.3);
    color: var(--accent-light);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: clamp(32px, 6vw, 60px);
    font-weight: 900;
    color: white;
    line-height: 1.3;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

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

.hero-stat .stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-light);
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s ease infinite;
}

.hero-scroll-indicator a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    transition: var(--transition);
}

.hero-scroll-indicator a:hover {
    color: var(--accent-light);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 150, 62, 0.1);
    border: 1px solid rgba(200, 150, 62, 0.2);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--accent-light);
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ---------- Services Section ---------- */
.services {
    padding: 100px 0;
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.service-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(11, 61, 46, 0.6));
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
}

.service-overlay i {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px var(--accent-glow);
}

.service-content {
    padding: 28px;
    flex: 1;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.service-content > p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.service-features li i {
    color: var(--success);
    font-size: 12px;
    width: 22px;
    height: 22px;
    background: rgba(22, 163, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---------- Why Us Section ---------- */
.why-us {
    padding: 100px 0;
    background: var(--bg-alt);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.why-us-content .section-title {
    text-align: right;
}

.why-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 36px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(11, 61, 46, 0.2);
}

.feature-icon i {
    font-size: 22px;
    color: var(--accent-light);
}

.feature-text h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.why-us-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    position: relative;
    max-width: 380px;
}

.visual-card img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.visual-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px var(--accent-glow);
}

.visual-badge i {
    font-size: 20px;
}

/* ---------- How It Works Section ---------- */
.how-it-works {
    padding: 100px 0;
    background: var(--bg);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 36px 24px;
    position: relative;
    max-width: 260px;
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(200, 150, 62, 0.12);
    line-height: 1;
    margin-bottom: 16px;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(11, 61, 46, 0.2);
    transition: var(--transition);
}

.step-card:hover .step-icon {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11, 61, 46, 0.3);
}

.step-icon i {
    font-size: 28px;
    color: var(--accent-light);
}

.step-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 100px;
    color: var(--border);
    font-size: 20px;
}

/* ---------- Tracking Section ---------- */
.tracking {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-mid));
    position: relative;
    overflow: hidden;
}

.tracking::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 150, 62, 0.08), transparent 70%);
    border-radius: 50%;
}

.tracking-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.tracking-content {
    color: white;
}

.tracking-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 16px;
}

.tracking-content > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 32px;
}

.tracking-form {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.phone-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.phone-input-wrapper:focus-within {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

.phone-prefix {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.phone-prefix .flag {
    font-size: 20px;
}

.phone-prefix .code {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.phone-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px;
    color: white;
    font-family: 'Tajawal', sans-serif;
    font-size: 17px;
    font-weight: 600;
    outline: none;
    direction: ltr;
    text-align: left;
}

.phone-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.tracking-btn {
    white-space: nowrap;
}

.tracking-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.tf-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.tf-item i {
    color: var(--accent-light);
    font-size: 16px;
}

/* Phone Mockup */
.tracking-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    background: var(--card);
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
}

.phone-screen {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 28px;
    padding: 40px 20px 24px;
    min-height: 400px;
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--accent-light);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 28px;
}

.mockup-order {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.mockup-status {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.mockup-dot.active {
    background: var(--success);
    box-shadow: 0 0 10px rgba(22, 163, 74, 0.5);
}

.mockup-dot.pulse {
    background: var(--accent);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200, 150, 62, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(200, 150, 62, 0); }
}

.mockup-map {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.mockup-map i {
    font-size: 32px;
    color: var(--accent-light);
    display: block;
    margin-bottom: 8px;
}

.mockup-map span {
    font-size: 12px;
    font-weight: 600;
}

/* ---------- Testimonials Section ---------- */
.testimonials {
    padding: 100px 0;
    background: var(--bg-alt);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #FBBF24;
    font-size: 16px;
}

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

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

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    color: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
}

.testimonial-author h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ---------- CTA Section ---------- */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- Contact Section ---------- */
.contact {
    padding: 100px 0;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 16px rgba(11, 61, 46, 0.2);
}

.contact-icon i {
    font-size: 24px;
    color: var(--accent-light);
}

.contact-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.contact-link {
    font-size: 14px;
    color: var(--accent);
    font-weight: 700;
    transition: var(--transition);
}

a.contact-link:hover {
    color: var(--primary);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--primary-dark);
    padding: 60px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 3px;
}

.footer-logo .logo-icon i {
    font-size: 18px;
    color: var(--primary-dark);
}

.footer-logo .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.footer-logo span {
    font-size: 18px;
    font-weight: 800;
    color: white;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    transition: var(--transition);
}

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

.footer-links h4 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-right: 6px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: var(--transition);
    animation: waFloat 3s ease infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

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

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(11, 61, 46, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(11, 61, 46, 0.4);
}

/* ---------- Animations ---------- */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-us-visual {
        order: -1;
    }
    
    .tracking-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tracking-visual {
        order: -1;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 4px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.open {
        display: flex;
    }
    
    .nav-links a {
        padding: 12px 16px;
        font-size: 16px;
        width: 100%;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links .btn-gold-nav {
        display: none;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .hero-stat {
        flex: 1;
        min-width: 100px;
    }
    
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        padding-top: 0;
        transform: rotate(90deg);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .tracking-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-gold-lg, .btn-outline-lg, .btn-whatsapp-lg, .btn-call-lg {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-mockup {
        width: 240px;
    }
    
    .phone-screen {
        min-height: 340px;
        padding: 36px 16px 20px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}