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

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;

    --accent-color: #595755;
    --accent-bright: #595755;

    --gold: #C9A227;
    --gold-soft: rgba(201, 162, 39, .18);

    --text-dark: #000000;
    --text-light: #595755;
    --text-muted: rgba(0, 0, 0, .55);

    --bg-light: #ffffff;
    --bg-white: #ffffff;
    --bg-dark: #000000;

    --surface-card: #ffffff;
    --surface-card-alt: #ffffff;
    --surface-soft: rgba(0, 0, 0, .03);

    --border-card: rgba(0, 0, 0, 0.10);
    --border-soft: rgba(0, 0, 0, 0.15);

    --gradient-primary: linear-gradient(135deg, #000000, #595755);
    --gradient-accent: linear-gradient(135deg, var(--gold), #000000);
    --gradient-dark: linear-gradient(135deg, #000000, #595755);

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, .10);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, .20);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, .30);

    --glow: 0 0 30px rgba(201, 162, 39, .30);

    --transition-fast: .2s ease;
    --transition-normal: .3s ease;
    --transition-slow: .6s ease;
    --bounce: cubic-bezier(.68, -.55, .265, 1.55)
}


body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    transition: all var(--transition-normal)
}

::-webkit-scrollbar {
    width: 12px
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
    border: 2px solid var(--bg-light)
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-accent);
    box-shadow: var(--glow)
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-light)
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .3;
    pointer-events: none
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity .5s ease, visibility .5s ease
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden
}

.ceramic-loader {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 2rem
}

.clay-ball {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: clayForm 2s ease-in-out infinite
}

.potter-hands {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-bright);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite
}

@keyframes clayForm {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        border-radius: 50%
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        border-radius: 30%
    }
}

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

.loading-text {
    color: var(--accent-bright);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: .7
    }

    50% {
        opacity: 1
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: .5rem
}



.nav-logo i {
    color: var(--accent-bright);
    animation: flicker 3s ease-in-out infinite
}

@keyframes flicker {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .7
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition-normal);
    position: relative;
    padding: .5rem 0
}

.nav-link:hover {
    color: var(--accent-bright);
    transform: translateY(-2px)
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: all var(--transition-normal);
    transform: translateX(-50%)
}

.nav-link:hover::after {
    width: 100%
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center
}

.theme-toggle,
.language-toggle {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    min-width: 40px;
    height: 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    padding: 0 .75rem;
    line-height: 1;
    font-weight: 600;
    gap: .4rem
}



.theme-toggle:hover,
.language-toggle:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: rotate(180deg)
}



.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: .5rem
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition-normal);
    border-radius: 2px
}


.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px)
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 20px 50px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(0, 0, 0, .02) 50%, rgba(0, 0, 0, .05) 100%)
    
}



.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="%23595755" opacity="0.12"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
    opacity: .35
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(-20px) scale(1.02)
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none
}

.floating-ceramic {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: .10;
    animation: floatAround 15s ease-in-out infinite
}

.floating-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s
}

.floating-2 {
    top: 60%;
    right: 15%;
    animation-delay: 3s
}

.floating-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 6s
}

.floating-4 {
    top: 40%;
    right: 30%;
    animation-delay: 9s
}

@keyframes floatAround {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg)
    }

    25% {
        transform: translate(30px, -20px) rotate(90deg)
    }

    50% {
        transform: translate(-20px, -40px) rotate(180deg)
    }

    75% {
        transform: translate(-40px, 20px) rotate(270deg)
    }
}

.hero-content {
    flex: 1;
    max-width: 700px;
    margin-inline-end: 50px;
    z-index: 2
}

.hero-badge {
    display: inline-block;
    background: rgba(89, 87, 85, .10);
    border: 1px solid var(--accent-bright);
    border-radius: 50px;
    padding: .5rem 1.5rem;
    margin-bottom: 2rem;
    animation: slideInUp .8s ease .2s both;
    color: var(--accent-bright);
    font-weight: 600;
    font-size: .9rem
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.title-line {
    animation: slideInUp .8s ease both
}

.title-line:nth-child(1) {
    animation-delay: .3s;
    color: var(--text-dark)
}

.title-line:nth-child(2) {
    animation-delay: .5s
}

.title-line:nth-child(3) {
    animation-delay: .7s;
    color: var(--text-dark)
}

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

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    animation: expandWidth 1s ease 1.2s both
}

@keyframes expandWidth {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
    animation: slideInUp .8s ease .9s both;
    max-width: 600px
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    animation: slideInUp .8s ease 1.1s both;
    flex-wrap: wrap
}

.cta-button {
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: .8rem;
    text-decoration: none;
    position: relative;
    overflow: hidden
}

.cta-button.primary {
    background: var(--gradient-accent);
    color: var(--secondary-color);
    box-shadow: var(--shadow-md)
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg)
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary-color)
}



.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px)
}



.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transition: left .5s
}

