:root {
    --orange: #de6826;
    --orange-light: #f07a38;
    --orange-dark: #c45a1f;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--white);
    color: var(--gray-800);
    overflow-x: hidden;
    line-height: 1.8;
    max-width: 100%;
    width: 100%;
    position: relative;
}

/* Smooth Scroll Container */
.smooth-scroll {
    overflow: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: all 0.3s ease;
    box-shadow: none;
}

.navbar.scrolled {
    padding: 0.5rem 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo svg {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-800);
    white-space: nowrap;
}

.logo-text span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--orange);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(222, 104, 38, 0.3);
}

.nav-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(222, 104, 38, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 120px 5% 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 37, 41, 0.7) 0%, rgba(33, 37, 41, 0.4) 100%),
                url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: right;
    padding: 2rem;
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(222, 104, 38, 0.2);
    color: var(--orange);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(222, 104, 38, 0.3);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--orange);
    position: relative;
    display: inline-block;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--gray-200);
    margin-bottom: 0;
    opacity: 0;
    line-height: 1.8;
}

/* Hero Lead Form */
.hero-form-container {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
}

.hero-form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-form-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.hero-form-header p {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.hero-lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-lead-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--gray-800);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(222, 104, 38, 0.1);
}

.form-select {
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

input[type="tel"][dir="ltr"] {
    text-align: left;
}

input[type="tel"][dir="ltr"]::placeholder {
    text-align: right;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    background: var(--white);
    overflow: visible;
    transition: all 0.3s ease;
    direction: ltr;
}

.phone-input-wrapper:focus-within {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(222, 104, 38, 0.1);
}

.country-code-dropdown {
    position: relative;
    flex-shrink: 0;
    border-right: 1px solid var(--gray-300);
}

.country-code-input {
    padding: 0.9rem 0.5rem 0.9rem 0.8rem;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-family: 'Tajawal', sans-serif;
    color: var(--gray-800);
    cursor: pointer;
    width: 95px;
    outline: none;
    text-align: center;
}

.country-code-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    width: min(280px, 90vw);
    max-height: 300px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    flex-direction: column;
    margin-top: 5px;
}

.country-code-list.active {
    display: flex;
}

.country-search-input {
    padding: 0.8rem 1rem;
    border: none;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
    font-family: 'Tajawal', sans-serif;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.country-search-input:focus {
    border-bottom-color: var(--orange);
}

.country-options {
    overflow-y: auto;
    max-height: 240px;
}

.country-option {
    padding: 0.7rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s ease;
    font-size: 0.95rem;
}

.country-option:hover,
.country-option.selected {
    background: var(--gray-100);
}

.country-option.selected {
    color: var(--orange);
    font-weight: 500;
}

.phone-number-input {
    flex: 1;
    padding: 0.9rem 1rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-family: 'Tajawal', sans-serif;
    color: var(--gray-800);
    outline: none;
    min-width: 0;
}

.phone-number-input::placeholder {
    color: var(--gray-500);
    text-align: right;
}

.hero-lead-form .hero-btn {
    width: 100%;
    padding: 1rem 2rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-lead-form .hero-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

.loading-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.hero-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.hero-input {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 1rem;
    width: 250px;
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s ease;
}

.hero-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero-input:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.2);
}

.hero-btn {
    padding: 1rem 2.5rem;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(222, 104, 38, 0.5);
}

.hero-btn::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.5s ease;
}

.hero-btn:hover {
    background: var(--orange-light);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(222, 104, 38, 0.6);
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 10px;
    background: var(--orange);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* Section Styles */
section {
    padding: 100px 5%;
    position: relative;
    overflow-x: hidden;
    max-width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--gray-100);
    color: var(--orange);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Why Us Section */
.why-us {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%);
    transition: all 0.4s ease;
    z-index: 1;
}

.feature-card:hover .feature-card-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 3;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    background: var(--orange);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--orange);
    transition: fill 0.4s ease;
}

