/* ============================================================
   وكالة عبدالله الجعمي للسفريات والسياحة
   Main Stylesheet — Golden & Black Palette
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Brand Colors */
    --gold-primary: #C9A227;
    --gold-light: #E5C050;
    --gold-dark: #A07D10;
    --gold-pale: #FFF8E7;
    --gold-gradient: linear-gradient(135deg, #C9A227 0%, #E5C050 50%, #C9A227 100%);

    --black-primary: #111111;
    --black-soft: #1A1A1A;
    --black-mid: #2B2B2B;
    --gray-600: #6B7280;
    --gray-400: #9CA3AF;
    --gray-100: #F9FAFB;
    --gray-200: #F3F4F6;
    --white: #FFFFFF;

    /* Typography */
    --font-primary: 'Cairo', 'Tajawal', 'Segoe UI', sans-serif;
    --font-size-base: 16px;

    /* Spacing */
    --section-padding: 90px 0;
    --container-max: 1240px;
    --border-radius: 16px;
    --border-radius-sm: 10px;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.16);
    --shadow-gold: 0 8px 30px rgba(201,162,39,0.25);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Navbar Height */
    --navbar-h: 80px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-primary);
    color: var(--black-primary);
    background: var(--white);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-primary);
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== UTILITY CLASSES ===== */
.section {
    padding: var(--section-padding);
}

.bg-light {
    background: var(--gray-100);
}

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

.highlight {
    color: var(--gold-primary);
    position: relative;
}

.mt-20 {
    margin-top: 20px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    border: 1px solid rgba(201,162,39,0.3);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--black-primary);
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-gradient);
    color: var(--black-primary);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    font-family: var(--font-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201,162,39,0.4);
    color: var(--black-primary);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.btn-whatsapp:hover {
    background: #1DB954;
    transform: translateY(-3px);
    color: var(--white);
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.preloader-logo {
    width: 140px;
    animation: float 1.5s ease-in-out infinite;
}

.preloader-dots {
    display: flex;
    gap: 10px;
}

.preloader-dots span {
    width: 12px;
    height: 12px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: dotPulse 1.4s ease-in-out infinite;
}

.preloader-dots span:nth-child(2) { animation-delay: 0.2s; }
.preloader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

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

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--black-primary);
    color: var(--gray-400);
    padding: 8px 0;
    font-size: 0.82rem;
    border-bottom: 2px solid var(--gold-primary);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-contact {
    display: flex;
    gap: 20px;
}

.top-bar-contact a {
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.top-bar-contact a:hover,
.top-bar-info span {
    color: var(--gold-light);
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    height: var(--navbar-h);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-h);
    gap: 20px;
}

.nav-logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.nav-logo img:hover {
    transform: scale(1.04);
}

.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-link {
    color: var(--black-mid);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary);
    background: var(--gold-pale);
}

.btn-nav-cta {
    background: var(--gold-gradient);
    color: var(--black-primary);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    font-family: var(--font-primary);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,162,39,0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--black-primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--black-soft) 0%, #1A1005 40%, #0D0D0D 100%);
    overflow: hidden;
    padding: 100px 0 80px;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201,162,39,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 800"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(201,162,39,0.05)" stroke-width="1"/></pattern></defs><rect width="1000" height="800" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat var(--duration, 6s) var(--delay, 0s) ease-in-out infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-20px) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,162,39,0.15);
    color: var(--gold-light);
    border: 1px solid rgba(201,162,39,0.35);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--gold-primary);
    animation: spin 3s linear infinite;
}

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

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 0;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: var(--border-radius);
    padding: 24px 32px;
    gap: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-primary);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold-light);
    display: inline;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(201,162,39,0.25);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201,162,39,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
}

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

/* ===== MARQUEE STRIP ===== */
.services-strip {
    background: var(--gold-gradient);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--black-primary);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0 32px;
    border-right: 2px solid rgba(0,0,0,0.15);
}

.marquee-item i {
    font-size: 1.1rem;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    min-height: 450px;
}

.about-img-bg {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 85%;
    height: 85%;
    background: var(--gold-pale);
    border-radius: var(--border-radius);
    border: 2px solid rgba(201,162,39,0.2);
}

