/* ==========================================
   MOAZ EL-TANTAWE PORTFOLIO
   Premium Dark Theme - Bilingual (AR/EN)
   ========================================== */

/* CSS Variables */
:root {
    --bg-primary: #0a0f1c;
    --bg-secondary: #111827;
    --bg-card: #1a2235;
    --bg-card-hover: #242f47;

    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --accent-gold: #e69500;
    --accent-gold-light: #f59e0b;
    --accent-gold-dark: #b45309;

    --facebook: #1877f2;
    --instagram: #e4405f;
    --tiktok: #ff0050;
    --snapchat: #fffc00;
    --google: #4285f4;
    --whatsapp: #25d366;

    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
    --gradient-dark: linear-gradient(135deg, #0a0f1c 0%, #1a2235 100%);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 30px rgba(245, 158, 11, 0.3);

    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --font-primary: 'Cairo', 'Poppins', sans-serif;
    --font-english: 'Poppins', sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* RTL/LTR Support */
body[dir="ltr"] {
    font-family: var(--font-english);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   LANGUAGE TOGGLE (Integrated in Navbar)
   ========================================== */
.lang-toggle {
    display: flex;
    gap: 3px;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-left: auto;
    margin-right: 20px;
}

body[dir="ltr"] .lang-toggle {
    margin-left: 20px;
    margin-right: auto;
}

.lang-btn {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: var(--font-primary);
}

.lang-btn.active {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(10, 15, 28, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 15, 28, 0.98);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-logo .logo-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-radius: var(--border-radius-sm);
    font-weight: 800;
    margin-left: 8px;
}

body[dir="ltr"] .nav-logo .logo-text {
    margin-left: 0;
    margin-right: 8px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:not(.nav-cta):hover {
    color: var(--text-primary);
}

.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-normal);
}

body[dir="ltr"] .nav-menu a:not(.nav-cta)::after {
    right: auto;
    left: 0;
}

.nav-menu a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-gold);
    color: var(--bg-primary) !important;
    padding: 10px 25px !important;
    border-radius: var(--border-radius-xl);
    font-weight: 600 !important;
}

.nav-cta:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

.hero-glow-2 {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(24, 119, 242, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulse 5s ease-in-out infinite reverse;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.1);
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(245, 158, 11, 0.1);
    animation: float 6s ease-in-out infinite;
    will-change: transform, opacity;
}

.float-icon:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.float-icon:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.float-icon:nth-child(3) {
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.float-icon:nth-child(4) {
    top: 40%;
    right: 10%;
    animation-delay: 3s;
}

.float-icon:nth-child(5) {
    bottom: 20%;
    right: 25%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.2;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

/* Hero Photo */
.hero-photo {
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.photo-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    padding: 4px;
    background: var(--gradient-gold);
    /* box-shadow: 0 0 40px rgba(245, 158, 11, 0.4); Removed to use pseudo-element */
    z-index: 1;
}

.photo-wrapper::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, transparent 70%);
    opacity: 0.6;
    z-index: -1;
    animation: glowOpacity 3s ease-in-out infinite;
}

@keyframes glowOpacity {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    position: relative;
    z-index: 2;
}

.photo-placeholder {
    position: absolute;
    inset: 4px;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 3rem;
    z-index: 2;
}

.photo-wrapper.no-photo .photo-placeholder {
    display: flex;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 10px 25px;
    border-radius: var(--border-radius-xl);
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.hero-badge span {
    color: var(--accent-gold-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-title {
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-title .greeting {
    display: block;
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 10px;
}

.hero-title .name {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    font-family: var(--font-english);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-family: var(--font-english);
    font-weight: 500;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 35px;
    line-height: 1.9;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-description .highlight {
    color: var(--accent-gold);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.5s backwards;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-primary);
}

.btn-primary:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.hero-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.platform-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.platform-icons {
    display: flex;
    gap: 10px;
}

.platform-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: var(--border-radius-md);
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.platform-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    margin-bottom: 5px;
}

.platform-icon:hover::after {
    opacity: 1;
    visibility: visible;
}

.platform-icon:hover {
    background: var(--bg-card-hover);
    color: var(--accent-gold);
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, 0.3);
}

/* Hero Trust */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    animation: fadeInUp 0.8s ease 0.7s backwards;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.trust-badge.highlight {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-gold);
    border-color: rgba(245, 158, 11, 0.3);
}

.trust-logos span:not(:last-child):not(:nth-last-child(2)) {
    color: var(--text-muted);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
    will-change: transform;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 35px 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--shadow-gold);
}