.feature-card:hover .feature-icon svg {
    fill: var(--white);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-text {
    color: var(--gray-600);
    line-height: 1.8;
}

/* Steps Section */
.steps-section {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
    overflow-x: hidden;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 1rem;
    box-sizing: border-box;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 4px;
    height: 100%;
    background: var(--gray-200);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.timeline-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    z-index: 10;
    box-shadow: 0 4px 20px rgba(222, 104, 38, 0.4);
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-number {
    transform: translate(-50%, -50%) scale(1.2);
}

.timeline-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.timeline-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--gray-600);
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.timeline-text {
    color: var(--gray-600);
}

/* Testimonials Section */
.testimonials {
    background: var(--white);
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 380px;
    position: relative;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: var(--orange);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--orange);
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    fill: var(--orange);
}

/* Value Section */
.value-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.value-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(33, 37, 41, 0.75), rgba(33, 37, 41, 0.75)),
                url('https://images.unsplash.com/photo-1569263979104-865ab7cd8d13?ixlib=rb-4.0.3&auto=format&fit=crop&w=2074&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.value-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 3rem;
    max-width: 900px;
}

.value-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.value-title .highlight {
    color: var(--orange);
}

.value-text {
    font-size: 1.3rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
}

.value-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 0 1rem;
    max-width: 100%;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    padding: 80px 5%;
    overflow-x: hidden;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--gray-400);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    font-family: 'Tajawal', sans-serif;
    max-width: 100%;
    text-align: center;
}

.cta-btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 25px rgba(222, 104, 38, 0.4);
}

.cta-btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 40px rgba(222, 104, 38, 0.5);
}

.cta-btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gray-600);
}

.cta-btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-3px);
}

.cta-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Footer */
footer {
    background: var(--gray-900);
    padding: 60px 5% 30px;
    border-top: 1px solid var(--gray-800);
    overflow-x: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding: 0 1rem;
}

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-500);
    line-height: 1.8;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-contact p,
.footer-contact a {
    color: var(--gray-500);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--orange);
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    fill: var(--orange);
    flex-shrink: 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: var(--gray-500);
    transition: fill 0.3s ease;
}

