/* ===== CSS VARIABLES ===== */
:root {
    /* Colors - Based on logo theme */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #0ea5e9;
    --accent-color: #06b6d4;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Typography */
    --font-arabic: 'Cairo', sans-serif;
    --font-english: 'Inter', sans-serif;

    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 4rem 0;

    /* Borders & Radius */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-arabic);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* English font for English content */
[lang="en"], .en {
    font-family: var(--font-english);
}

/* Hide elements */
.hidden {
    display: none !important;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.navbar.scrolled .nav-container {
    min-height: 70px;
}

.navbar.scrolled .logo-img {
    width: 170px;
    height: 50px;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 85px;
    position: relative;
}

/* Logo */
.nav-logo {
    position: relative;
    z-index: 2;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-logo a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.nav-logo a:hover::before {
    width: 120%;
    height: 120%;
}

.nav-logo a:hover {
    transform: translateY(-2px);
}

.logo-img {
    width: 200px;
    height: 60px;
    border-radius: 12px;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(37, 99, 235, 0.15));
    transition: all 0.4s ease;
}

.nav-logo a:hover .logo-img {
    filter: drop-shadow(0 8px 30px rgba(37, 99, 235, 0.25));
    transform: scale(1.02);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 30px;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 120%;
    height: 120%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Search Button */
.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: -1;
}

.search-btn:hover::before {
    width: 100%;
}

.search-btn:hover {
    color: var(--white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.book-btn {
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.25);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.book-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.book-btn:hover::before {
    width: 100%;
}

.book-btn:hover::after {
    width: 150%;
    height: 150%;
}

.book-btn:hover {
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    padding: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.nav-toggle:hover::before {
    width: 100%;
}

.nav-toggle:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.nav-toggle:hover .hamburger-line {
    background-color: var(--white);
}

.hamburger-line {
    width: 26px;
    height: 3px;
    background-color: var(--gray-700);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background-color: var(--white);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: var(--white);
}

.nav-toggle.active::before {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
    margin-top: 85px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.5;
    }
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--gray-900);
}

/* Company Badge */
.company-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    animation: fadeInUp 0.6s ease 0.2s both;
}

.company-badge i {
    font-size: 1.1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.title-main {
    display: block;
    color: var(--gray-700);
    font-size: 0.7em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0 !important;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: var(--gray-600);
    animation: fadeInUp 0.6s ease 0.6s both;
}

/* Services Preview */
.services-preview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.8s both;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.service-info p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 1s both;
}

.hero-actions .btn-secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.hero-actions .btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.3);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    animation: fadeInUp 0.6s ease 1.2s both;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 600;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease 0.4s both;
}

.visual-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.header-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.header-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.header-text p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
}

.project-preview {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 1.5rem;
}

.project-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.project-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    flex-shrink: 0;
    position: relative;
}

.project-image::before {
    content: '🏢';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
}

.project-info {
    flex: 1;
}

.project-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.project-info p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 3px;
    transition: width 2s ease;
}