.cta-button:hover::before {
    left: 100%
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: slideInUp .8s ease 1.3s both;
    flex-wrap: wrap
}

.stat-item {
    text-align: center
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-bright);
    display: block;
    margin-bottom: .5rem
}

.stat-label {
    color: var(--text-light);
    font-size: .9rem;
    font-weight: 500
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2
}

.ceramic-3d-showcase {
    position: relative;
    width: 500px;
    height: 500px;
    animation: slideInRight 1s ease .5s both
}

.showcase-ring {
    position: relative;
    width: 100%;
    height: 100%;
    animation: rotate360 20s linear infinite
}

.ceramic-piece {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal)
}

.ceramic-piece:hover {
    transform: scale(1.2);
    box-shadow: var(--shadow-xl)
}

.piece-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent)
}

.piece-2 {
    top: 25%;
    right: 0;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color))
}

.piece-3 {
    bottom: 25%;
    right: 0;
    background: var(--gradient-primary)
}

.piece-4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent)
}

.piece-5 {
    bottom: 25%;
    left: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color))
}

.piece-6 {
    top: 25%;
    left: 0;
    background: var(--gradient-primary)
}

.center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(89, 87, 85, .25) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px)
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px)
    }

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

.products-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
    transition: background var(--transition-normal), color var(--transition-normal)
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(89, 87, 85, .10);
    border: 1px solid var(--accent-bright);
    border-radius: 50px;
    padding: .5rem 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-bright);
    font-weight: 600;
    font-size: .9rem
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7
}

.filter-system {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--border-soft);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .5rem;
    position: relative;
    overflow: hidden
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-accent);
    border-color: var(--accent-bright);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md)
}

.view-controls {
    display: flex;
    gap: .5rem
}

.view-btn {
    background: var(--bg-light);
    border: 2px solid var(--border-soft);
    color: var(--text-dark);
    width: 45px;
    height: 45px;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center
}



.view-btn:hover,
.view-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color)
}



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

.product-card {
    background: var(--surface-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border-card)
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-bright)
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1
}

.product-card:hover::before {
    opacity: .05
}

.product-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    background: var(--secondary-color)
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    background: var(--secondary-color)
}

.product-card:hover .product-image img {
    transform: scale(1.1)
}

.product-info {
    padding: 2rem;
    position: relative;
    z-index: 2;
    background: var(--surface-card-alt)
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: .8rem;
    font-weight: 600
}

.product-description {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6
}

.product-price {
    font-weight: 700;
    color: var(--accent-bright);
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.product-price::after {
    content: '→';
    font-size: 1.5rem;
    transition: transform var(--transition-normal)
}

.product-card:hover .product-price::after {
    transform: translateX(5px)
}

.load-more-container {
    text-align: center
}

.load-more-btn {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    box-shadow: var(--shadow-md)
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg)
}

.about-section {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
    transition: background var(--transition-normal), color var(--transition-normal)
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

.about-visual {
    position: relative
}

.potter-scene {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto
}

.pottery-wheel-3d {
    position: relative;
    width: 100%;
    height: 100%;
    animation: rotate360 15s linear infinite
}

.wheel-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 50px;
    background: var(--gradient-dark);
    border-radius: 50%;
    box-shadow: var(--shadow-lg)
}

.clay-forming {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: clayShape 4s ease-in-out infinite;
    box-shadow: var(--shadow-md)
}

@keyframes clayShape {

    0%,
    100% {
        border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: translate(-50%, -50%) scale(1.1)
    }
}

.potter-hands-animation {
    position: absolute;
    top: 40%;
    left: 20%;
    width: 60%;
    height: 40%;
    border: 3px solid var(--accent-bright);
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: transparent;
    animation: handMotion 3s ease-in-out infinite
}

@keyframes handMotion {

    0%,
    100% {
        transform: rotate(0deg) scale(1)
    }

    50% {
        transform: rotate(180deg) scale(1.1)
    }
}

.clay-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.clay-particles::before,
.clay-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-bright);
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite
}

.clay-particles::before {
    top: 30%;
    left: 20%;
    animation-delay: 0s
}

.clay-particles::after {
    top: 60%;
    right: 25%;
    animation-delay: 1.5s
}

@keyframes particleFloat {

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

    50% {
        opacity: 1;
        transform: translateY(-20px)
    }
}

.about-text .section-badge {
    margin-bottom: 1.5rem
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem
}

.about-text .section-title::after {
    left: 0;
    transform: none
}

.about-description {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem
}

.feature-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--surface-card);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-card)
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-bright)
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0
}

.feature-content h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: .5rem
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6
}

.about-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.locations-section {
    padding: 120px 0;
    background: var(--bg-white);
    transition: background var(--transition-normal), color var(--transition-normal)
}

.locations-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2.5rem;
  justify-items:stretch;
}

.locations-grid > .location-card{
  width:100%;
  max-width:unset;
}