.about-img-card {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.main-card {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(201,162,39,0.15);
}

.about-logo-large {
    width: 220px;
    margin: 0 auto;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    border: 1px solid rgba(201,162,39,0.15);
}

.floating-badge i {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.floating-badge strong {
    font-size: 0.95rem;
    font-weight: 700;
    display: block;
    color: var(--black-primary);
}

.floating-badge span {
    font-size: 0.78rem;
    color: var(--gray-600);
}

.badge-1 {
    top: 20px;
    left: -20px;
    animation: badgeFloat 3s ease-in-out infinite;
}

.badge-2 {
    bottom: 120px;
    left: -30px;
    animation: badgeFloat 3s ease-in-out infinite 0.5s;
}

.badge-3 {
    bottom: 40px;
    right: -10px;
    animation: badgeFloat 3s ease-in-out infinite 1s;
}

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

.about-text .section-label {
    text-align: right;
}

.about-desc {
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: var(--gray-100);
    border-radius: var(--border-radius-sm);
    border-right: 3px solid var(--gold-primary);
    transition: var(--transition);
}

.value-item:hover {
    background: var(--gold-pale);
    transform: translateX(-4px);
}

.value-icon i {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.value-text strong {
    display: block;
    font-weight: 700;
    color: var(--black-primary);
    margin-bottom: 2px;
}

.value-text span {
    font-size: 0.88rem;
    color: var(--gray-600);
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 32px 28px;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: var(--gold-gradient);
    transition: height 0.4s ease;
    border-radius: 0 var(--border-radius) 0 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,162,39,0.2);
}

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

.service-card.featured {
    background: var(--black-primary);
    color: var(--white);
    border-color: var(--gold-primary);
    box-shadow: 0 8px 40px rgba(201,162,39,0.2);
}

.service-card.featured::before {
    background: var(--gold-gradient);
    height: 4px;
    width: 0;
    top: 0;
    right: 0;
    transition: width 0.4s ease;
}

.service-card.featured:hover::before {
    width: 100%;
    height: 4px;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold-gradient);
    color: var(--black-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-pale);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card.featured .service-icon {
    background: rgba(201,162,39,0.15);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--gold-primary);
}

.service-card:hover .service-icon {
    background: var(--gold-gradient);
}

.service-card:hover .service-icon i {
    color: var(--black-primary);
}

.service-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: inherit;
}