.progress-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    animation: fadeInUp 0.6s ease 1.4s both;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    transition: var(--transition);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.scroll-indicator:hover .scroll-arrow {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.scroll-text {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 600;
}

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

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

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

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

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .services-preview {
        max-width: 600px;
        margin: 0 auto 3rem auto;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0 1rem;
        min-height: 75px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 3rem 2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 1rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        border-radius: 0;
        border: none;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .nav-link {
        margin: 0;
        padding: 18px 24px;
        justify-content: center;
        border-radius: 20px;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-actions {
        gap: 1rem;
    }

    .search-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .book-btn {
        font-size: 0.95rem;
        padding: 12px 20px;
        margin: 2rem 0 0 0;
        justify-content: center;
        width: 100%;
    }

    .logo-img {
        width: 150px;
        height: 45px;
    }

    /* Enhanced mobile nav animations */
    .nav-link:hover,
    .nav-link.active {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
    }

    /* Hero */
    .hero {
        margin-top: 75px;
        padding: 2rem 0;
    }

    .hero-container {
        padding: 2rem 1rem;
        gap: 2rem;
    }

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

    .title-main {
        font-size: 0.8em;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .services-preview {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

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

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

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem 0.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .visual-card {
        max-width: 350px;
        padding: 1.5rem;
    }

    .scroll-indicator {
        bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 1.5rem 1rem;
    }

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

    .title-highlight::after {
        width: 40px;
        height: 3px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .company-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .service-item {
        padding: 1rem;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .service-info h3 {
        font-size: 1rem;
    }

    .service-info p {
        font-size: 0.85rem;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .stat-item {
        padding: 0.75rem 0.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .visual-card {
        padding: 1.25rem;
        margin: 0 1rem;
    }

    .header-text h4 {
        font-size: 1rem;
    }

    .header-text p {
        font-size: 0.8rem;
    }

    .project-info h5 {
        font-size: 0.9rem;
    }

    .project-info p {
        font-size: 0.8rem;
    }
}

/* ===== PROJECTS SECTION ===== */
.projects {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.projects-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Project Filters */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-family: inherit;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

/* Project Card - Clean Design */
.project-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }
.project-card:nth-child(5) { animation-delay: 0.5s; }
.project-card:nth-child(6) { animation-delay: 0.6s; }

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

/* Card Image - Clean */
.card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #f3f4f6;
}

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

.project-card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fbbf24;
    color: #78350f;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.card-badge.featured {
    background: #fbbf24;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .card-overlay {
    opacity: 1;
}

.view-details-btn {
    background: #3b82f6;
    border: none;
    border-radius: 8px;
    color: white;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 0.95rem;
}

.view-details-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Card Content */
.card-content {
    padding: 1.5rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    margin-bottom: 0.5rem;
}

.project-type {
    background: #f3f4f6;
    color: #374151;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 1rem;
    white-space: nowrap;
}

/* Project Info */
.project-info {
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    width: 18px;
    color: #3b82f6;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-details {
    flex: 1;
}

.info-label {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 2px;
}

.info-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
}

/* Location Details */
.location-details {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    flex-wrap: wrap;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-600);
    background: var(--gray-50);
    padding: 6px 12px;
    border-radius: 20px;
}

.location-item i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Projects Actions */
.projects-actions {
    text-align: center;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.view-more-btn:hover::before {
    left: 100%;
}

.view-more-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
}

.btn-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.view-more-btn:hover .btn-icon {
    transform: translateX(-5px);
}

/* Projects Section Responsive */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .projects {
        padding: 4rem 0;
    }

    .projects-container {
        padding: 0 1rem;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .project-filters {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.25rem;
        margin-bottom: 3rem;
    }

    .project-card {
        border-radius: 16px;
    }

    .card-image {
        height: 200px;
    }

    .card-content {
        padding: 1.25rem;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .project-type {
        margin-left: 0;
        align-self: flex-start;
    }

    .info-item {
        gap: 0.75rem;
    }

    .location-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .location-item {
        align-self: flex-start;
    }

    .view-more-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .projects {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .project-filters {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .filter-btn {
        min-width: 200px;
        justify-content: center;
    }

    .card-image {
        height: 180px;
    }

    .card-content {
        padding: 1rem;
    }

    .project-title {
        font-size: 1.1rem;
    }

    .info-value {
        font-size: 0.9rem;
    }

    .view-more-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }

    .btn-icon {
        width: 25px;
        height: 25px;
    }
}

/* ===== COMPANY INTRODUCTION SECTION ===== */
.company-intro {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 25%, #f1f5f9 50%, #ffffff 75%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.company-intro::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(14, 165, 233, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.company-intro::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(168, 85, 247, 0.06) 0%, rgba(37, 99, 235, 0.04) 50%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

/* Floating geometric shapes */
.floating-shape {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
}

.floating-shape.shape-1 {
    top: 15%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: floatShape 25s linear infinite;
}

.floating-shape.shape-2 {
    top: 60%;
    left: 8%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    animation: floatShape 30s linear infinite reverse;
    animation-delay: -5s;
}

.floating-shape.shape-3 {
    top: 25%;
    left: 3%;
    width: 60px;
    height: 60px;
    background: linear-gradient(225deg, var(--secondary-color), var(--accent-color));
    border-radius: 20px;
    transform: rotate(45deg);
    animation: floatShapeRotate 20s linear infinite;
    animation-delay: -10s;
}

.floating-shape.shape-4 {
    bottom: 20%;
    right: 5%;
    width: 70px;
    height: 70px;
    background: linear-gradient(315deg, rgba(168, 85, 247, 0.8), rgba(37, 99, 235, 0.8));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: floatShapePulse 18s ease-in-out infinite;
    animation-delay: -7s;
}

.company-intro-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* About Section */
.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 8rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    animation: scaleInCenter 1s ease 0.3s both;
}

.section-badge {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.section-title {
    animation: fadeInUp 0.8s ease 0.3s both;
}

.company-description,
.services-description {
    animation: fadeInUp 1s ease 0.5s both;
}

.company-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

/* Company Features */
.company-features {
    margin: 4rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    animation: slideInFromLeft 0.8s ease forwards;
    opacity: 0;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.3s; }
.feature-item:nth-child(3) { animation-delay: 0.5s; }

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.feature-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.feature-details p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* About Actions */
.about-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* About Image */
.about-image {
    position: relative;
    animation: fadeInRight 0.8s ease 0.4s both;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 600;
}

/* Services Overview Section */
.services-overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.services-image {
    position: relative;
    animation: fadeInLeft 0.8s ease 0.2s both;
}

.services-image .image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.services-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.image-badges {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-badge i {
    color: var(--primary-color);
    font-size: 1rem;
}

.services-content {
    animation: fadeInRight 0.8s ease 0.4s both;
}

.services-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

/* Services List */
.services-list {
    margin: 4rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
}

.services-list .service-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    animation: slideInFromRight 0.8s ease forwards;
    opacity: 0;
}

.services-list .service-item:nth-child(1) { animation-delay: 0.2s; }
.services-list .service-item:nth-child(2) { animation-delay: 0.4s; }
.services-list .service-item:nth-child(3) { animation-delay: 0.6s; }
.services-list .service-item:nth-child(4) { animation-delay: 0.8s; }
.services-list .service-item:nth-child(5) { animation-delay: 1.0s; }

.services-list .service-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.2);
}

.services-list .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.services-list .service-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.services-list .service-info p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Services Actions */
.services-actions {
    display: flex;
    justify-content: flex-start;
}

/* Company Intro Responsive */
@media (max-width: 1024px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 6rem;
    }

    .services-overview {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-overview .services-content {
        order: 1;
    }

    .services-overview .services-image {
        order: 2;
    }
}

@media (max-width: 768px) {
    .company-intro {
        padding: 4rem 0;
    }

    .company-intro-container {
        padding: 0 1rem;
    }

    .about-section {
        gap: 2rem;
        margin-bottom: 4rem;
        text-align: center;
    }

    .services-overview {
        gap: 2rem;
        text-align: center;
    }

    .company-description,
    .services-description {
        font-size: 1rem;
    }

    .feature-item,
    .services-list .service-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .feature-item:hover,
    .services-list .service-item:hover {
        transform: translateY(-5px);
    }

    .feature-icon,
    .services-list .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        align-self: center;
    }

    .about-actions,
    .services-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .about-actions .btn,
    .services-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .image-container img {
        height: 350px;
    }

    .services-image img {
        height: 300px;
    }

    .image-overlay {
        bottom: 1rem;
        right: 1rem;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .image-badges {
        top: 1rem;
        left: 1rem;
    }

    .service-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .company-intro {
        padding: 3rem 0;
    }

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

    .feature-item,
    .services-list .service-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .feature-details h4,
    .services-list .service-info h4 {
        font-size: 1.1rem;
    }

    .feature-details p,
    .services-list .service-info p {
        font-size: 0.9rem;
    }

    .image-container img {
        height: 280px;
    }

    .services-image img {
        height: 250px;
    }

    .image-overlay {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .image-badges {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .service-badge {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

/* ===== NEW ANIMATION KEYFRAMES ===== */
@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
    }
    50% {
        transform: translateY(-40px) translateX(-5px) rotate(180deg);
    }
    75% {
        transform: translateY(-20px) translateX(-15px) rotate(270deg);
    }
}

@keyframes floatShapeRotate {
    0% {
        transform: translateY(0px) translateX(0px) rotate(45deg);
    }
    25% {
        transform: translateY(-15px) translateX(15px) rotate(135deg);
    }
    50% {
        transform: translateY(-30px) translateX(0px) rotate(225deg);
    }
    75% {
        transform: translateY(-15px) translateX(-10px) rotate(315deg);
    }
    100% {
        transform: translateY(0px) translateX(0px) rotate(405deg);
    }
}

@keyframes floatShapePulse {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-10px) scale(1.1);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-20px) scale(0.9);
        opacity: 0.08;
    }
    75% {
        transform: translateY(-10px) scale(1.05);
        opacity: 0.12;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scaleInCenter {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== FOOTER SECTION ===== */
/* ===== MODERN FOOTER STYLES ===== */
.footer-modern {
    width: 100%;
    position: relative;
}

/* Main Footer Section */
.footer-main {
    background:#0c2f68 ;
    padding: 3rem 0 2rem;
    color: var(--white);
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Content Layout */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* CTA Button */
.footer-cta-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-cta-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Footer Info */
.footer-info {
    text-align: right;
    flex: 1;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.8rem;
    max-width: 600px;
    margin-left: auto;
}

.footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

/* Footer Links Row */
.footer-links-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    gap: 2rem;
}

/* Social Media Links */
.footer-social {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

/* Copyright Bar */
.footer-copyright {
    background: white;
    padding: 1.2rem 0;
}

.copyright-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright-text {
    color: #2d3e50;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: #2d3e50;
    border: 2px solid #2d3e50;
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.back-to-top:hover {
    background: #2d3e50;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column-reverse;
        gap: 2rem;
    }

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

    .footer-description {
        margin-left: 0;
        margin-right: 0;
    }

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

    .footer-links-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-social {
        order: 2;
    }

    .footer-nav {
        order: 1;
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 0 1.5rem;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 2rem 0 1rem;
    }

    .footer-logo .company-name {
        font-size: 1.3rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===== PROJECTS PAGE STYLES ===== */

/* Page Header */
.page-header {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 25%, #f1f5f9 50%, #ffffff 75%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(14, 165, 233, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(168, 85, 247, 0.06) 0%, rgba(37, 99, 235, 0.04) 50%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.page-header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb i {
    font-size: 0.7rem;
    color: var(--gray-400);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.page-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--gray-600);
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Projects Showcase */
.projects-showcase {
    padding: 8rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
}

.projects-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Filter Controls */
.filter-controls {
    text-align: center;
    margin-bottom: 4rem;
}

.filter-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.1s both;
}

/* Enhanced Project Filters */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.filter-btn {
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

/* Project Card Enhancements */
.project-card .card-badge.ongoing {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.load-more-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.load-more-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

/* Projects Page Responsive */
@media (max-width: 1024px) {
    .page-title {
        font-size: 2.5rem;
    }

    .page-description {
        font-size: 1.1rem;
    }

    .projects-showcase {
        padding: 6rem 0;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 4rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-description {
        font-size: 1rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }

    .filter-title {
        font-size: 1.5rem;
    }

    .project-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .projects-showcase {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 5rem 0 3rem;
    }

    .page-header-container,
    .projects-container {
        padding: 0 1rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .breadcrumb {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 0.75rem;
    }
}

/* ===== DEVELOPERS PAGE STYLES ===== */

/* Test to ensure CSS is loading */
body {
    font-family: 'Cairo', sans-serif;
}

/* Advanced Page Layout */
.developers-showcase {
    padding: 0;
    background: none;
    position: relative;
}

/* Ultra-Modern Hero Section */
.developers-hero {
    padding: 8rem 0 6rem;
    background:
        radial-gradient(ellipse at top, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(168, 85, 247, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 20%, #f1f5f9 40%, #e2e8f0 60%, #f1f5f9 80%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: var(--gray-800);
}

.developers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(14, 165, 233, 0.02) 0%, transparent 50%);
    backdrop-filter: blur(0.5px);
}

.developers-hero::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent,
        rgba(37, 99, 235, 0.02),
        transparent,
        rgba(14, 165, 233, 0.02),
        transparent,
        rgba(168, 85, 247, 0.02),
        transparent
    );
    animation: ultraRotate 60s linear infinite;
    border-radius: 50%;
}

/* Advanced particle effect */
.developers-hero .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(37, 99, 235, 0.4);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(37, 99, 235, 0.3);
}

.developers-hero .particle:nth-child(2) { top: 10%; left: 20%; animation-delay: -2s; }
.developers-hero .particle:nth-child(3) { top: 20%; left: 80%; animation-delay: -4s; }
.developers-hero .particle:nth-child(4) { top: 40%; left: 60%; animation-delay: -1s; }
.developers-hero .particle:nth-child(5) { top: 60%; left: 10%; animation-delay: -3s; }
.developers-hero .particle:nth-child(6) { top: 80%; left: 70%; animation-delay: -5s; }
}

.developers-hero .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.developers-hero .particle:nth-child(2) { top: 40%; left: 80%; animation-delay: 2s; }
.developers-hero .particle:nth-child(3) { top: 70%; left: 30%; animation-delay: 4s; }
.developers-hero .particle:nth-child(4) { top: 30%; left: 70%; animation-delay: 6s; }

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

@keyframes ultraRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    25% { transform: translateY(-20px) translateX(10px) scale(1.5); opacity: 0.8; }
    50% { transform: translateY(-40px) translateX(-5px) scale(0.8); opacity: 0.5; }
    75% { transform: translateY(-20px) translateX(-10px) scale(1.2); opacity: 0.7; }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.1); }
    50% { text-shadow: 0 0 40px rgba(255, 255, 255, 0.3), 0 0 60px rgba(37, 99, 235, 0.2); }
}

.developers-hero-content {
    text-align: center;
    color: var(--gray-800);
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.developers-hero .page-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--accent-color) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: -1px;
}

.developers-hero .page-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.3), rgba(168, 85, 247, 0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
    transform: translate(2px, 2px);
    filter: blur(1px);
}

.developers-hero .page-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.developers-hero .breadcrumb {
    margin-bottom: 2rem;
}

.developers-hero .breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.developers-hero .breadcrumb a:hover {
    color: var(--secondary-color);
}

.developers-hero .breadcrumb i {
    color: var(--gray-400);
    margin: 0 0.5rem;
}

/* Main Content Area */
.developers-main {
    padding: 8rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
}

.developers-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Redesigned Stats with Hexagonal Design */
.developers-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 8rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    position: relative;
}

.developers-stats::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.stat-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 35px;
    padding: 5rem 3rem;
    text-align: center;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.12),
        0 15px 40px rgba(37, 99, 235, 0.08),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(
        from 0deg,
        rgba(37, 99, 235, 0.2),
        rgba(14, 165, 233, 0.1),
        rgba(168, 85, 247, 0.15),
        rgba(37, 99, 235, 0.2)
    );
    border-radius: 35px;
    z-index: -1;
    opacity: 0;
    transition: all 0.8s ease;
    transform: scale(1.1);
    filter: blur(20px);
}

.stat-card:hover::before {
    opacity: 1;
    transform: scale(1.05) rotate(360deg);
    filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-25px) rotateX(5deg) rotateY(5deg) scale(1.08);
    box-shadow:
        0 50px 120px rgba(37, 99, 235, 0.25),
        0 25px 60px rgba(168, 85, 247, 0.15),
        inset 0 4px 8px rgba(255, 255, 255, 1),
        inset 0 -4px 8px rgba(0, 0, 0, 0.05);
    border: 3px solid rgba(37, 99, 235, 0.4);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.95) 100%);
}