/* الفرع الرئيسي (أول واحد) */
.locations-grid > .location-card:first-child{
  grid-column:1 / -1;  /* ياخذ صف كامل */
}

@media (max-width:900px){
  .locations-grid{ grid-template-columns:repeat(2,1fr); }
  .locations-grid > .location-card:first-child{ grid-column:1 / -1; }
}

@media (max-width:600px){
  .locations-grid{ grid-template-columns:1fr; }
}

/* =========================
   LOCATIONS IMAGES FIX (NO CROP / NO ZOOM)
========================= */

.location-card .location-image{
  width: 100%;
  aspect-ratio: 16 / 9;          /* شكل ثابت ومرتب */
  background: #fff;              /* خلفية لو الصورة طولية */
  border-bottom: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.location-card .location-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;     /* ✅ يملأ المكان */
}

/* موبايل: خليه أطول شوي عشان صور التلفون تبين أحسن */
@media (max-width: 768px){
  .location-card .location-image{
    aspect-ratio: 4 / 3;
  }
}
/* Location modal image should not crop */
#locationModalImage{
  object-fit: contain !important;
  background: #fff;
}


.contact-section {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
    transition: background var(--transition-normal), color var(--transition-normal)
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem
}

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

.contact-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--surface-card);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-card)
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-bright)
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0
}

.contact-details h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: .5rem
}

.contact-details p {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: .5rem
}

.contact-note {
    color: var(--text-light);
    font-size: .9rem
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all var(--transition-normal)
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-md)
}

.enhanced-form {
    background: var(--surface-card);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-card)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem
}

.form-group {
    position: relative;
    margin-bottom: 2rem
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    pointer-events: none;
    background: transparent;
    padding: 0 .3rem
}

[dir="rtl"] .form-group label {
    left: auto;
    right: 15px
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-soft);
    border-radius: 10px;
    font-size: 1rem;
    transition: all var(--transition-normal);
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--surface-card-alt)
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-bright);
    box-shadow: 0 0 0 3px rgba(89, 87, 85, .18)
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group select:focus+label,
.form-group select:not([value=""])+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -10px;
    left: 10px;
    font-size: .8rem;
    color: var(--accent-bright);
    background: var(--surface-card-alt)
}

[dir="rtl"] .form-group input:focus+label,
[dir="rtl"] .form-group input:not(:placeholder-shown)+label,
[dir="rtl"] .form-group select:focus+label,
[dir="rtl"] .form-group select:not([value=""])+label,
[dir="rtl"] .form-group textarea:focus+label,
[dir="rtl"] .form-group textarea:not(:placeholder-shown)+label {
    left: auto;
    right: 10px
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: all var(--transition-normal);
    transform: translateX(-50%)
}

.form-group input:focus~.form-line,
.form-group select:focus~.form-line,
.form-group textarea:focus~.form-line {
    width: 100%
}

.submit-btn {
    background: var(--gradient-accent);
    color: var(--secondary-color);
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: .8rem;
    justify-content: center;
    width: 100%;
    box-shadow: var(--shadow-md)
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg)
}

.enhanced-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    backdrop-filter: blur(10px)
}

.enhanced-modal .modal-content {
    background: var(--surface-card);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 95%;
    max-width: 1000px;
    position: relative;
    animation: modalSlideIn .4s var(--bounce);
    box-shadow: var(--shadow-xl);
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--border-card)
}

@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(.95)
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, .5);
    border: none;
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-normal)
}

.modal-close:hover {
    background: var(--accent-bright);
    transform: scale(1.1);
    color: var(--bg-dark)
}

.enhanced-modal .modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0
}

.modal-gallery {
    position: relative
}

.main-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 20px 0 0 0;
    background: var(--secondary-color)
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--secondary-color)
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px
}

.zoom-btn,
.fullscreen-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, .5);
    border: none;
    border-radius: 50%;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all var(--transition-normal)
}

.zoom-btn:hover,
.fullscreen-btn:hover {
    background: var(--accent-bright);
    transform: scale(1.1);
    color: var(--bg-dark)
}

.enhanced-modal .modal-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.product-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--secondary-color);
    padding: .3rem 1rem;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content
}

.enhanced-modal .modal-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.stars {
    display: flex;
    gap: .2rem
}

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

.rating-text {
    color: var(--text-light);
    font-size: .9rem
}

.enhanced-modal .modal-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem
}

.product-specs {
    background: var(--surface-soft);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-soft)
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .8rem;
    color: var(--text-dark);
    font-size: .95rem
}

.spec-item:last-child {
    margin-bottom: 0
}

.spec-item i {
    color: var(--accent-bright);
    width: 20px
}

.modal-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.modal-actions.one-action {
    justify-content: flex-start
}

.inquiry-btn {
    flex: 1;
    min-width: 160px;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: 1rem
}

.inquiry-btn.primary {
    background: var(--gradient-accent);
    color: var(--secondary-color)
}