.stat-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--accent-gold);
    font-size: 1.6rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--font-english);
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================
   SECTION COMMON STYLES
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-gold);
    padding: 8px 20px;
    border-radius: var(--border-radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-desc.long-text {
    max-width: 900px;
    text-align: right;
    line-height: 1.8;
}

body[dir="ltr"] .section-desc.long-text {
    text-align: left;
}

.desc-list {
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.desc-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-primary);
}

.desc-list li i {
    color: var(--accent-gold);
}

.desc-highlight {
    margin-top: 25px;
    text-align: center;
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.2rem;
    padding: 15px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: start;
}

.about-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.9;
    text-align: right;
}

body[dir="ltr"] .about-intro {
    text-align: left;
}

.about-intro strong {
    color: var(--accent-gold);
}

.about-specialty {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.8;
    text-align: right;
    padding: 20px;
    background: rgba(245, 158, 11, 0.05);
    border-radius: var(--border-radius-md);
    border-right: 4px solid var(--accent-gold);
}

body[dir="ltr"] .about-specialty {
    text-align: left;
    border-right: none;
    border-left: 4px solid var(--accent-gold);
}

.about-specialty strong {
    color: var(--accent-gold);
    font-weight: 700;
}

.about-highlights {
    display: grid;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.highlight-item:hover {
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateX(-5px);
}

body[dir="ltr"] .highlight-item:hover {
    transform: translateX(5px);
}

.highlight-item i {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-top: 3px;
}

.highlight-item div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.highlight-item strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.highlight-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* About Sidebar */
.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-markets {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-markets h3 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-primary);
}

.markets-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.market-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-xl);
    transition: var(--transition-normal);
}

.market-item:hover {
    background: rgba(245, 158, 11, 0.1);
    transform: scale(1.05);
}

.market-flag {
    font-size: 1.3rem;
}

.market-name {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.about-location {
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.location-item i {
    color: var(--accent-gold);
    width: 20px;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--bg-card);
    padding: 35px 25px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--shadow-gold);
}

.service-card.featured {
    border-color: rgba(245, 158, 11, 0.3);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.service-icon.facebook {
    background: rgba(24, 119, 242, 0.15);
    color: var(--facebook);
}

.service-icon.tiktok {
    background: rgba(255, 0, 80, 0.15);
    color: var(--tiktok);
}

.service-icon.google {
    background: rgba(66, 133, 244, 0.15);
    color: var(--google);
}

.service-icon.snapchat {
    background: rgba(255, 252, 0, 0.15);
    color: var(--snapchat);
}

.service-icon.funnel {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-gold);
}

.service-icon.analytics {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-family: var(--font-english);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.service-features li i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

/* ==========================================
   INDUSTRIES SECTION
   ========================================== */
.industries {
    padding: 100px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.industry-item:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-5px);
}

.industry-item i {
    font-size: 2.2rem;
    color: var(--accent-gold);
}

.industry-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

/* Industries CTA */
.industries-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-radius: var(--border-radius-xl);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.btn-large:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.6);
}

.btn-large i {
    font-size: 1.4rem;
}

/* ==========================================
   RESULTS SECTION
   ========================================== */
.results {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.result-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.result-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-5px);
}

.result-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--accent-gold);
    font-size: 1.6rem;
}

.result-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.result-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ==========================================
   PORTFOLIO SECTION
   ========================================== */