.stat-icon {
    width: 100px;
    height: 100px;
    background:
        linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 2.5rem;
    box-shadow:
        0 15px 40px rgba(37, 99, 235, 0.4),
        0 5px 15px rgba(37, 99, 235, 0.2);
    position: relative;
    transition: all 0.4s ease;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover .stat-icon::before {
    opacity: 0.3;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
    animation: textGlow 3s ease-in-out infinite alternate;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-600);
}

/* Redesigned Developers Grid with Masonry Layout */
.developers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.developers-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(37, 99, 235, 0.2) 50%, transparent 100%);
}

.developer-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.06),
        0 4px 10px rgba(37, 99, 235, 0.04),
        0 2px 6px rgba(168, 85, 247, 0.02),
        inset 0 1px 2px rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(37, 99, 235, 0.1);
    background-clip: padding-box;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    position: relative;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    perspective: 800px;
    max-width: 280px;
}

.developer-card:nth-child(1) { animation-delay: 0.1s; }
.developer-card:nth-child(2) { animation-delay: 0.2s; }
.developer-card:nth-child(3) { animation-delay: 0.3s; }
.developer-card:nth-child(4) { animation-delay: 0.4s; }
.developer-card:nth-child(5) { animation-delay: 0.5s; }
.developer-card:nth-child(6) { animation-delay: 0.6s; }