.inquiry-btn.secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-soft)
}


.inquiry-btn.tertiary {
    background: transparent;
    color: var(--accent-bright);
    border: 2px solid var(--accent-bright)
}

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

.footer {
    background: var(--gradient-dark);
    color: var(--secondary-color);
    padding: 4rem 0 2rem;
    transition: background var(--transition-normal)
}

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

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.footer-section h3 i {
    color: var(--accent-bright)
}

.footer-section h4 {
    color: var(--accent-bright);
    margin-bottom: 1rem;
    font-weight: 600
}

.footer-section p {
    color: rgba(255, 255, 255, .8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: .95rem
}

.footer-section ul {
    list-style: none
}

.footer-section ul li {
    margin-bottom: .5rem
}

.footer-section ul li a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    transition: color var(--transition-normal);
    font-size: .95rem
}

.footer-section ul li a:hover {
    color: var(--accent-bright)
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 1rem
}

.footer-social a:hover {
    background: var(--accent-bright);
    transform: translateY(-3px);
    color: var(--bg-dark)
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .6);
    font-size: .9rem
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: var(--shadow-md)
}

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

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-lg);
    color: var(--bg-dark)
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s ease
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}


.product-card.hidden {
    display: none
}

html {
    scroll-behavior: smooth
}

@media(max-width:1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 80px
    }

    .hero-content {
        margin-inline-end: 0;
        margin-bottom: 4rem;
        max-width: 100%
    }

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

    .ceramic-3d-showcase {
        width: 400px;
        height: 400px
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .enhanced-modal .modal-body {
        grid-template-columns: 1fr
    }

    .main-image {
        border-radius: 20px 20px 0 0
    }

    .about-text .section-title {
        text-align: center
    }

    .about-text .section-title::after {
        left: 50%;
        transform: translateX(-50%)
    }
}

@media(max-width:768px) {
    .hamburger {
        display: flex
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, .98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 1500
    }

    .nav-menu.active {
        left: 0
    }

    @media (max-width: 768px) {
  .nav-actions {
    display: flex;           /* ✅ لا تخفيه */
    align-items: center;
    gap: .5rem;
  }


  .nav-container{
    height: 70px;            /* ✅ أصغر للهيدر بالموبايل */
  }

  .nav-menu{
    top: 70px;               /* ✅ نفس ارتفاع الهيدر */
  }
}

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem
    }

    .hero-stats {
        gap: 2rem
    }

    .ceramic-3d-showcase {
        width: 300px;
        height: 300px
    }

    .section-title {
        font-size: 2.2rem
    }

    .filter-system {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem
    }

    .filter-buttons {
        justify-content: center;
        gap: .5rem
    }

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

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

    .potter-scene {
        width: 300px;
        height: 300px
    }

    .about-features {
        gap: 1.5rem
    }

    .feature-card {
        padding: 1.5rem
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    .enhanced-modal .modal-content {
        width: 95%;
        margin: 5% auto
    }

    .enhanced-modal .modal-info {
        padding: 2rem
    }

    .modal-actions {
        flex-direction: column
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem
    }
}

@media(max-width:480px) {
    .hero-title {
        font-size: 2rem
    }

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

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

    .ceramic-3d-showcase {
        width: 250px;
        height: 250px
    }

    .enhanced-modal .modal-content {
        width: 98%;
        margin: 2% auto
    }

    .enhanced-modal .modal-info {
        padding: 1.5rem
    }

    .enhanced-modal .modal-info h3 {
        font-size: 1.5rem
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px
    }
}

@media(prefers-contrast:high) {
    :root {
        --shadow-sm: 0 2px 10px rgba(0, 0, 0, .30);
        --shadow-md: 0 4px 20px rgba(0, 0, 0, .40);
        --shadow-lg: 0 8px 30px rgba(0, 0, 0, .50)
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    html {
        scroll-behavior: auto !important;
    }

    .scroll-to-top,
    .ceramic-3d-showcase,
    .pottery-wheel-3d,
    .floating-elements {
        animation: none !important;
    }
}

.nav-logo,
.nav-logo h2,
.nav-link,
.section-title,
.product-title,
.location-card,
.contact-details h4,
.contact-details p {
    cursor: default;
    user-select: none
}


.language-toggle {
    transition: none !important
}

.language-toggle:hover {
    transform: none !important
}

.hero-badge,
.section-badge {
    background: var(--gold-soft);
    border: 1px solid var(--gold);
    color: var(--gold)
}

.section-title::after,
.gradient-text::after,
.nav-link::after {
    background: var(--gradient-accent)
}

.stat-number {
    color: var(--gold)
}

.cta-button.primary {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: var(--shadow-md)
}


.product-card:hover {
    border-color: var(--gold)
}

.feature-icon,
.contact-icon {
    background: var(--gradient-accent);
    color: #fff
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-soft)
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group select:focus+label,
.form-group select:not([value=""])+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    color: var(--gold)
}

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