.portfolio {
    padding: 100px 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.portfolio-carousel {
    position: relative;
    max-width: 500px;
    height: 450px;
    margin: 0 auto;
    perspective: 1500px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: grab;
    backface-visibility: hidden;
}

.carousel-slide:active {
    cursor: grabbing;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--bg-card);
    pointer-events: none;
}

/* 3D Stack States */
.carousel-slide.active {
    z-index: 10;
    transform: translateZ(0) scale(1);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow:
        0 0 30px rgba(245, 158, 11, 0.3),
        0 30px 60px rgba(0, 0, 0, 0.4);
}

.carousel-slide.prev-1 {
    z-index: 9;
    transform: translateX(-25%) translateZ(-100px) rotateY(8deg) scale(0.9);
    opacity: 0.8;
    filter: brightness(0.7);
}

.carousel-slide.prev-2 {
    z-index: 8;
    transform: translateX(-45%) translateZ(-200px) rotateY(12deg) scale(0.8);
    opacity: 0.5;
    filter: brightness(0.5);
}

.carousel-slide.next-1 {
    z-index: 9;
    transform: translateX(25%) translateZ(-100px) rotateY(-8deg) scale(0.9);
    opacity: 0.8;
    filter: brightness(0.7);
}

.carousel-slide.next-2 {
    z-index: 8;
    transform: translateX(45%) translateZ(-200px) rotateY(-12deg) scale(0.8);
    opacity: 0.5;
    filter: brightness(0.5);
}

.carousel-slide.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateZ(-500px) scale(0.5);
}

/* RTL Support */
body[dir="ltr"] .carousel-slide.prev-1 {
    transform: translateX(25%) translateZ(-100px) rotateY(-8deg) scale(0.9);
}

body[dir="ltr"] .carousel-slide.prev-2 {
    transform: translateX(45%) translateZ(-200px) rotateY(-12deg) scale(0.8);
}

body[dir="ltr"] .carousel-slide.next-1 {
    transform: translateX(-25%) translateZ(-100px) rotateY(8deg) scale(0.9);
}

body[dir="ltr"] .carousel-slide.next-2 {
    transform: translateX(-45%) translateZ(-200px) rotateY(12deg) scale(0.8);
}

/* Navigation Buttons - Premium Style */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: 2px solid rgba(245, 158, 11, 0.5);
    border-radius: 50%;
    background: rgba(26, 34, 53, 0.9);
    backdrop-filter: blur(10px);
    color: var(--accent-gold);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 20;
    box-shadow:
        0 0 20px rgba(245, 158, 11, 0.2),
        inset 0 0 20px rgba(245, 158, 11, 0.05);
}

.carousel-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-gold);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-color: transparent;
    box-shadow:
        0 0 30px rgba(245, 158, 11, 0.6),
        0 10px 40px rgba(245, 158, 11, 0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: -80px;
}

.carousel-next {
    right: -80px;
}

body[dir="ltr"] .carousel-prev i {
    transform: rotate(180deg);
}

body[dir="ltr"] .carousel-next i {
    transform: rotate(180deg);
}

/* Counter */
.carousel-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 34, 53, 0.95);
    padding: 10px 25px;
    border-radius: var(--border-radius-xl);
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 80px;
    flex-wrap: wrap;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition-normal);
}

.carousel-dot:hover {
    background: rgba(245, 158, 11, 0.4);
    border-color: rgba(245, 158, 11, 0.5);
}

.carousel-dot.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
}

