/* Arabic RTL Modern Design System */
:root {
    /* Colors - HSL Format */
    --background: hsl(244, 100%, 99%);
    --foreground: hsl(215, 25%, 27%);

    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(215, 25%, 27%);

    /* Primary: Blue Sky (#4f79d3) */
    --primary: hsl(225, 64%, 57%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-glow: hsl(225, 64%, 70%);

    /* Secondary: Light Gray (#f4f6fa) */
    --secondary: hsl(214, 44%, 97%);
    --secondary-foreground: hsl(215, 25%, 27%);

    --muted: hsl(214, 44%, 97%);
    --muted-foreground: hsl(215, 16%, 47%);

    /* Accent: Golden Yellow (#ffd95b) */
    --accent: hsl(48, 100%, 68%);
    --accent-foreground: hsl(215, 25%, 27%);

    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(0, 0%, 98%);

    --border: hsl(214, 32%, 91%);
    --input: hsl(214, 32%, 91%);
    --ring: hsl(225, 64%, 57%);

    --radius: 1rem;

    /* Arabic Design Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(225, 64%, 57%), hsl(225, 64%, 70%));
    --gradient-secondary: linear-gradient(135deg, hsl(244, 100%, 99%), hsl(214, 44%, 97%));
    --gradient-accent: linear-gradient(135deg, hsl(48, 100%, 68%), hsl(45, 100%, 75%));
    --gradient-hero: linear-gradient(135deg, hsla(225, 64%, 57%, 0.9), hsla(225, 64%, 70%, 0.8));

    /* Shadows */
    --shadow-soft: 0 4px 20px hsla(225, 64%, 57%, 0.1);
    --shadow-medium: 0 8px 30px hsla(225, 64%, 57%, 0.15);
    --shadow-large: 0 20px 40px hsla(225, 64%, 57%, 0.2);

    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    direction: rtl;
}

body {
    font-family: 'Tajawal', 'Cairo', 'Segoe UI', 'Arial', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    direction: rtl;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceSoft {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -8px, 0);
    }

    70% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -4px, 0);
    }

    90% {
        transform: translate3d(0, -2px, 0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out;
}

.animate-bounce-soft {
    animation: bounceSoft 2s ease-in-out infinite;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1rem;
    line-height: 1;
    gap: 0.5rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    box-shadow: 0 0 30px hsla(225, 64%, 57%, 0.3);
}

.btn-accent {
    background: var(--accent);
    color: var(--accent-foreground);
    box-shadow: var(--shadow-soft);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20b858;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn.w-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: hsla(0, 0%, 100%, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    padding: 0 1rem;
}

.logo {
    /* display: flex; */
    align-items: center;
    gap: 0.5rem;
}


.logo-icon {
    width: 10vw;
    /* 10% of viewport width */
    max-width: 100px;
    /* don't exceed 50px */
    height: auto;
    /* keep aspect ratio if image */
    aspect-ratio: 1 / 0.6;
    /* maintain square shape */
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    box-shadow: none;
}


.logo-icon img {
    width: 49%;
    height: auto;
    border-radius: 0;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.125rem;
    color: var(--primary);
    font-weight: 700;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.nav-desktop {
    display: none;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

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

.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: block;
    }
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    background: var(--secondary);
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1rem;
    text-align: right;
    transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1544716278-ca5e3f4abd8c?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: bounceSoft 3s ease-in-out infinite;
}

.hero-decoration-1 {
    top: 5rem;
    right: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: hsla(48, 100%, 68%, 0.2);
}

.hero-decoration-2 {
    bottom: 10rem;
    left: 4rem;
    width: 4rem;
    height: 4rem;
    background: hsla(225, 64%, 57%, 0.2);
}

.hero-container {
    position: relative;
    z-index: 10;
    padding-top: 6rem;
    padding-bottom: 3rem;
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    min-height: 80vh;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

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

@media (min-width: 1024px) {
    .hero-text {
        text-align: right;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: hsla(48, 100%, 68%, 0.2);
    color: var(--accent-foreground);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
}

.hero-badge svg {
    color: var(--accent);
    fill: currentColor;
}

.hero-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

/* Ensure highlighted hero text is clearly visible */
.hero-title .text-gradient {
    background: none;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: hsla(0, 0%, 100%, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .hero-features {
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-feature {
    display: flex;
    align-items: center;
    color: hsla(0, 0%, 100%, 0.9);
    gap: 0.5rem;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--accent);
    border-radius: 50%;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

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

.hero-circle {
    position: relative;
    width: 20rem;
    height: 20rem;
    background: hsla(0, 0%, 100%, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-large);
}

@media (min-width: 1024px) {
    .hero-circle {
        width: 24rem;
        height: 24rem;
    }
}

.hero-emoji {
    font-size: 5rem;
    animation: bounceSoft 2s ease-in-out infinite;
}

@media (min-width: 1024px) {
    .hero-emoji {
        font-size: 6rem;
    }
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    animation: bounceSoft 2s ease-in-out infinite;
}

.floating-element-1 {
    top: -1rem;
    right: -1rem;
    width: 4rem;
    height: 4rem;
    background: var(--accent);
    font-size: 1.5rem;
}

.floating-element-2 {
    bottom: -1rem;
    left: -1rem;
    width: 3rem;
    height: 3rem;
    background: white;
    font-size: 1.25rem;
}

.scroll-indicator {
    text-align: center;
    margin-top: 3rem;
    animation: bounceSoft 2s ease-in-out infinite;
}

.scroll-link {
    color: hsla(0, 0%, 100%, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.scroll-link:hover {
    color: white;
}

.scroll-link svg {
    width: 2rem;
    height: 2rem;
    margin: 0 auto;
}

.scroll-link p {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* About Section */
.about {
    padding: 3rem 0;
    background: hsla(214, 44%, 97%, 0.5);
}

.about-content {
    display: grid;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

.about-image {
    order: 2;
}

@media (min-width: 768px) {
    .about-image {
        order: 1;
    }
}

@media (max-width: 767px) {
    .logo {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }

    .logo-icon {
        width: 18vw;
        max-width: 140px;
    }

    .logo-text h1 {
        font-size: 1.25rem;
    }

    .logo-text p {
        font-size: 0.875rem;
    }

    .about {
        padding: 2rem 0;
    }

    .about-content {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .about-image-wrapper {
        max-width: 15rem;
    }

    .founder-image {
        border-radius: 1rem;
    }

    .features-section {
        margin-top: 1.5rem;
    }

    .features-grid {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .feature-card {
        padding: 0.75rem;
    }

    .feature-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .feature-icon svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .feature-card h4 {
        font-size: 0.8rem;
    }

    .feature-card p {
        font-size: 0.7rem;
    }
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 20rem;
    margin: 0 auto;
}

.founder-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.founder-image:hover {
    transform: translateY(-2px);
}

.about-text {
    order: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .about-text {
        order: 2;
        text-align: right;
    }
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: hsla(225, 64%, 57%, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.section-badge svg {
    fill: currentColor;
}

.section-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.about-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-description p {
    margin-bottom: 1rem;
}

.about-description .highlight {
    font-weight: 500;
    color: var(--primary);
}

.quote-box {
    background: hsla(48, 100%, 68%, 0.1);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid hsla(48, 100%, 68%, 0.2);
    margin-top: 1.5rem;
}

.quote-box p {
    color: var(--accent-foreground);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.features-section {
    margin-top: 2rem;
}

.features-title {
    font-size: 1.25rem;
    text-align: center;
    color: var(--foreground);
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .features-title {
        font-size: 2rem;
    }
}

.features-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: hsla(0, 0%, 100%, 0.8);
    backdrop-filter: blur(8px);
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 0;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    box-shadow: var(--shadow-medium);
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.feature-card h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.feature-card p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.4;
    margin: 0;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    background: hsla(225, 64%, 57%, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-weight: 500;
    font-size: 0.875rem;
    box-shadow: var(--shadow-soft);
    gap: 0.5rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

.service-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.service-card h3 {
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

.process-section {
    margin-top: 5rem;
}

.process-title {
    font-size: 1.5rem;
    text-align: center;
    color: var(--foreground);
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .process-title {
        font-size: 2rem;
    }
}

.process-steps {
    display: grid;
    gap: 2rem;
    max-width: 4xl;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-step {
    text-align: center;
}

.step-number {
    position: relative;
    margin-bottom: 1.5rem;
}

.step-number span {
    width: 5rem;
    height: 5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    margin: 0 auto;
    box-shadow: var(--shadow-large);
}

.step-emoji {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    font-size: 1.5rem;
}

.process-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.services-cta {
    background: var(--gradient-primary);
    border-radius: 2rem;
    padding: 2rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-large);
    margin-top: 4rem;
}

.services-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: hsla(0, 0%, 100%, 0.9);
}

/* Why Us Section */
.why-us {
    padding: 5rem 0;
    background: hsla(214, 44%, 97%, 0.3);
}

.advantages-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advantage-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    border: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

.advantage-card:hover .advantage-emoji {
    animation: bounce 1s ease-in-out;
}

.advantage-icon {
    position: relative;
    margin-bottom: 1.5rem;
}

.advantage-icon svg {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
    border-radius: 1.5rem;
    padding: 1.25rem;
    color: white;
    box-shadow: var(--shadow-large);
    transition: var(--transition-smooth);
}

.advantage-emoji {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    font-size: 1.5rem;
}

.advantage-card h3 {
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.advantage-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

.statistics {
    background: var(--gradient-primary);
    border-radius: 2rem;
    padding: 2rem 3rem;
    display: grid;
    gap: 2rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-large);
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .statistics {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-label {
    color: hsla(0, 0%, 100%, 0.9);
}

.testimonials-section {
    margin-bottom: 3rem;
}

.testimonials-title {
    font-size: 1.5rem;
    text-align: center;
    color: var(--foreground);
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .testimonials-title {
        font-size: 2rem;
    }
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 0;
}

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

.testimonial-rating {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 0.25rem;
}

.testimonial-rating svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
    fill: currentColor;
}

.testimonial-card p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
}

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

.author-image {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-medium);
}

.author-info {
    text-align: right;
}

.author-name {
    font-weight: 700;
    color: var(--foreground);
}

.author-location {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.trust-indicators {
    display: grid;
    gap: 1.5rem;
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 768px) {
    .trust-indicators {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    font-weight: 500;
    gap: 0.5rem;
}

.trust-emoji {
    font-size: 1.125rem;
}

.trust-item svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.contact-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.contact-decoration-1 {
    top: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
    background: hsla(225, 64%, 57%, 0.05);
}

.contact-decoration-2 {
    bottom: 0;
    right: 0;
    width: 12rem;
    height: 12rem;
    background: hsla(48, 100%, 68%, 0.1);
}

.contact-content {
    display: grid;
    gap: 3rem;
    max-width: 6xl;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-wrapper {
    order: 2;
}

@media (min-width: 1024px) {
    .contact-form-wrapper {
        order: 1;
    }
}

.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-large);
    border: 0;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--foreground);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-align: right;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
    text-align: right;
    direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(225, 64%, 57%, 0.1);
}

.form-group textarea {
    resize: none;
}

.whatsapp-link {
    text-align: center;
}

.whatsapp-link p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.contact-methods {
    order: 1;
}

@media (min-width: 1024px) {
    .contact-methods {
        order: 2;
    }
}

.contact-methods h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 2rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .contact-methods h3 {
        text-align: right;
    }
}

.contact-method {
    display: flex;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    border: 0;
    cursor: pointer;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.method-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    transition: var(--transition-smooth);
}

.contact-method:hover .method-icon {
    transform: scale(1.1);
}

.method-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.method-icon-whatsapp {
    background: #dcfce7;
    color: #16a34a;
}

.method-icon-phone {
    background: #dbeafe;
    color: #2563eb;
}

.method-icon-mail {
    background: #f3e8ff;
    color: #9333ea;
}

.method-icon-location {
    background: #fed7aa;
    color: #ea580c;
}

.method-info {
    flex: 1;
    text-align: right;
}

.method-info h4 {
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.method-info p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.method-info span {
    color: var(--primary);
    font-weight: 500;
}

.special-message {
    background: var(--gradient-accent);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    border: 0;
    box-shadow: var(--shadow-medium);
}

.special-message svg {
    width: 2rem;
    height: 2rem;
    color: var(--accent-foreground);
    margin: 0 auto 1rem;
    fill: currentColor;
}

.special-message h4 {
    font-weight: 700;
    color: var(--accent-foreground);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.special-message p {
    color: hsla(215, 25%, 27%, 0.9);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.special-message small {
    color: hsla(215, 25%, 27%, 0.8);
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing-section {
    margin-top: 5rem;
}

.pricing-grid {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-item {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 0;
}

.pricing-item h3 {
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.pricing-item p {
    color: var(--muted-foreground);
    margin: 0;
}

.cta-pricing {
    text-align: center;
    margin-top: 2rem;
}

.faq-section {
    margin-top: 5rem;
    max-width: 4xl;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    font-size: 1.5rem;
    text-align: center;
    color: var(--foreground);
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .faq-title {
        font-size: 2rem;
    }
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    border: 0;
    text-align: right;
}

.faq-card h4 {
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.faq-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--foreground);
    color: var(--background);
    position: relative;
    overflow: hidden;
}

.footer-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.footer-decoration-1 {
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background: hsla(225, 64%, 57%, 0.1);
}

.footer-decoration-2 {
    bottom: 0;
    left: 0;
    width: 12rem;
    height: 12rem;
    background: hsla(48, 100%, 68%, 0.1);
}

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

.footer-main {
    padding: 4rem 0;
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (min-width: 1024px) {
    .footer-brand {
        text-align: right;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .footer-logo {
        justify-content: flex-start;
    }
}

.footer-logo-icon {
    width: min(10vw, 5rem);
    height: min(10vw, 5rem);

    border-radius: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(1rem + 0.3vw);
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo-text h3 {
    font-size: 1.5rem;
    color: var(--background);
    font-weight: 700;
}

.footer-logo-text p {
    color: hsla(0, 0%, 100%, 0.8);
}

.footer-description {
    color: hsla(0, 0%, 100%, 0.8);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .footer-description {
        margin-left: 0;
        margin-right: 0;
    }
}

.footer-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-feature {
    display: flex;
    align-items: center;
    color: hsla(0, 0%, 100%, 0.8);
    font-size: 0.875rem;
    gap: 0.5rem;
}

.footer-feature svg {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
}

.footer-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .footer-contact-methods {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .footer-contact-methods {
        justify-content: flex-start;
    }
}

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

@media (min-width: 1024px) {
    .footer-links {
        text-align: right;
    }
}

.footer-links h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--background);
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: hsla(0, 0%, 100%, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--background);
    transform: translateX(4px);
}

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

@media (min-width: 1024px) {
    .footer-contact {
        text-align: right;
    }
}

.footer-contact h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--background);
    margin-bottom: 1.5rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsla(0, 0%, 100%, 0.8);
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .contact-info-item {
        justify-content: flex-start;
    }
}

.contact-info-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
}

.contact-info-item div {
    text-align: right;
}

.contact-info-item div div {
    font-weight: 500;
}

.contact-info-item small {
    font-size: 0.875rem;
}

.footer-testimonial {
    background: hsla(225, 64%, 57%, 0.1);
    padding: 2rem 0;
}

.footer-testimonial .container {
    text-align: center;
}

.footer-testimonial svg {
    width: 2rem;
    height: 2rem;
    color: var(--accent);
    margin: 0 auto 1rem;
    fill: currentColor;
    animation: bounceSoft 2s ease-in-out infinite;
}

.footer-testimonial p {
    color: hsla(0, 0%, 100%, 0.9);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.footer-testimonial small {
    color: hsla(0, 0%, 100%, 0.6);
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.2);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        text-align: right;
    }
}

.footer-copyright {
    color: hsla(0, 0%, 100%, 0.6);
    font-size: 0.875rem;
}

.footer-made-with {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsla(0, 0%, 100%, 0.6);
    font-size: 0.875rem;
}

.footer-made-with svg {
    width: 1rem;
    height: 1rem;
    color: #ef4444;
    fill: currentColor;
}

.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-large);
    transition: var(--transition-smooth);
    z-index: 1000;
    display: none;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px hsla(225, 64%, 57%, 0.3);
}

.back-to-top.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Thank You Page */
.thank-you-page {
    min-height: 100vh;
    background: hsla(214, 44%, 97%, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.thank-you-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: bounceSoft 3s ease-in-out infinite;
}

.thank-you-decoration-1 {
    top: 5rem;
    right: 5rem;
    width: 8rem;
    height: 8rem;
    background: hsla(225, 64%, 57%, 0.1);
}

.thank-you-decoration-2 {
    bottom: 5rem;
    left: 5rem;
    width: 6rem;
    height: 6rem;
    background: hsla(48, 100%, 68%, 0.2);
}

.thank-you-container {
    max-width: 32rem;
    width: 100%;
    position: relative;
    z-index: 10;
}

.thank-you-card {
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-large);
    text-align: center;
    border: 0;
}

.success-icon-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.success-icon {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(to bottom right, #10b981, #047857);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-large);
}

.success-icon svg {
    width: 3rem;
    height: 3rem;
    color: white;
}

.floating-star {
    position: absolute;
    font-size: 1.5rem;
    animation: bounceSoft 2s ease-in-out infinite;
}

.floating-star-1 {
    top: -0.5rem;
    right: -0.5rem;
    animation-delay: 0.5s;
}

.floating-star-2 {
    bottom: -0.5rem;
    left: -0.5rem;
    animation-delay: 1s;
}

.floating-star-3 {
    top: 0.5rem;
    left: -1rem;
    animation-delay: 1.5s;
}

.thank-you-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .thank-you-title {
        font-size: 2.5rem;
    }
}

.thank-you-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.whats-next {
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    padding: 1.5rem;
    color: white;
    margin-bottom: 2rem;
}

.whats-next h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    font-size: 0.875rem;
}

.next-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-icon {
    width: 2rem;
    height: 2rem;
    background: hsla(0, 0%, 100%, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.response-time {
    background: hsla(48, 100%, 68%, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.response-time-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.response-time-header svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent);
    fill: currentColor;
}

.response-time-header span {
    color: var(--accent-foreground);
    font-weight: 700;
}

.response-time p {
    color: hsla(215, 25%, 27%, 0.8);
    margin: 0;
}

.response-time strong {
    color: var(--accent);
}

.contact-alternatives {
    margin-bottom: 2rem;
}

.contact-alternatives p {
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.alternative-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .alternative-buttons {
        flex-direction: row;
    }
}

.testimonial-quote {
    background: hsla(214, 44%, 97%, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.quote-rating {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
    gap: 0.25rem;
}

.quote-rating svg {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
    fill: currentColor;
}

.testimonial-quote p {
    color: var(--muted-foreground);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.testimonial-quote small {
    color: var(--accent);
    font-weight: 500;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .action-buttons {
        flex-direction: row;
    }
}

.footer-message {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.footer-message p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin: 0;
}

/* 404 Page */
.not-found-page {
    min-height: 100vh;
    background: hsla(214, 44%, 97%, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    direction: rtl;
}

.not-found-container {
    max-width: 28rem;
    width: 100%;
}

.not-found-content {
    text-align: center;
}

.not-found-emoji {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.not-found-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.not-found-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.not-found-subtitle {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.not-found-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .not-found-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.not-found-help {
    text-align: right;
    color: var(--muted-foreground);
}

.not-found-help ul {
    list-style: none;
    padding-right: 1rem;
}

.not-found-help li {
    margin-bottom: 0.5rem;
    position: relative;
}

.not-found-help li::before {
    content: "•";
    position: absolute;
    right: -1rem;
    color: var(--primary);
}

/* Responsive Utilities */
.w-full {
    width: 100%;
}

.mt-4 {
    margin-top: 1rem;
}

/* Loading State */
.loading-spinner {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid hsla(0, 0%, 100%, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Image Slider Styles for Public Pages */
.image-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-main-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.slider-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slider-main-image img:hover {
    transform: scale(1.05);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 15px;
}

.slider-nav.next {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dot.active {
    background: white;
    transform: scale(1.3);
}

/* Content Image Grid for Multiple Images */
.content-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.content-image-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.content-image-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.image-caption {
    padding: 0.5rem;
    background: white;
    font-size: 0.9rem;
    color: var(--muted-foreground);
    text-align: center;
}

.featured-image {
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}