.scroll-to-top:hover {
    color: #000
}

.modal-thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--border-soft);
    transition: .25s ease
}

.modal-thumb:hover {
    border-color: var(--gold);
    transform: scale(1.08)
}

.modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}


.footer-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    font-size: .95rem;
    transition: all .25s ease;
    cursor: pointer;
}

.footer-filter:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .12);
}

.footer-filter.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.nav-logo h2{
  display:flex;
  align-items:center;
  gap:.5rem;
}

.nav-logo-img{
  height:60px;         /* عدّلها 28-40 حسب ذوقك */
  width:auto;
  max-width:120px;     /* عشان ما ينفلت لو الصورة عريضة */
  object-fit:contain;
  display:inline-block;
}

/* About - More Info Panel */
/* =========================
   ABOUT PAGE
========================= */

.about-page {
padding: 120px 0 70px;
background: linear-gradient(180deg, #f9f9f9, #ffffff);
}

/* العنوان الرئيسي */
.about-main-title {
text-align: center;
font-size: 2.6rem;
font-family: 'Playfair Display', serif;
color: var(--gold);
margin-bottom: 40px;
font-weight: 700;
letter-spacing: .5px;
}

/* الكروت */
.about-card {
background: #ffffff;
padding: 35px 40px;
border-radius: 20px;
margin-bottom: 28px;
border: 1px solid rgba(0,0,0,0.06);
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
line-height: 2;
font-size: 1.05rem;
transition: all .35s ease;
position: relative;
overflow: hidden;
}

/* الشادو الذهبي عند المرور */
.about-card:hover {
transform: translateY(-6px);
box-shadow:
0 20px 45px rgba(0,0,0,0.12),
0 0 0 1px rgba(212,175,55,0.25),
0 8px 25px rgba(212,175,55,0.25);
}

/* خط ذهبي خفيف */
.about-card::before {
content: "";
position: absolute;
top: 0;
right: 0;
width: 4px;
height: 100%;
background: linear-gradient(to bottom, var(--gold), transparent);
opacity: .4;
}

/* العناوين داخل الكروت */
.about-card h2 {
color: var(--gold);
margin-bottom: 12px;
margin-top: 10px;
font-family: 'Playfair Display', serif;
font-size: 1.4rem;
}

/* النص */
.about-card p {
margin-bottom: 12px;
color: #333;
}

/* القوائم */
.about-card ul {
padding-right: 18px;
margin-top: 10px;
}

.about-card ul li {
margin-bottom: 6px;
color: #444;
}

/* موبايل */
@media (max-width:768px) {

.about-card {
padding: 25px;
}

.about-main-title {
font-size: 2rem;
}

}

/* ✅ Logo always visible */
.nav-logo-img{
  height: 56px;
  width: auto;
  max-width: 140px;
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ✅ Make sure the logo + name don't wrap badly */
.nav-logo h2{
  display:flex;
  align-items:center;
  gap:.6rem;
  white-space: nowrap;
}
/* ✅ English typography tuning */
html[lang="en"] body{
  font-size: 15px; /* يقلل كل شي شوي */
}

html[lang="en"] .hero-title{
  font-size: 3.2rem; /* بدل 4rem */
}

@media(max-width:768px){
  html[lang="en"] .hero-title{ font-size: 2.2rem; }
  html[lang="en"] .hero-subtitle{ font-size: 1.1rem; }
}

/* ✅ Sticky navbar on mobile (and always on top) */


/* ✅ When menu opens, keep it under the navbar */
@media(max-width:768px){
  .nav-menu{
    top: 80px; /* نفس ارتفاع navbar */
    z-index: 4999;
  }
}
.nav-logo-img{
  flex: 0 0 auto;        /* ✅ ممنوع ينكمش */
}

.nav-logo h2{
  display:flex;
  align-items:center;
  gap:.5rem;
}

@media (max-width: 768px){
  .nav-logo h2{
    font-size: 1rem;      /* ✅ يصغر شوي بالموبايل */
  }
  .nav-logo-img{
    height: 42px;         /* ✅ اللوقو واضح */
    max-width: 80px;
  }
}

body.lang-en .hero-title{ font-size: 3.2rem; }
body.lang-en .section-title{ font-size: 2.6rem; }
body.lang-en .hero-subtitle{ font-size: 1.15rem; }

body {
  padding-top: 80px;
}

@media (max-width: 768px){
  body { padding-top: 70px; }
}

/* ===== Fix English size to match Arabic ===== */

body.lang-en .hero-title {
    font-size: 48px;
    line-height: 1.2;
}

body.lang-en .hero-title .gradient-text {
    font-size: 48px;
}

body.lang-en .title-line {
    font-size: 48px;
}

/* Mobile */
@media (max-width: 768px) {
    body.lang-en .hero-title,
    body.lang-en .title-line {
        font-size: 32px;
    }
}
body.lang-en {
    letter-spacing: 0.5px;
}
body.lang-en .hero-title {
    font-family: 'Inter', sans-serif;
}

/* ===== Reduce hero title size ===== */

.hero-title {
    font-size: 40px;
    line-height: 1.2;
}

.hero-title .gradient-text {
    font-size: 44px;
}

.title-line {
    font-size: 44px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-title,
    .title-line {
        font-size: 30px;
    }
}

/* =========================
   ENGLISH SIZE FIX ONLY
========================= */

/* Header brand name smaller in English */
html[lang="en"] #brandName {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Hero title smaller in English */
html[lang="en"] .hero-title {
    font-size: 3rem;
    line-height: 1.2;
}

/* Hero subtitle optional tweak */
html[lang="en"] .hero-subtitle {
    font-size: 1.05rem;
}

/* Mobile English */
@media (max-width: 768px) {

    html[lang="en"] #brandName {
        font-size: 1rem;
    }

    html[lang="en"] .hero-title {
        font-size: 2.1rem;
    }

}

/* ✅ Remove any reserved space that was for the fixed navbar */
html, body{
  margin: 0 !important;
  padding: 0 !important;
}

/* ✅ Ensure navbar doesn't get pushed down */
.navbar{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ✅ English hero size same feel as Arabic */
html[lang="en"] .hero-title{
  font-size: 2.6rem !important;   /* كان 4rem */
  line-height: 1.2;
  font-weight: 700;
}

html[lang="en"] .hero-subtitle{
  font-size: 1.05rem !important;
  line-height: 1.7;
  max-width: 600px;
}

/* mobile */
@media(max-width:768px){
  html[lang="en"] .hero-title{
    font-size: 2rem !important;
  }

  html[lang="en"] .hero-subtitle{
    font-size: .95rem !important;
  }
}
/* =========================
   FOOTER CLEAN FINAL
========================= */
/* =========================================================
   NAVBAR FINAL CLEAN — NOT STICKY / NOT FIXED
========================================================= */
/* =========================================================
   NAVBAR (NOT STICKY / NOT FIXED)
========================================================= */
/* =========================================================
   HEADER FINAL (CLEAN) — works RTL/EN, NOT fixed
========================================================= */


.nav-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  /* ✅ Grid أحسن من flex للهيدر */
  display: grid;
  grid-template-columns: auto 1fr auto; /* actions | menu | brand */
  align-items: center;
  height: 80px;
  gap: 18px;
}

/* ===== left side actions (AR button etc.) ===== */
.nav-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== center menu ===== */
.nav-menu{
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 2.8rem; /* ✅ مسافات الروابط */
  margin: 0;
  padding: 0;
}

.nav-link{
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: .5rem 0;
  transition: .25s ease;
}

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

.nav-link::after{
  content:"";
  position:absolute;
  bottom:0;
  left:50%;
  width:0;
  height:2px;
  transform:translateX(-50%);
  background: linear-gradient(90deg, #d4af37, #f6e27a, #d4af37);
  transition: .25s ease;
}
.nav-link:hover::after{ width:100%; }

/* ===== right side brand (logo + name) ===== */
.nav-logo{
  justify-self: end; /* ✅ أقصى اليمين */
  text-decoration: none !important;
}

.nav-logo,
.nav-logo *{
  text-decoration: none !important;
  outline: none !important;
  border: none !important;
}

.nav-logo h2{
  margin:0;
  display:flex;
  align-items:center;
  gap: .7rem;
  white-space: nowrap;
  justify-content: flex-end;
  position: relative;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--text-dark);
  font-size: 1.7rem;
}

/* ===== gold underline under brand name only ===== */
#brandName{
  position: relative;
  display: inline-block;
}
#brandName::after{
  content:"";
  position:absolute;
  right:0;
  bottom:-7px;
  width:100%;
  height:3px;
  border-radius:3px;
  background: linear-gradient(90deg, #d4af37, #f6e27a, #d4af37);
  opacity: .95;
}