.service-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card.featured .service-content p {
    color: rgba(255,255,255,0.7);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.service-card.featured .service-list li {
    color: rgba(255,255,255,0.7);
}

.service-list li i {
    color: var(--gold-primary);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: auto;
    transition: var(--transition);
}

.service-cta:hover {
    gap: 14px;
    color: var(--gold-dark);
}

.service-card.featured .service-cta {
    color: var(--gold-light);
}

/* ===== WHY US SECTION ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201,162,39,0.2);
}

.why-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
    border: 2px solid rgba(201,162,39,0.2);
}

.why-card:hover .why-icon-wrap {
    background: var(--gold-gradient);
    border-color: var(--gold-primary);
    transform: rotateY(180deg);
}

.why-icon-wrap i {
    font-size: 1.8rem;
    color: var(--gold-primary);
}

.why-card:hover .why-icon-wrap i {
    color: var(--black-primary);
}

.why-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black-primary);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== DESTINATIONS SECTION ===== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dest-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 24px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 16px;
}

.dest-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201,162,39,0.25);
}

.dest-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.dest-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black-primary);
    margin-bottom: 4px;
}

.dest-info p {
    font-size: 0.78rem;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.dest-badge {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--gold-dark);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid rgba(201,162,39,0.25);
}

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 0;
}

.testimonial-card {
    min-width: 100%;
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201,162,39,0.1);
    text-align: center;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
}

.testimonial-stars i {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--black-mid);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 28px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 5rem;
    color: var(--gold-pale);
    font-family: Georgia, serif;
    line-height: 0;
    vertical-align: -2rem;
    margin-left: 8px;
    color: var(--gold-primary);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar i {
    font-size: 3rem;
    color: var(--gold-primary);
    opacity: 0.6;
}

.author-info strong {
    display: block;
    font-weight: 700;
    color: var(--black-primary);
    font-size: 1rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 2px solid rgba(201,162,39,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.slider-btn:hover {
    background: var(--gold-gradient);
    color: var(--black-primary);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(201,162,39,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--gold-primary);
    transform: scale(1.3);
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(201,162,39,0.3);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: right;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--black-primary);
    gap: 16px;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gold-pale);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 0.95rem;
    border-top: 1px solid rgba(201,162,39,0.1);
    padding-top: 16px;
    margin-top: -1px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(201,162,39,0.25);
    transform: translateX(-4px);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--gold-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--gold-primary);
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black-primary);
    margin-bottom: 6px;
}

.contact-details p,
.contact-details a {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

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

.social-links-box {
    background: var(--white);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: var(--shadow-sm);
}

.social-links-box h4 {
    font-weight: 700;
    color: var(--black-primary);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-btn i {
    font-size: 1.2rem;
}

.social-btn.facebook {
    background: rgba(24,119,242,0.08);
    color: #1877F2;
    border: 1px solid rgba(24,119,242,0.2);
}

.social-btn.facebook:hover {
    background: #1877F2;
    color: var(--white);
    transform: translateX(-4px);
}

.social-btn.instagram {
    background: rgba(225,48,108,0.08);
    color: #E1306C;
    border: 1px solid rgba(225,48,108,0.2);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    transform: translateX(-4px);
}

.social-btn.whatsapp {
    background: rgba(37,211,102,0.08);
    color: #25D366;
    border: 1px solid rgba(37,211,102,0.2);
}

.social-btn.whatsapp:hover {
    background: #25D366;
    color: var(--white);
    transform: translateX(-4px);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201,162,39,0.1);
}

.contact-form h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black-primary);
    margin-bottom: 6px;
}

.form-note {
    font-size: 0.87rem;
    color: var(--gray-600);
    margin-bottom: 28px;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--black-primary);
    margin-bottom: 8px;
}

.form-group label span {
    color: var(--gold-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--black-primary);
    background: var(--gray-100);
    transition: var(--transition);
    direction: rtl;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--gold-gradient);
    color: var(--black-primary);
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201,162,39,0.4);
}

.form-success {
    margin-top: 20px;
    padding: 16px;
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.3);
    border-radius: var(--border-radius-sm);
    color: #1a7a3f;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.form-success i {
    font-size: 1.4rem;
    color: #25D366;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: waPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--black-primary);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 40px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-primary);
    font-size: 1.1rem;
    box-shadow: var(--shadow-gold);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black-primary);
    color: rgba(255,255,255,0.7);
}

.footer-top {
    padding: 70px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1) opacity(0.9);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.6);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    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: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(201,162,39,0.3);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold-light);
    gap: 14px;
}

.footer-col ul li a i {
    font-size: 0.75rem;
    color: var(--gold-primary);
    opacity: 0.7;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact-list li i {
    color: var(--gold-primary);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-list li a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-contact-list li a:hover {
    color: var(--gold-light);
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 70px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        order: -1;
    }

    .about-image-wrapper {
        min-height: 350px;
    }

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

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --navbar-h: 70px;
    }

    /* Top Bar */
    .top-bar-content {
        flex-direction: column;
        gap: 6px;
    }

    .top-bar-contact {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    /* Navbar */
    .nav-links {
        position: fixed;
        top: var(--navbar-h);
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - var(--navbar-h));
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 24px;
        gap: 6px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        transition: right 0.4s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        width: 100%;
        font-size: 1rem;
        padding: 12px 16px;
    }

    .btn-nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Hero */
    .hero {
        padding: 80px 0 60px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        padding: 20px;
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Why Us */
    .why-grid {
        grid-template-columns: 1fr;
    }

    /* Destinations */
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 32px 24px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Contact */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    /* About */
    .about-image-wrapper {
        min-height: 300px;
    }

    .badge-1, .badge-2, .badge-3 {
        display: none;
    }

    /* WhatsApp */
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }

    .back-to-top {
        bottom: 86px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .top-bar {
        display: none;
    }

    .nav-logo img {
        height: 50px;
    }
}


/* ===== STATIC MODE OVERRIDES ===== */
html {
    scroll-behavior: auto !important;
}

*, *::before, *::after {
    animation: none !important;
    transition: none !important;
}

#preloader,
.hero-particles,
.scroll-indicator,
.slider-controls {
    display: none !important;
}

.services-strip {
    padding: 18px 0;
}

.marquee-track {
    animation: none !important;
    transform: none !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.testimonials-track {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    transform: none !important;
}

.testimonial-card {
    min-width: 0 !important;
}

.hero-cta-note {
    margin: 18px 0 10px;
    color: var(--white);
    font-weight: 800;
    font-size: 1.12rem;
}

.hero-contact-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-contact-inline a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    color: var(--white);
    font-weight: 700;
}

.top-bar-info {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.top-bar-info a {
    color: var(--white);
    font-weight: 700;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
}

.social-btn.telegram {
    background: #229ED9;
    color: #fff;
}

.social-btn.linkedin {
    background: #0A66C2;
    color: #fff;
}

.social-btn.website {
    background: var(--black-primary);
    color: #fff;
}

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

.footer-contact-list li a {
    word-break: break-word;
}

@media (max-width: 768px) {
    .hero-contact-inline {
        justify-content: center;
    }

    .top-bar-info {
        justify-content: center;
    }
}

/* ===== SERVICE CARD FEATURED LIGHT (white instead of black) ===== */
.service-card.featured-light {
    background: var(--white);
    color: var(--gray-800, #333);
    border: 2px solid var(--gold-primary);
    box-shadow: 0 8px 40px rgba(201,162,39,0.18);
    position: relative;
}

.service-card.featured-light::before {
    background: var(--gold-gradient);
    height: 4px;
    width: 0;
    top: 0;
    right: 0;
    transition: width 0.4s ease;
}

.service-card.featured-light:hover::before {
    width: 100%;
    height: 4px;
}

.service-card.featured-light .service-icon {
    background: var(--gold-pale);
}

.service-card.featured-light .service-icon i {
    color: var(--gold-primary);
}

.service-card.featured-light .service-content h3 {
    color: var(--black-primary);
}

.service-card.featured-light .service-content p {
    color: var(--gray-600);
}

.service-card.featured-light .service-list li {
    color: var(--gray-600);
}

.service-card.featured-light .service-cta {
    color: var(--gold-primary);
}

.service-card.featured-light .featured-badge {
    background: var(--gold-gradient);
    color: var(--black-primary);
}

/* ===== SERVICE MODAL (Categories + Survey) ===== */
.svc-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.svc-modal-overlay.active {
    display: flex;
    animation: svcFadeIn 0.25s ease;
}

@keyframes svcFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.svc-modal {
    background: #fff;
    border-radius: 18px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    direction: rtl;
    animation: svcSlideUp 0.3s ease;
}

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

.svc-modal-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #fff;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px 18px 0 0;
    position: sticky;
    top: 0;
    z-index: 5;
}

.svc-modal-header h2 {
    font-size: 1.35rem;
    margin: 0;
    color: var(--gold-primary);
    font-weight: 800;
}

.svc-modal-header .svc-back-btn {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 6px 14px;
    cursor: pointer;
    font-size: 0.85rem;
    margin-left: 10px;
    font-family: inherit;
    transition: all 0.25s;
}

.svc-back-btn:hover {
    background: var(--gold-primary);
    color: #1a1a1a;
}

.svc-modal-close {
    background: transparent;
    color: #fff;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}

.svc-modal-close:hover {
    background: rgba(255,255,255,0.15);
    color: var(--gold-primary);
}

.svc-modal-body {
    padding: 28px;
}

.svc-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-pale);
    display: flex;
    align-items: center;
    gap: 10px;
}

.svc-section-title i {
    color: var(--gold-primary);
}

.svc-section-block {
    margin-bottom: 26px;
}

.svc-subcategories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.svc-subcat-btn {
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 12px;
    padding: 14px 16px;
    text-align: right;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.92rem;
    color: #333;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.svc-subcat-btn:hover {
    border-color: var(--gold-primary);
    background: var(--gold-pale);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(201,162,39,0.18);
}

.svc-subcat-btn i {
    color: var(--gold-primary);
    font-size: 0.85rem;
}

/* Survey form */
.svc-survey-intro {
    background: var(--gold-pale);
    border-right: 4px solid var(--gold-primary);
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 22px;
    color: #333;
    font-size: 0.92rem;
    line-height: 1.7;
}

.svc-form-group {
    margin-bottom: 16px;
}

.svc-form-group label {
    display: block;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    font-size: 0.92rem;
}

.svc-form-group label .req {
    color: #e53935;
    margin-right: 4px;
}

.svc-form-group input,
.svc-form-group select,
.svc-form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #fff;
    color: #333;
    transition: all 0.2s;
}

.svc-form-group input:focus,
.svc-form-group select:focus,
.svc-form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}

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

.svc-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 600px) {
    .svc-form-grid {
        grid-template-columns: 1fr;
    }
    .svc-subcategories {
        grid-template-columns: 1fr;
    }
    .svc-modal-body {
        padding: 18px;
    }
}

.svc-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}

.svc-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.svc-submit-btn i {
    font-size: 1.3rem;
}

.svc-note-file {
    font-size: 0.78rem;
    color: #888;
    margin-top: 4px;
    display: block;
}


.social-btn.snapchat {
    background: #FFFC00;
    color: #111111;
    border: 1px solid rgba(17,17,17,0.15);
}

.social-btn.snapchat:hover {
    background: #111111;
    color: #FFFC00;
    transform: translateX(-4px);
}


.footer-social a[aria-label="سناب شات"] {
    background: #FFFC00;
    color: #111111;
}

.footer-social a[aria-label="سناب شات"]:hover {
    background: #111111;
    color: #FFFC00;
}