.developer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.developer-card:hover::before {
    opacity: 1;
}

.developer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(37, 99, 235, 0.15),
        0 10px 25px rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
}

.developer-image {
    position: relative;
    height: 150px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.developer-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.developer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(1.1) contrast(1.1);
}

.developer-card:hover .developer-image img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.2) contrast(1.2);
}

.developer-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow:
        0 8px 25px rgba(37, 99, 235, 0.4),
        0 3px 10px rgba(37, 99, 235, 0.2);
    z-index: 3;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.developer-badge.premium {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow:
        0 8px 25px rgba(139, 92, 246, 0.4),
        0 3px 10px rgba(139, 92, 246, 0.2);
}

.developer-badge.silver {
    background: linear-gradient(135deg, #64748b, #475569);
    box-shadow:
        0 8px 25px rgba(100, 116, 139, 0.4),
        0 3px 10px rgba(100, 116, 139, 0.2);
}

.developer-content {
    padding: 1rem;
}

.developer-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.developer-description {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.developer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.developer-info .info-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    color: var(--gray-600);
    background: rgba(37, 99, 235, 0.05);
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.developer-info .info-item i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.developer-actions {
    display: flex;
    gap: 0.5rem;
}

.developer-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 8px 12px;
    font-size: 0.7rem;
}

/* Enhanced Partnership CTA */
.partnership-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, var(--primary-color) 50%, var(--secondary-color) 75%, #8b5cf6 100%);
    border-radius: 30px;
    padding: 5rem 4rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.8s both;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.partnership-cta::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(from 0deg, rgba(255, 255, 255, 0.1), transparent, rgba(168, 85, 247, 0.1), transparent, rgba(255, 255, 255, 0.1));
    animation: rotate 25s linear infinite;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partnership-cta .btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
    font-size: 1.1rem;
}