/* ===== logo 3D earth-like spin (around itself) ===== */
.nav-logo-img{
  height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  flex-shrink: 0;

  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;

  animation: earthSpin 2.2s linear infinite;
}

@keyframes earthSpin{
  from { transform: perspective(900px) rotateX(10deg) rotateY(0deg); }
  to   { transform: perspective(900px) rotateX(10deg) rotateY(360deg); }
}

@media (prefers-reduced-motion: reduce){
  .nav-logo-img{ animation: none !important; }
}

/* ===== toggles ===== */
.language-toggle,
.theme-toggle{
  background: none;
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
  height: 40px;
  padding: 0 .9rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: .2s ease;
}
.language-toggle:hover,
.theme-toggle:hover{
  background: var(--text-dark);
  color: #fff;
}

/* ===== mobile ===== */
.hamburger{ display:none; }

@media (max-width: 768px){
  .nav-container{
    height: 70px;
    grid-template-columns: auto auto auto;
  }

  .nav-logo h2{ font-size: 1.05rem; }
  .nav-logo-img{
    height: 42px;
    max-width: 90px;
  }

  /* لو عندك منيو موبايل، خليه dropdown نظيف */
  .hamburger{ display:flex; flex-direction:column; gap:5px; cursor:pointer; }
  .hamburger span{ width:24px; height:3px; background: var(--text-dark); border-radius:2px; }

  .nav-menu{
    position: absolute;
    top: 70px;
    inset-inline: 0; /* RTL/LTR */
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem 0;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-menu.active{ display:flex; }
}

/* =========================================================
   CLEAN HEADER + FOOTER OVERRIDES (final)
   - Prevent conflicting repeated rules above
========================================================= */

/* ---- NAVBAR: not fixed, stable layout for AR/EN ---- */

/* remove any reserved space from old fixed navbar */
body{
  padding-top: 0 !important;
}

/* lock navbar layout direction so it doesn't swap when html dir changes */
.nav-container{
  direction: ltr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display:flex;
  align-items:center;
  gap: 20px;
  height: 80px;
}

/* orders: actions (left) | menu (center) | logo (right) */
.nav-actions{ order: 1; }
.nav-menu{
  order: 2;
  flex: 1;
  display:flex;
  list-style:none;
  align-items:center;
  justify-content: center;
  gap: 3rem;
  margin:0;
  padding:0;
  direction: ltr; /* default */
}
.nav-logo{
  order: 3;
  display:flex;
  align-items:center;
  text-decoration:none !important;
}

/* Arabic text direction inside pieces */
html[lang="ar"] .nav-menu,
html[lang="ar"] .nav-logo,
html[lang="ar"] .nav-actions{ direction: rtl; }

html[lang="en"] .nav-menu,
html[lang="en"] .nav-logo,
html[lang="en"] .nav-actions{ direction: ltr; }

/* brand */
.nav-logo h2{
  display:flex;
  align-items:center;
  gap:.6rem;
  margin:0;
  white-space:nowrap;
}

/* stop any blue underline */
.nav-logo, .nav-logo *{
  text-decoration:none !important;
  border-bottom:none !important;
  outline:none !important;
}

/* gold line under brand name */
#brandName{
  position:relative;
  display:inline-block;
}
#brandName::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-6px;
  height:3px;
  border-radius:3px;
  background: linear-gradient(90deg, #d4af37, #f6e27a, #d4af37);
  opacity:.95;
}

