/* ===================================
   Asharatelier Landing Page Styles
   Black & White Luxury Design
   =================================== */

/* ===================================
   CSS Reset & Base Styles
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease;
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.08s ease;
    mix-blend-mode: difference;
}

/* Reset cursor on interactive elements */
a, button, .scroll-indicator, .work-item, .view-more-btn {
    cursor: none;
}

/* Hover state for cursor */
body.cursor-hover .custom-cursor {
    width: 50px;
    height: 50px;
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* ===================================
   Container & Grid
   =================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* ===================================
   Scroll Progress Bar
   =================================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ===================================
   Animations
   =================================== */

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

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

.fade-in {
    animation: fadeIn 1.2s ease-out forwards;
    opacity: 0;
}

.fade-in-delay-1 {
    animation: fadeIn 1.2s ease-out 0.3s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 1.2s ease-out 0.6s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeIn 1.2s ease-out 0.9s forwards;
    opacity: 0;
}

.fade-in-delay-4 {
    animation: fadeIn 1.2s ease-out 1.2s forwards;
    opacity: 0;
}

.reveal-text {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-text.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 50%, #0a0a0a 0%, #000000 100%);
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.01) 2px,
        rgba(255, 255, 255, 0.01) 4px
    );
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-content::before,
.hero-content::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    pointer-events: none;
}

.hero-content::before {
    top: -150px;
    left: -150px;
    background: radial-gradient(circle, #ffffff, transparent);
    animation: pulseGlow 4s ease-in-out infinite;
}

.hero-content::after {
    bottom: -150px;
    right: -150px;
    background: radial-gradient(circle, #ffffff, transparent);
    animation: pulseGlow 4s ease-in-out infinite 2s;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.05;
        transform: scale(1);
    }
    50% {
        opacity: 0.15;
        transform: scale(1.2);
    }
}

.logo-container {
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.logo-container::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    animation: fadeInLine 2s ease 1s forwards;
}

@keyframes fadeInLine {
    to {
        opacity: 1;
    }
}

.hero-logo {
    width: 300px;
    max-width: 90vw;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.4)) brightness(1.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: logoFloat 4s ease-in-out infinite;
}

.hero-logo:hover {
    transform: scale(1.08) rotate(3deg);
    filter: drop-shadow(0 0 60px rgba(255, 255, 255, 0.7)) brightness(1.2);
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.hero-title {
    font-size: 2.2rem;
    letter-spacing: 0.25em;
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    animation: fadeGlow 3s ease-in-out infinite;
}

@keyframes fadeGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }
}

.hero-description {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 4rem;
    opacity: 0.85;
}

.scroll-indicator {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.scroll-arrow {
    font-size: 2.5rem;
    animation: pulse 2s ease-in-out infinite;
    display: inline-block;
    opacity: 0.8;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.scroll-arrow:hover {
    opacity: 1;
    transform: scale(1.2);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

/* ===================================
   About Section
   =================================== */

.about-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 50%, #ffffff 100%);
    color: #000000;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: slideLight 10s infinite;
}

@keyframes slideLight {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

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

.section-title {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    transition: width 0.8s ease;
}

.about-section .section-title.revealed::after {
    width: 100%;
}

.services-section .section-title::after {
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.services-section .section-title.revealed::after {
    width: 100%;
}

.about-text {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-weight: 400;
    color: #333333;
    position: relative;
    padding: 0 2rem;
}

.about-text::before,
.about-text::after {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.08);
    position: absolute;
    line-height: 1;
}

.about-text::before {
    top: -20px;
    left: 0;
}

.about-text::after {
    content: '"';
    bottom: -40px;
    right: 0;
}

.about-text-ar {
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 400;
    color: #333333;
    direction: rtl;
}

/* ===================================
   Services Section
   =================================== */

.services-section {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-content .section-title {
    text-align: left;
    margin-bottom: 3rem;
}

.services-list {
    list-style: none;
}

.service-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    transform: translateX(15px);
    border-left-color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.02);
}

.service-item:hover::before {
    width: 100%;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.service-ar {
    font-size: 1rem;
    opacity: 0.7;
    direction: rtl;
    font-weight: 300;
}

.services-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.abstract-shape {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.15) 100%);
    border-radius: 50%;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.abstract-shape::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: morph 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

/* ===================================
   Featured Works Section
   =================================== */

.works-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    color: #000000;
    padding: 8rem 0;
    position: relative;
}

.works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.works-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.works-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.works-subtitle {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 4rem;
}

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

.work-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.work-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.work-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.work-item:hover::after {
    opacity: 1;
}

.work-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f8f8 0%, #e5e5e5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    position: relative;
}