.partnership-cta .btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* Developers Page Responsive */
@media (max-width: 1024px) {
    .developers-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 4rem;
    }

    .developers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .partnership-cta {
        padding: 3rem 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .developers-showcase {
        padding: 6rem 0;
    }

    .developers-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .developers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 4rem;
    }

    .developer-content {
        padding: 1.5rem;
    }

    .developer-name {
        font-size: 1.2rem;
    }

    .developer-description {
        font-size: 0.9rem;
    }

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

    .partnership-cta {
        padding: 2rem 1.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .developers-container {
        padding: 0 1rem;
    }

    .developers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .developer-image {
        height: 180px;
    }

    .developer-content {
        padding: 1rem;
    }

    .developer-info {
        gap: 0.5rem;
    }

    .developer-info .info-item {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .developer-actions .btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

/* Enhanced Partnership CTA Section */
.partnership-cta {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 250, 252, 0.95) 50%,
        rgba(241, 245, 249, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(37, 99, 235, 0.1);
    border-radius: 30px;
    margin: 4rem 0;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow:
        0 20px 50px rgba(37, 99, 235, 0.08),
        0 10px 25px rgba(0, 0, 0, 0.05),
        inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

.partnership-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent,
        rgba(37, 99, 235, 0.03),
        transparent,
        rgba(14, 165, 233, 0.02),
        transparent,
        rgba(168, 85, 247, 0.03),
        transparent
    );
    animation: ultraRotate 40s linear infinite;
    z-index: -1;
    border-radius: 50%;
}

.partnership-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(168, 85, 247, 0.02) 0%, transparent 50%);
    border-radius: 30px;
    z-index: -1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(37, 99, 235, 0.3);
    animation: textGlow 4s ease-in-out infinite alternate;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--gray-700);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    backdrop-filter: blur(20px);
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow:
        0 15px 40px rgba(37, 99, 235, 0.4),
        0 5px 15px rgba(37, 99, 235, 0.2);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 25px 60px rgba(37, 99, 235, 0.5),
        0 10px 25px rgba(37, 99, 235, 0.3);
}