/* logo earth spin */
.nav-logo-img{
  height: 56px !important;
  width: auto !important;
  max-width: 140px !important;
  object-fit: contain;
  flex-shrink:0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
  animation: earthSpin 2.6s linear infinite;
}
@keyframes earthSpin{
  from { transform: perspective(900px) rotateX(12deg) rotateY(0deg); }
  to   { transform: perspective(900px) rotateX(12deg) rotateY(360deg); }
}
@media (prefers-reduced-motion: reduce){
  .nav-logo-img{ animation:none !important; }
}

/* links hover underline keep */
.nav-link:hover{ color: var(--gold) !important; }

/* ---- MOBILE NAV ---- */
@media (max-width:768px){
  .nav-container{ height: 70px; }

  .nav-logo-img{
    height: 42px !important;
    max-width: 90px !important;
  }

  /* keep your existing hamburger behavior; just ensure dropdown sits below navbar */
  .nav-menu{
    gap: 1.6rem;
  }
  .nav-menu{
    top: 70px !important;
  }
}

/* =========================================================
   FOOTER: force the new footer layout (footer-container etc.)
========================================================= */
.footer{
  background: var(--gradient-dark) !important;
  color: #fff !important;
  padding: 1.4rem 0 .7rem !important;
  margin-top: 40px !important;
}

.footer-container{
  display:flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 12px;
}

.footer-right{
  display:flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 6px !important;
}

.footer-brand{
  display:flex !important;
  align-items:center !important;
  gap: 8px !important;
}

.footer-logo{
  height: 75px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
}

.footer-title{
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  white-space: nowrap !important;
}

.footer-phone{
  font-size: .9rem !important;
  color: #fff !important;
  text-decoration:none !important;
  display:flex !important;
  align-items:center !important;
  gap:5px !important;
  transition: .25s !important;
}
.footer-phone:hover{ color: var(--gold) !important; }

.footer-center{ text-align:center !important; }

.footer .footer-social{
  display:flex !important;
  gap:10px !important;
  justify-content:center !important;
  margin: 0 0 6px 0 !important;
  flex-wrap: wrap !important;
}

.footer .footer-social a{
  width:34px !important;
  height:34px !important;
  border-radius:50% !important;
  background: rgba(255,255,255,.08) !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  color:#fff !important;
  font-size:.9rem !important;
  transition:.25s !important;
  text-decoration:none !important;
}
.footer .footer-social a:hover{
  background: var(--gold) !important;
  color:#000 !important;
  transform: translateY(-2px) !important;
}