.work-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.work-item:hover .work-placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #c8c8c8 100%);
}

.work-item:hover .work-placeholder::before {
    width: 200%;
    height: 200%;
}

.work-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.work-item:hover .work-number {
    font-size: 5.5rem;
    color: rgba(0, 0, 0, 0.35);
    transform: rotate(10deg);
}

.view-more-container {
    text-align: center;
}

.view-more-btn {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 1.2rem 3.5rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000000;
    transition: left 0.4s ease;
    z-index: -1;
}

.view-more-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

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

/* ===================================
   Social Links Section
   =================================== */

.social-section {
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 100%);
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: rotatePulse 15s linear infinite;
}

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

.social-section .section-title {
    margin-bottom: 1rem;
}

.social-subtitle {
    font-size: 1.5rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

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

.social-link {
    color: #ffffff;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icon {
    width: 55px;
    height: 55px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 5px 10px rgba(255, 255, 255, 0.1));
}

.social-link {
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.4s ease;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.05);
}

.social-link:hover::before {
    transform: translate(-50%, -50%) scale(1);
    border-color: rgba(255, 255, 255, 0.5);
}

.social-link:hover .social-icon {
    filter: drop-shadow(0 15px 30px rgba(255, 255, 255, 0.4));
    transform: scale(1.15) rotate(5deg);
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-logo-section {
    text-align: left;
}

.footer-logo {
    width: 80px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 300;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-column {
    text-align: left;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, transparent);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.footer-social-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    color: #ffffff;
    transform: translateX(10px);
}

.footer-social-link:hover::before {
    opacity: 1;
    left: -25px;
}

.footer-location {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.footer-location-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    font-style: italic;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 0.08em;
}

.footer-copyright-ar {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    direction: rtl;
    font-weight: 300;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablets */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 0.2em;
    }

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

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

    .services-content .section-title {
        text-align: center;
    }

    .service-item {
        text-align: center;
    }

    .service-item:hover {
        transform: translateY(-5px);
    }

    .abstract-shape {
        width: 300px;
        height: 300px;
    }

    .abstract-shape::before {
        width: 200px;
        height: 200px;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    /* Hide custom cursor on touch devices */
    body {
        cursor: auto;
    }
    
    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }
    
    a, button, .scroll-indicator, .work-item, .view-more-btn {
        cursor: pointer;
    }

    .container {
        padding: 0 1.5rem;
    }
    
    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-logo-section {
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        align-items: center;
    }
    
    .footer-social-link:hover::before {
        display: none;
    }

    .hero-section {
        padding: 1rem;
    }

    .hero-logo {
        width: 220px;
        max-width: 85vw;
    }
    
    .logo-container::after {
        width: 80%;
    }

    .hero-title {
        font-size: 1.3rem;
        letter-spacing: 0.12em;
    }

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

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 3rem;
    }

    .scroll-indicator {
        bottom: 2rem;
    }

    .about-section,
    .services-section,
    .works-section,
    .social-section {
        padding: 5rem 0;
    }

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

    .about-text,
    .about-text-ar {
        font-size: 1.1rem;
    }

    .service-item h3 {
        font-size: 1.3rem;
    }

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

    .work-number {
        font-size: 3rem;
    }

    .work-item:hover .work-number {
        font-size: 3.5rem;
    }

    .social-links {
        gap: 2rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .view-more-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    .hero-logo {
        width: 200px;
    }
    
    .hero-title {
        font-size: 1rem;
        letter-spacing: 0.08em;
    }

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

    .about-section,
    .services-section,
    .works-section,
    .social-section {
        padding: 4rem 0;
    }

    .services-visual {
        min-height: 300px;
    }

    .abstract-shape {
        width: 200px;
        height: 200px;
    }

    .abstract-shape::before {
        width: 150px;
        height: 150px;
    }
}

/* ===================================
   Print Styles
   =================================== */

@media print {
    .scroll-indicator,
    .social-links {
        display: none;
    }
}

/* ===================================
   Accessibility
   =================================== */

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