.cta-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(20px);
}

.cta-buttons .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 20px 50px rgba(37, 99, 235, 0.3),
        0 8px 20px rgba(37, 99, 235, 0.2);
}

/* Ultra Modern Developer Cards Enhancement */
.developer-card {
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.9) 100%);
    border-radius: 35px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(37, 99, 235, 0.15),
        0 15px 40px rgba(0, 0, 0, 0.05),
        inset 0 2px 4px rgba(255, 255, 255, 1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.developer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(
        from 0deg,
        rgba(37, 99, 235, 0.2),
        rgba(14, 165, 233, 0.1),
        rgba(168, 85, 247, 0.15),
        rgba(37, 99, 235, 0.2)
    );
    border-radius: 35px;
    z-index: -1;
    opacity: 0;
    transition: all 0.8s ease;
    transform: scale(1.1);
    filter: blur(30px);
}

.developer-card:hover::before {
    opacity: 1;
    transform: scale(1.05) rotate(180deg);
    filter: blur(15px);
}

.developer-card:hover {
    transform: translateY(-30px) rotateX(8deg) rotateY(5deg) scale(1.05);
    box-shadow:
        0 60px 150px rgba(37, 99, 235, 0.25),
        0 30px 80px rgba(168, 85, 247, 0.15),
        inset 0 4px 8px rgba(255, 255, 255, 1),
        inset 0 -4px 8px rgba(0, 0, 0, 0.05);
    border: 3px solid rgba(37, 99, 235, 0.4);
}

.developer-image {
    height: 280px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.developer-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        rgba(37, 99, 235, 0.8),
        rgba(14, 165, 233, 0.6),
        rgba(168, 85, 247, 0.8));
    z-index: 1;
}

.developer-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.developer-image i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    z-index: 3;
}

/* About Page - Clean, Simple, Professional */
.about-page {
    background: #ffffff;
    padding: 2rem 0 4rem;
    font-family: 'Cairo', sans-serif;
}

.about-page .container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
    direction: rtl;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.page-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.tagline {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
}

/* Content Sections */
.content-section {
    margin-bottom: 2.5rem;
}

.content-section h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.content-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
    text-align: right;
}

/* Services List */
.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 1rem;
    color: #4b5563;
    position: relative;
    padding-right: 1.5rem;
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    right: 0;
    top: 0.7rem;
}

/* Contact Info */
.contact-info {
    margin-top: 1rem;
}