.footer-note{
  font-size:.75rem !important;
  color: rgba(255,255,255,.7) !important;
}

.footer-bottom{
  text-align:center !important;
  margin-top: .6rem !important;
  padding-top: .4rem !important;
  border-top: 1px solid rgba(255,255,255,.12) !important;
  font-size: .7rem !important;
  color: rgba(255,255,255,.6) !important;
}

/* mobile footer */
@media (max-width:768px){
  .footer-container{ flex-direction: column !important; }
  .footer-right{ align-items: center !important; }
  .footer-title{ white-space: normal !important; text-align:center !important; }
}

.location-gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.location-gallery img{
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: .25s;
}

.location-gallery img:hover{
  transform: scale(1.04);
  border-color: var(--gold);
}
/* عربي */
html[dir="rtl"] .nav-container {
  flex-direction: row;
}

/* انجليزي */
html[dir="ltr"] .nav-container {
  flex-direction: row-reverse;
}

/* =========================
   NAVBAR — SINGLE SOURCE OF TRUTH
========================= */

.navbar{
  position: relative;
  width: 100%;
  z-index: 2000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
}

body{ padding-top: 0; } /* مهم: لا تحجز مساحة */

.nav-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ترتيب ثابت: يسار actions | وسط menu | يمين brand */
.nav-actions{ order: 1; display:flex; align-items:center; gap:10px; }
.nav-menu{
  order: 2;
  flex: 1;
  display:flex;
  justify-content:center;
  align-items:center;
  list-style:none;
  gap: 2.5rem;
  margin:0;
  padding:0;
}
.nav-logo{ order: 3; display:flex; align-items:center; text-decoration:none; }

.nav-logo h2{
  margin:0;
  display:flex;
  align-items:center;
  gap:.6rem;
  white-space:nowrap;
}

.nav-logo-img{
  height: 56px;
  width:auto;
  max-width:140px;
  object-fit:contain;
  flex-shrink:0;
}

/* Links */
.nav-link{
  text-decoration:none;
  color: var(--text-dark);
  font-weight: 600;
  position: relative;
  padding: .5rem 0;
}
.nav-link:hover{ color: var(--gold); }
.nav-link::after{
  content:"";
  position:absolute;
  bottom:0;
  left:50%;
  width:0;
  height:2px;
  transform:translateX(-50%);
  background: linear-gradient(90deg, #d4af37, #f6e27a, #d4af37);
  transition:.25s;
}
.nav-link:hover::after{ width:100%; }

/* Mobile menu */
.hamburger{ display:none; }
@media(max-width:768px){
  .nav-container{ height:70px; }
  .hamburger{ display:flex; flex-direction:column; gap:5px; cursor:pointer; }
  .hamburger span{ width:24px; height:3px; background: var(--text-dark); border-radius:2px; }

  .nav-menu{
    position:absolute;
    top:70px;
    left:0;
    right:0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    flex-direction:column;
    gap: 1.2rem;
    padding: 1.2rem 0;
    box-shadow: var(--shadow-md);
    display:none;
  }
  .nav-menu.active{ display:flex; }

  .nav-logo-img{ height:42px; max-width:90px; }
}


.location-card{
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: .25s ease;
  cursor: pointer;
}

.location-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.location-card .location-info{
  padding: 1.6rem;
}

.location-card h3{
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: .6rem;
}

.location-card p{
  color: var(--text-light);
}
/* أول كارد (اللي فوق) خلي صورته بانر قصير */
.locations-grid > .location-card:first-child .location-image{
  height: 220px;          /* عدّلها 180-260 حسب ذوقك */
  aspect-ratio: auto;     /* يلغي 16/9 للبانر */
}

.locations-grid > .location-card:first-child .location-image img{
  object-fit: cover;      /* يعبّي بانر بشكل نظيف */
}
/* =========================
   PARTNERS CLEAN GRID
========================= */

.partners{
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff, #fafafa);
}

.partners-title{
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 35px;
  color: var(--gold);
  letter-spacing: 1px;
}

/* Grid */
.partners-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 25px;
  align-items: center;
}

/* Card */
.partner-item{
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: .3s;
}

/* Hover فخم */
.partner-item:hover{
  transform: translateY(-5px);
  box-shadow:
    0 12px 28px rgba(0,0,0,0.12),
    0 0 0 1px rgba(212,175,55,0.25),
    0 8px 25px rgba(212,175,55,0.2);
}

/* Logo */
.partner-item img{
  max-height: 55px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: .3s;
}

.partner-item:hover img{
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Mobile */
@media (max-width:768px){
  .partners-grid{
    grid-template-columns: repeat(2,1fr);
  }
}

.ltr, .ltr * {
  direction: ltr;
  unicode-bidi: isolate;
}