.social-links a:hover svg {
    fill: var(--white);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav Links */
@media (max-width: 992px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: min(280px, 80vw);
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        padding: 100px 1.5rem 2rem;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-links a::after {
        display: none;
    }

    .navbar.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
}

/* Contact Section */
.contact-section {
    background: var(--gray-100);
    padding: 80px 5%;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-input,
.contact-select,
.contact-textarea {
    padding: 1rem 1.5rem;
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Tajawal', sans-serif;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.contact-select {
    cursor: pointer;
}

.contact-textarea {
    resize: vertical;
}

.contact-submit {
    align-self: center;
}

/* Responsive */

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
    .hero {
        gap: 6rem;
        padding: 140px 8% 100px;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-form-container {
        max-width: 500px;
    }

    .features-grid {
        max-width: 1400px;
    }

    .footer-content {
        max-width: 1400px;
    }
}

/* Large Screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero {
        gap: 5rem;
    }
}

/* Medium-Large Screens (992px - 1199px) */
@media (max-width: 1199px) {
    .hero {
        gap: 3rem;
        padding: 120px 4% 80px;
    }

    .hero-content {
        max-width: 550px;
    }

    .hero-form-container {
        max-width: 420px;
    }
}

/* Tablets (992px and below) */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        flex-direction: column;
        gap: 2rem;
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-bg {
        background-attachment: scroll;
    }

    .value-bg {
        background-attachment: scroll;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 1.5rem;
    }

    .hero-badge {
        font-size: 0.85rem;
    }

    .hero-form-container {
        max-width: 500px;
        width: 90%;
        margin: 0 auto;
    }

    .hero-form {
        flex-direction: column;
        align-items: center;
    }

    .hero-input {
        width: 100%;
        max-width: 350px;
    }

    .timeline {
        padding: 0;
    }

    .timeline::before {
        right: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }

    .timeline-content {
        width: calc(100% - 70px);
        margin-right: 70px;
        margin-left: 0;
    }

    .timeline-number {
        right: 0;
        left: auto;
        transform: translate(0, -50%);
    }

    .timeline-item:hover .timeline-number {
        transform: translate(0, -50%) scale(1.1);
    }

    .value-stats {
        gap: 2rem;
    }

    .value-section {
        min-height: auto;
        padding: 80px 5%;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
}

/* Tablets - Landscape */
@media (max-width: 992px) and (orientation: landscape) {
    .hero {
        flex-direction: row;
        min-height: 100vh;
        padding: 100px 3% 40px;
        gap: 2rem;
    }

    .hero-content {
        text-align: right;
        flex: 1;
        max-width: 50%;
    }

    .hero-form-container {
        flex: 1;
        max-width: 45%;
        width: auto;
    }

    .hero-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    .value-section {
        min-height: 80vh;
    }
}

/* Small Tablets & Large Phones (768px and below) */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .logo img {
        height: 45px;
        width: auto;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .hero {
        padding-top: 90px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-form-container {
        padding: 1.5rem;
        width: 95%;
        max-width: none;
    }

    .hero-form-header h3 {
        font-size: 1.2rem;
    }

    .hero-form-header p {
        font-size: 0.85rem;
    }

    .hero-lead-form .form-row {
        grid-template-columns: 1fr;
    }

    .form-input,
    .form-select {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .phone-input-wrapper {
        flex-direction: row;
    }

    .country-code-input {
        padding: 0.8rem 0.4rem 0.8rem 0.6rem;
        width: 85px;
        font-size: 0.9rem;
    }

    .phone-number-input {
        padding: 0.8rem 0.8rem;
        font-size: 16px; /* Prevents iOS zoom */
    }

    .country-code-list {
        width: 250px;
    }

    .hero-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    section {
        padding: 60px 4%;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
        max-width: 100%;
        width: 100%;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon svg {
        width: 30px;
        height: 30px;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .value-content {
        padding: 2rem 1rem;
    }

    .value-title {
        font-size: 1.8rem;
    }

    .value-text {
        font-size: 1.1rem;
    }

    .value-stats {
        gap: 1.5rem;
    }

    .stat-item {
        flex: 1 1 40%;
        min-width: 120px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 60px 4%;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-contact a {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator .mouse {
        width: 24px;
        height: 40px;
    }
}

/* Small Phones - Landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        flex-direction: row;
        min-height: 100vh;
        padding: 80px 3% 30px;
        gap: 1.5rem;
    }

    .hero-content {
        text-align: right;
        flex: 1;
        max-width: 50%;
        padding: 0.5rem;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
        margin-bottom: 0.75rem;
    }

    .hero-form-container {
        flex: 1;
        max-width: 50%;
        width: auto;
        padding: 1rem;
    }

    .hero-form-header {
        margin-bottom: 0.75rem;
    }

    .hero-form-header h3 {
        font-size: 1rem;
    }

    .hero-form-header p {
        font-size: 0.75rem;
    }

    .hero-lead-form {
        gap: 0.6rem;
    }

    .form-input,
    .form-select {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .hero-btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .scroll-indicator {
        display: none;
    }

    .value-section {
        min-height: auto;
        padding: 40px 3%;
    }

    .value-stats {
        flex-wrap: nowrap;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

/* Extra Small Phones (480px and below) */
@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0.75rem;
    }

    .navbar.scrolled {
        padding: 0.4rem 0.75rem;
    }

    .logo img {
        height: 40px;
        width: auto;
    }

    .logo {
        gap: 0.4rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .mobile-menu-btn {
        padding: 6px;
        min-width: 40px;
        min-height: 40px;
    }

    .mobile-menu-btn span {
        width: 22px;
        height: 2.5px;
    }

    .nav-links {
        padding: 80px 1.25rem 2rem;
        width: min(260px, 85vw);
    }

    .hero {
        padding-top: 70px;
        padding-bottom: 40px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .hero-form-container {
        padding: 1.25rem;
        border-radius: 15px;
        width: 95%;
    }

    .hero-form-header {
        margin-bottom: 1rem;
    }

    .hero-form-header h3 {
        font-size: 1.05rem;
    }

    .hero-form-header p {
        font-size: 0.8rem;
    }

    .hero-lead-form {
        gap: 0.75rem;
    }

    .form-input,
    .form-select {
        padding: 0.7rem 0.9rem;
        font-size: 16px; /* Prevents iOS zoom */
        border-radius: 8px;
    }

    .phone-input-wrapper {
        border-radius: 8px;
    }

    .country-code-input {
        padding: 0.7rem 0.3rem 0.7rem 0.5rem;
        width: 80px;
        font-size: 0.85rem;
    }

    .phone-number-input {
        padding: 0.7rem 0.7rem;
        font-size: 16px; /* Prevents iOS zoom */
    }

    .country-code-list {
        width: 220px;
        max-height: 250px;
    }

    .country-option {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    .hero-btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.95rem;
        border-radius: 40px;
    }

    .hero-btn svg {
        width: 18px;
        height: 18px;
    }

    section {
        padding: 45px 4%;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.9rem;
    }

    .section-title {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .section-subtitle {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .feature-card {
        padding: 1.5rem 1.25rem;
        border-radius: 15px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        border-radius: 15px;
        margin-bottom: 1rem;
    }

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .feature-title {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
    }

    .feature-text {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .timeline {
        padding: 0 0.5rem;
    }

    .timeline::before {
        right: 18px;
    }

    .timeline-item {
        margin-bottom: 2.5rem;
    }

    .timeline-content {
        width: calc(100% - 50px);
        margin-right: 50px;
        margin-left: 0;
        padding: 1rem;
        border-radius: 12px;
    }

    .timeline-number {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .timeline-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.5rem;
    }

    .timeline-title {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }

    .timeline-text {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .timeline-title {
        font-size: 1.05rem;
    }

    .timeline-text {
        font-size: 0.85rem;
    }

    .value-content {
        padding: 1.5rem 1rem;
    }

    .value-title {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .value-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .value-stats {
        gap: 1rem;
        margin-top: 2rem;
    }

    .stat-item {
        flex: 1 1 45%;
        min-width: 100px;
    }

    .stat-number {
        font-size: 1.9rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .cta-section {
        padding: 50px 4%;
    }

    .cta-title {
        font-size: 1.35rem;
        line-height: 1.4;
    }

    .cta-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .cta-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        max-width: none;
        width: 100%;
    }

    footer {
        padding: 35px 4% 20px;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-links h4 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .footer-links a,
    .footer-contact a {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }

    .footer-contact svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 2rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-links a {
        width: 38px;
        height: 38px;
    }

    .social-links svg {
        width: 18px;
        height: 18px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Very Small Phones (360px and below) */
@media (max-width: 360px) {
    .navbar {
        padding: 0.4rem 0.5rem;
    }

    .navbar.scrolled {
        padding: 0.35rem 0.5rem;
    }

    .logo img {
        height: 35px;
        width: auto;
    }

    .logo {
        gap: 0.3rem;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .mobile-menu-btn {
        min-width: 38px;
        min-height: 38px;
    }

    .mobile-menu-btn span {
        width: 20px;
    }

    .nav-links {
        padding: 70px 1rem 2rem;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.85rem 0;
    }

    .hero {
        padding-top: 65px;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.7rem;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-form-container {
        padding: 1rem;
        border-radius: 12px;
    }

    .hero-form-header h3 {
        font-size: 0.95rem;
    }

    .hero-form-header p {
        font-size: 0.75rem;
    }

    .form-input,
    .form-select {
        padding: 0.65rem 0.8rem;
        font-size: 16px;
        border-radius: 6px;
    }

    .phone-input-wrapper {
        border-radius: 6px;
    }

    .country-code-input {
        padding: 0.65rem 0.25rem 0.65rem 0.4rem;
        width: 75px;
        font-size: 0.8rem;
    }

    .phone-number-input {
        padding: 0.65rem 0.6rem;
        font-size: 16px;
    }

    .country-code-list {
        width: 200px;
        max-height: 220px;
    }

    .hero-btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    section {
        padding: 35px 3%;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-badge {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    .feature-card {
        padding: 1.25rem 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-text {
        font-size: 0.8rem;
    }

    .timeline {
        padding: 0 0.25rem;
    }

    .timeline-item {
        margin-bottom: 2rem;
    }

    .timeline-content {
        width: calc(100% - 45px);
        margin-right: 45px;
        margin-left: 0;
        padding: 0.85rem;
    }

    .timeline::before {
        right: 16px;
    }

    .timeline-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .timeline-icon {
        width: 28px;
        height: 28px;
    }

    .timeline-title {
        font-size: 0.95rem;
    }

    .timeline-text {
        font-size: 0.75rem;
    }

    .value-title {
        font-size: 1.25rem;
    }

    .value-text {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .cta-title {
        font-size: 1.2rem;
    }

    .cta-subtitle {
        font-size: 0.85rem;
    }

    .cta-btn {
        font-size: 0.85rem;
        padding: 0.75rem 1.25rem;
    }

    .footer-brand .logo-text {
        font-size: 0.9rem;
    }

    .footer-brand p {
        font-size: 0.8rem;
    }

    .footer-links h4 {
        font-size: 0.9rem;
    }

    .footer-links a,
    .footer-contact a {
        font-size: 0.8rem;
    }
}

/* Landscape mode for very small phones */
@media (max-width: 480px) and (orientation: landscape) {
    .hero {
        flex-direction: column;
        min-height: auto;
        padding: 70px 3% 30px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-form-container {
        max-width: 400px;
        width: 80%;
    }

    .value-section {
        min-height: auto;
        padding: 40px 4%;
    }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-bg,
    .value-bg {
        background-attachment: scroll;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .glow-effect {
        animation: none;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(-50px);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(50px);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding: 1rem;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-yacht {
    width: clamp(80px, 25vw, 120px);
    height: clamp(80px, 25vw, 120px);
    -webkit-animation: float 2s ease-in-out infinite !important;
    animation: float 2s ease-in-out infinite !important;
}

.loader-yacht svg {
    width: 100%;
    height: 100%;
    fill: var(--orange);
}

.loader-yacht img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loader-text {
    margin-top: 1rem;
    font-size: clamp(1rem, 4vw, 1.2rem);
    font-weight: 600;
    color: var(--gray-700);
}

@-webkit-keyframes float {
    0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
    50% { -webkit-transform: translateY(-15px); transform: translateY(-15px); }
}

@keyframes float {
    0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
    50% { -webkit-transform: translateY(-15px); transform: translateY(-15px); }
}

/* Glow Effect for CTA */
.glow-effect {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 4px 25px rgba(222, 104, 38, 0.4); }
    50% { box-shadow: 0 4px 40px rgba(222, 104, 38, 0.7); }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .nav-links a,
    .footer-links a,
    .footer-contact a,
    .social-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .cta-btn,
    .hero-btn {
        min-height: 48px;
    }

    /* Disable hover effects on touch */
    .feature-card:hover,
    .timeline-content:hover,
    .nav-links a:hover::after {
        transform: none;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

    .timeline-item:hover .timeline-number {
        transform: translate(0, -50%);
    }

    .feature-card:active {
        transform: scale(0.98);
    }

    /* Remove parallax on touch devices */
    .hero-bg,
    .value-bg {
        background-attachment: scroll !important;
    }
}

/* Safe Area Support (iPhone X+ notch) */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    footer {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }

    .nav-links {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

/* iOS-specific fixes */
@supports (-webkit-touch-callout: none) {
    /* Fix for iOS Safari 100vh issue */
    .hero,
    .loader,
    .nav-links {
        min-height: -webkit-fill-available;
    }

    /* Prevent iOS text size adjustment */
    body {
        -webkit-text-size-adjust: 100%;
    }
}

/* Sticky WhatsApp Button */
.sticky-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: var(--white);
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(222, 104, 38, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.sticky-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(222, 104, 38, 0.5);
    background: var(--orange-dark);
}

.sticky-whatsapp-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.sticky-whatsapp-btn span {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .sticky-whatsapp-btn {
        bottom: 40px;
        left: 15px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .sticky-whatsapp-btn svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .sticky-whatsapp-btn {
        bottom: 40px;
        left: 15px;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        gap: 0.4rem;
    }

    .sticky-whatsapp-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Print styles */
@media print {
    .loader,
    .navbar,
    .scroll-indicator,
    .mobile-menu-btn {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-bg,
    .value-bg {
        background: none;
    }
}