.contact-item {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

.contact-item strong {
    color: #374151;
    font-weight: 600;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 0.3rem;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Social Links */
.social-links {
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    margin-left: 1rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.social-links a:hover {
    border-bottom-color: var(--primary-color);
}

.social-links a:last-child {
    margin-left: 0;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-page {
    background: var(--white);
    min-height: calc(100vh - 80px);
}

/* Contact Page Header - Matching other pages */
.contact-page .page-header {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 25%, #f1f5f9 50%, #ffffff 75%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    text-align: center;
}

.contact-page .page-header::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(14, 165, 233, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.contact-page .page-header::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(168, 85, 247, 0.06) 0%, rgba(37, 99, 235, 0.04) 50%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.contact-page .page-header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.contact-page .page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-page .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.contact-page .breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-page .breadcrumb a:hover {
    color: var(--primary-dark);
}

.contact-page .page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    line-height: 1.2;
}

.contact-page .page-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Content Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 4rem 0;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-form-section h2::before {
    content: '';
    width: 4px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form label {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.contact-form .btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    align-self: flex-start;
    transition: var(--transition);
}

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

/* Contact Info Section */
.contact-info-section {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.contact-info-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info-section h2::before {
    content: '';
    width: 4px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.contact-card p {
    margin-bottom: 0.25rem;
    color: var(--gray-600);
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Social Media Section */
.social-media-section {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.social-media-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    text-align: center;
}

.social-media-section .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-media-section .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    min-width: 140px;
    text-align: center;
}

.social-media-section .social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.social-media-section .social-link i {
    font-size: 1.2rem;
}

/* Specific social media colors on hover */
.social-media-section .social-link:has(.fa-facebook-f):hover {
    background: #1877f2 !important;
    border-color: #1877f2 !important;
}

.social-media-section .social-link:has(.fa-twitter):hover {
    background: #1da1f2 !important;
    border-color: #1da1f2 !important;
}

.social-media-section .social-link:has(.fa-instagram):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    border-color: #e4405f !important;
}

.social-media-section .social-link:has(.fa-linkedin-in):hover {
    background: #0077b5 !important;
    border-color: #0077b5 !important;
}

.social-media-section .social-link:has(.fa-whatsapp):hover {
    background: #25d366 !important;
    border-color: #25d366 !important;
}

/* Fallback for older browsers */
.social-link.facebook:hover {
    background: #1877f2 !important;
    border-color: #1877f2 !important;
}

.social-link.twitter:hover {
    background: #1da1f2 !important;
    border-color: #1da1f2 !important;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    border-color: #e4405f !important;
}

.social-link.linkedin:hover {
    background: #0077b5 !important;
    border-color: #0077b5 !important;
}

.social-link.whatsapp:hover {
    background: #25d366 !important;
    border-color: #25d366 !important;
}

/* Map Section */
.map-section {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.map-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.map-section h2::before {
    content: '';
    width: 4px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 2px;
}

.map-section h2::after {
    content: '';
    width: 4px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 2px;
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    transition: var(--transition);
}

.map-container:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .contact-page .page-header {
        padding: 6rem 0 4rem;
    }

    .contact-page .page-title {
        font-size: 2.5rem;
    }

    .contact-page .page-description {
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .contact-form-section,
    .contact-info-section,
    .map-section {
        padding: 2rem;
    }

    .contact-form-section h2,
    .contact-info-section h2,
    .map-section h2 {
        font-size: 1.5rem;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .social-media-section .social-links {
        justify-content: center;
    }

    .contact-form .btn {
        align-self: stretch;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-page .page-header {
        padding: 5rem 0 3rem;
    }

    .contact-page .page-header-container {
        padding: 0 1rem;
    }

    .contact-page .page-title {
        font-size: 2rem;
    }

    .contact-page .breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .contact-content {
        padding: 1rem 0;
    }

    .contact-form-section,
    .contact-info-section,
    .map-section {
        padding: 1.5rem;
    }

    .contact-form-section h2,
    .contact-info-section h2,
    .map-section h2 {
        font-size: 1.3rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .social-media-section .social-links {
        gap: 0.5rem;
    }

    .social-media-section .social-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Page Main Container */
.about-page {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    margin-top: 80px;
}

/* Ensure all sections extend full width */
.about-page section {
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

/* Fix container max-width for about page sections */
.about-page .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* About Hero Section */
.about-hero {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 25%, var(--gray-100) 50%, var(--white) 75%, var(--gray-50) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
    padding: 0;
}

.about-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.about-hero .hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.about-hero .shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.about-hero .shape-1 {
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    animation-delay: 0s;
}

.about-hero .shape-2 {
    bottom: 20%;
    left: 15%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 5s;
}

.about-hero .shape-3 {
    top: 30%;
    left: 20%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    animation-delay: 10s;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-hero .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.about-hero .breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.about-hero .breadcrumb a:hover {
    color: var(--primary-dark);
}

.about-hero .company-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

.about-hero .company-badge i {
    font-size: 1.2rem;
}

.about-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.about-hero .title-main {
    display: block;
    margin-bottom: 0.5rem;
}

.about-hero .title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero .hero-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

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

.about-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-hero .stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Simple Page Header */
.page-header-simple {
    text-align: center;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
}

.page-header-simple .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.page-header-simple .breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.page-header-simple .breadcrumb a:hover {
    color: var(--primary-dark);
}

.page-header-simple .page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    line-height: 1.2;
}

.page-header-simple .page-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Mission & Vision Section */
.mission-vision-section {
    width: 100%;
    padding: 8rem 0 6rem;
    background: var(--white);
    margin: 0;
    box-sizing: border-box;
}

.mission-vision-section .section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.mission-vision-section .info-card {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.mission-vision-section .info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.mission-vision-section .info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.mission-vision-section .vision-card::before {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.mission-vision-section .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.mission-vision-section .vision-card .card-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.mission-vision-section .info-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.mission-vision-section .info-card p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Values Section */
.values-section {
    width: 100%;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-50) 100%);
    margin: 0;
    box-sizing: border-box;
}

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

.values-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

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

.values-section .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.values-section .value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.values-section .value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.values-section .value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
}

.values-section .value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.values-section .value-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    width: 100%;
    padding: 6rem 0;
    background: var(--white);
    margin: 0;
    box-sizing: border-box;
}

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

.services-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

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

.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.services-section .service-card {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.services-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.services-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.services-section .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.services-section .service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.services-section .service-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta-section {
    width: 100%;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin: 0;
    box-sizing: border-box;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,0 1000,60 0,100"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.contact-cta-section .cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contact-cta-section .cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-cta-section .cta-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-cta-section .cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.contact-cta-section .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.contact-cta-section .btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.contact-cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Social Section */
.social-section {
    width: 100%;
    padding: 6rem 0;
    background: var(--gray-50);
    margin: 0;
    box-sizing: border-box;
}

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

.social-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
}

.social-section .social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-section .social-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.social-section .social-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    text-decoration: none;
}

.social-section .social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
}

.social-section .social-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.social-section .social-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Social Media Platform Colors */
.social-section .social-card.instagram .social-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-section .social-card.facebook .social-icon {
    background: #1877f2;
}

.social-section .social-card.tiktok .social-icon {
    background: #000000;
}

.social-section .social-card.twitter .social-icon {
    background: #1da1f2;
}

.social-section .social-card.snapchat .social-icon {
    background: #fffc00;
    color: var(--gray-900);
}

/* Hover effects for social cards */
.social-section .social-card.instagram:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 100%);
    color: var(--white);
}

.social-section .social-card.facebook:hover {
    background: #1877f2;
    color: var(--white);
}

.social-section .social-card.tiktok:hover {
    background: #000000;
    color: var(--white);
}

.social-section .social-card.twitter:hover {
    background: #1da1f2;
    color: var(--white);
}

.social-section .social-card.snapchat:hover {
    background: #fffc00;
    color: var(--gray-900);
}

.social-section .social-card:hover h3,
.social-section .social-card:hover p {
    color: inherit;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-page .container {
        padding: 0 1rem;
    }

    .page-header-simple .page-title {
        font-size: 2.5rem;
    }

    .page-header-simple .page-description {
        font-size: 1rem;
    }

    .page-header-simple .breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .mission-vision-section .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-vision-section .info-card {
        padding: 2rem;
    }

    .values-section .values-grid {
        grid-template-columns: 1fr;
    }

    .services-section .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-cta-section .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-cta-section .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .contact-cta-section .btn {
        width: 100%;
        justify-content: center;
    }

    .social-section .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* Ensure all sections are full width on mobile */
    .about-page section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding-left: 0;
        padding-right: 0;
    }

    .about-page section .container {
        max-width: 100%;
        padding: 0 1rem;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-page .container {
        padding: 0 0.5rem;
    }

    .page-header-simple .page-title {
        font-size: 2rem;
    }

    .page-header-simple .page-description {
        font-size: 1rem;
    }

    .page-header-simple .breadcrumb {
        font-size: 0.75rem;
    }

    .values-section .section-title,
    .services-section .section-title,
    .social-section .section-title {
        font-size: 2rem;
    }

    .mission-vision-section .info-card,
    .values-section .value-card,
    .services-section .service-card,
    .social-section .social-card {
        padding: 1.5rem;
    }

    .contact-cta-section .cta-text h2 {
        font-size: 2rem;
    }

    /* Ensure full-width sections on very small screens */
    .about-page section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding-left: 0;
        padding-right: 0;
    }

    .about-page section .container {
        max-width: 100%;
        padding: 0 0.5rem;
        margin: 0 auto;
    }
}

/* ===== CONTENT PAGES (PRIVACY & TERMS) ===== */
.page-content {
    min-height: 100vh;
    background: var(--gray-50);
}

.content-section {
    padding: 4rem 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.content-block {
    margin-bottom: 3rem;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.content-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.styled-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.styled-list li {
    padding: 0.75rem 0;
    padding-right: 1.5rem;
    position: relative;
    color: var(--gray-700);
    line-height: 1.6;
}

.styled-list li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1.2;
}

.content-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.content-block a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.text-muted {
    color: var(--gray-500);
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 2rem;
        border-radius: var(--border-radius);
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

    .content-block p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .content-section {
        padding: 2rem 0;
    }

    .content-block {
        margin-bottom: 2rem;
    }

    .content-block h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

/* Mobile menu toggle - hidden by default, shown on mobile via responsive.css */
.mobile-menu-toggle {
    display: none;
}