/* Portfolio Social Links */
.portfolio-social {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.portfolio-social>span {
    color: var(--text-muted);
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
}

.social-link.tiktok:hover {
    background: linear-gradient(135deg, #00f2ea, #ff0050);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 80, 0.4);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    box-shadow: 0 10px 30px rgba(253, 29, 29, 0.4);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}

/* ==========================================
   PORTFOLIO SECTION
   ========================================== */
.portfolio {
    padding: 100px 0;
    background: var(--bg-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column-reverse;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--shadow-gold);
}

.portfolio-image {
    min-height: 250px;
    height: auto;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.portfolio-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-normal);
}

.portfolio-card:hover .portfolio-image::after {
    opacity: 1;
}

.portfolio-image img,
.portfolio-image.slideshow {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}



.image-overlay {
    position: absolute;
    inset: 0;
    /* Removed background and backdrop-filter */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 2;
}

.portfolio-card:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    color: var(--accent-gold);
    font-size: 2.5rem;
    transform: translateY(20px);
    transition: var(--transition-normal);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.portfolio-card:hover .image-overlay i {
    transform: translateY(0);
}

.portfolio-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-title {
    font-size: 1.1rem;
    font-family: var(--font-english);
    margin-bottom: 5px;
    line-height: 1.4;
    color: var(--text-primary);
}

.case-highlight {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 400;
}

/* Slideshow / Image Stack */
.portfolio-image.slideshow {
    position: relative;
    background: #000;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
}

.slide-img {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 1;
    margin-bottom: 5px;
    z-index: 1;
}



.slide-img:last-child {
    margin-bottom: 0;
}

.case-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.case-details {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.case-block strong {
    display: block;
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-bottom: 4px;
    font-family: var(--font-english);
}

.case-block p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.services-tags span {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.case-metrics {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.case-metrics li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-family: var(--font-english);
}

.case-metrics li i {
    color: var(--whatsapp);
    font-size: 0.9rem;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 15px;
    line-height: 1.4;
}

.contact-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.contact-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateX(-5px);
}

body[dir="ltr"] .contact-card:hover {
    transform: translateX(5px);
}

.contact-card.whatsapp:hover {
    border-color: var(--whatsapp);
    background: rgba(37, 211, 102, 0.1);
}

.contact-card.tiktok:hover {
    border-color: #ff0050;
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.1), rgba(255, 0, 80, 0.1));
}

.contact-card.instagram:hover {
    border-color: #fd1d1d;
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.1), rgba(253, 29, 29, 0.1));
}

.contact-card.facebook:hover {
    border-color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.contact-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--border-radius-md);
    color: var(--accent-gold);
    font-size: 1.4rem;
}

.contact-card.whatsapp .contact-icon {
    background: rgba(37, 211, 102, 0.15);
    color: var(--whatsapp);
}

.contact-card.tiktok .contact-icon {
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.15), rgba(255, 0, 80, 0.15));
    color: #ff0050;
}

.contact-card.instagram .contact-icon {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.15), rgba(253, 29, 29, 0.15));
    color: #fd1d1d;
}

.contact-card.facebook .contact-icon {
    background: rgba(24, 119, 242, 0.15);
    color: #1877f2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-value {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-english);
    direction: ltr;
}

/* CTA Card */
.cta-card {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid rgba(245, 158, 11, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-card>* {
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: var(--bg-primary);
}

.cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cta-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.cta-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-english);
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo .logo-text {
    color: var(--accent-gold);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-location i {
    color: var(--accent-gold);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-contact-item i {
    color: var(--accent-gold);
    width: 18px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: var(--border-radius-md);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
}

.social-link.whatsapp:hover {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .lang-toggle {
        margin-right: 10px;
        margin-left: auto;
    }

    body[dir="ltr"] .lang-toggle {
        margin-left: 10px;
        margin-right: auto;
    }

    .photo-wrapper {
        width: 120px;
        height: 120px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition-normal);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title .name {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-platforms {
        flex-direction: column;
        gap: 15px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 10px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* 3D Carousel mobile */
    .portfolio-carousel {
        max-width: 320px;
        height: 380px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .carousel-prev {
        left: -55px;
    }

    .carousel-next {
        right: -55px;
    }

    .carousel-dots {
        display: none;
    }

    .carousel-counter {
        bottom: -45px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-location,
    .footer-contact-item {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 15px 50px;
    }

    .hero-title .name {
        font-size: 1.8rem;
    }

    .stat-card {
        padding: 20px 10px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .industries-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .industry-item {
        padding: 20px 15px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-card {
        padding: 35px 25px;
    }
}

/* ==========================================
   ANIMATIONS & UTILITIES
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}