/* ===================================
   PRINT ADDRESS - MAIN STYLESHEET
   =================================== */

/* === CSS VARIABLES === */
:root {
    --primary-color: #64C7CC;
    --primary-dark: #4AB5BB;
    --primary-light: #7FD4D9;
    --secondary-color: #1a1a1a;
    --accent-color: #000000;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --text-gray: #999999;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #f0f2f5;
    --border-color: #e1e4e8;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --gradient-primary: linear-gradient(135deg, #64C7CC 0%, #4AB5BB 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Tajawal', sans-serif;
    --container-width: 1280px;
    --header-height: 80px;
    --header-height-scroll: 70px;
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* === CONTAINER === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* === LOADER === */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-img {
    width: 200px; /* تم التصغير */
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    margin-bottom: 20px;
}

.loader-p {
    font-size: 80px;
    font-weight: 900;
    color: var(--primary-color);
    display: inline-block;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: var(--bg-gray);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: white;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    height: var(--header-height-scroll);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding-top: 15px; /* <--- هاد السطر هو اللي رح ينزلهم لتحت */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    height: 100%;
    margin: 0;
    padding: 0;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px; /* ارتفاع ثابت لضبط المحاذاة */
    width: auto;
}
.logo-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

.p-letter {
    position: absolute;
    font-size: 40px;
    font-weight: 900;
    color: var(--primary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gradient-primary);
    border-radius: 0 0 50% 50%;
    opacity: 0.3;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
    margin: 0;
}

.logo-text .ar-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    display: block;
    margin: 0;
}

.logo-text .en-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
    display: block;
    margin: 0;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

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

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-right: 25px;
}

.lang-switcher .lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.lang-switcher .lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 199, 204, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--header-height) + 60px) 0 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(100, 199, 204, 0.3) 0%, rgba(74, 181, 187, 0.2) 100%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(74, 181, 187, 0.25) 0%, rgba(100, 199, 204, 0.15) 100%);
    bottom: -100px;
    right: -50px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(100, 199, 204, 0.2) 0%, rgba(74, 181, 187, 0.1) 100%);
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(100, 199, 204, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 199, 204, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(100, 199, 204, 0.1);
    border: 2px solid rgba(100, 199, 204, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.badge-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.title-line {
    display: block;
}

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

.hero-desc {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-white);
    box-shadow: 0 10px 30px rgba(100, 199, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(100, 199, 204, 0.4);
}

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

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

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

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

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

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

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

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(100, 199, 204, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 20px;
    margin: 0 auto 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    isolation: isolate;
}

.floating-card {
    position: absolute;
    background: var(--bg-white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
    animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: -30px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    right: 0;
    animation-delay: 4s;
}

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

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 20px;
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.card-subtitle {
    font-size: 12px;
    color: var(--text-gray);
}

.hero-image-container {
    position: relative;
    z-index: 1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    z-index: 1;
}

.hero-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid rgba(100, 199, 204, 0.3);
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    z-index: 1;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    z-index: 1;
}

.decorative-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(100, 199, 204, 0.5) 2px, transparent 2px);
    background-size: 20px 20px;
    top: 50px;
    left: 50px;
    z-index: 1;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    animation: bounce 2s infinite;
}

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

.scroll-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

/* === SECTION STYLES === */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(100, 199, 204, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-title .highlight {
    color: var(--primary-color);
}

.section-desc {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* === ABOUT SECTION === */
.about {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .lead {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin: 40px 0;
}

.feature-box {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow-md);
}

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

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 14px;
    color: var(--text-light);
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.image-main {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 199, 204, 0.2) 0%, rgba(74, 181, 187, 0.1) 100%);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.badge-content .years {
    display: block;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-content .text {
    font-size: 16px;
    font-weight: 600;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(100, 199, 204, 0.1);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    z-index: -1;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    z-index: -1;
}

/* === VISION & MISSION === */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vm-card {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.vm-icon-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 32px;
    position: relative;
    z-index: 1;
}

.vm-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(100, 199, 204, 0.1);
    border-radius: 15px;
    z-index: 0;
}

.vm-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.vm-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* === SERVICES SECTION === */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.service-icon-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 28px;
    position: relative;
    z-index: 1;
}

.service-bg {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: rgba(100, 199, 204, 0.1);
    border-radius: 15px;
    z-index: 0;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 15px;
}

.service-link:hover {
    gap: 15px;
}

/* === VALUES SECTION === */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 32px;
    margin: 0 auto 25px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* === WHY CHOOSE US === */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-list {
    margin-top: 50px;
}

.why-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.why-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
}

.why-content h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

.why-visual {
    position: relative;
}

.why-image-wrapper {
    position: relative;
}

.why-image-wrapper .image-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.stats-float {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 30px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.float-stat .stat-num {
    display: block;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.float-stat .stat-desc {
    font-size: 16px;
    font-weight: 600;
}

.why-shape {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(100, 199, 204, 0.1);
    border-radius: 50%;
    z-index: -1;
}

/* === PORTFOLIO SECTION === */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    background: var(--bg-white);
}

.portfolio-item:hover,
.portfolio-item:focus-visible {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.portfolio-item:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 4px;
}

.portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 199, 204, 0.95) 0%, rgba(74, 181, 187, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--bg-white);
    padding: 30px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.overlay-content h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.overlay-content p {
    font-size: 14px;
    opacity: 0.9;
}

.portfolio-link {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-link {
    opacity: 1;
}

.portfolio-link:hover {
    transform: scale(1.1);
}

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

body.gallery-open {
    overflow: hidden;
}

.portfolio-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.portfolio-gallery-modal.active {
    display: flex;
}

.gallery-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 32, 43, 0.76);
    backdrop-filter: blur(8px);
}

.gallery-dialog {
    position: relative;
    width: min(1100px, 100%);
    max-height: calc(100vh - 48px);
    background: var(--bg-white);
    border-radius: 18px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto minmax(260px, 1fr) auto;
}

.gallery-close {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-close:hover,
.gallery-close:focus-visible {
    background: var(--primary-color);
    color: var(--bg-white);
    outline: none;
}

.gallery-header {
    padding: 28px 34px 18px;
    padding-inline-end: 86px;
}

.gallery-category {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 800;
}

.gallery-header h3 {
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
}

.gallery-desc {
    color: var(--text-light);
    font-size: 15px;
}

.gallery-viewer {
    position: relative;
    min-height: 360px;
    background: #f5f7f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main-img {
    width: 100%;
    height: min(58vh, 620px);
    object-fit: contain;
    display: block;
}

.gallery-main-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
}

.gallery-main-link:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: -6px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-nav:hover,
.gallery-nav:focus-visible {
    background: var(--primary-color);
    color: var(--bg-white);
    outline: none;
}

.gallery-prev {
    left: 18px;
}

.gallery-next {
    right: 18px;
}

.gallery-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 24px 22px;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.gallery-thumb {
    flex: 0 0 auto;
    width: 78px;
    height: 58px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    opacity: 0.72;
    transition: var(--transition);
}

.gallery-thumb.active,
.gallery-thumb:hover,
.gallery-thumb:focus-visible {
    border-color: var(--primary-color);
    opacity: 1;
    outline: none;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-counter {
    flex: 0 0 auto;
    color: var(--text-light);
    font-weight: 800;
}

/* === GALLERY PAGE === */
.gallery-page-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.gallery-page-nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.gallery-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 800;
    transition: var(--transition);
}

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

.gallery-page-logo img {
    width: 92px;
    height: 52px;
    object-fit: contain;
    display: block;
}

.gallery-page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #f7fbfc 0%, var(--bg-white) 100%);
}

.gallery-page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 48px;
    align-items: center;
}

.gallery-page-copy h1 {
    color: var(--text-dark);
    font-size: 46px;
    line-height: 1.25;
    font-weight: 900;
    margin: 14px 0 18px;
}

.gallery-page-copy p {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 28px;
    max-width: 720px;
}

.gallery-page-cover {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow-xl);
}

.gallery-page-section {
    padding: 60px 0 90px;
}

.gallery-page-title {
    margin-bottom: 28px;
}

.gallery-page-title h2 {
    color: var(--text-dark);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 8px;
}

.gallery-page-title p {
    color: var(--text-light);
}

.hardcover-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.hardcover-gallery-item {
    display: block;
    background: #f5f7f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.hardcover-gallery-item:hover,
.hardcover-gallery-item:focus-visible {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    outline: none;
}

.hardcover-gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* === LEGAL PAGES === */
.legal-page {
    background: linear-gradient(180deg, #f7fbfc 0%, var(--bg-white) 220px);
    padding: 70px 0 90px;
}

.legal-container {
    max-width: 900px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 46px;
    box-shadow: var(--shadow-md);
}

.legal-container h1 {
    color: var(--text-dark);
    font-size: 42px;
    line-height: 1.25;
    font-weight: 900;
    margin: 14px 0 8px;
}

.legal-updated {
    color: var(--text-gray);
    margin-bottom: 34px;
}

.legal-container section {
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
}

.legal-container h2 {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 10px;
}

.legal-container p {
    color: var(--text-light);
    line-height: 1.9;
}

/* === CTA SECTION === */
.cta {
    padding: 100px 0;
}

.cta-box {
    background: var(--gradient-primary);
    border-radius: 30px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--bg-white);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
}

.cta-content {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* === CONTACT SECTION === */
.contact {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.social-links {
    grid-column: 1 / -1;
    margin-top: 10px;
}
.info-card {
    display: flex;
    gap: 20px;
    background: var(--bg-white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 24px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-content p {
    color: var(--text-light);
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 20px;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(100, 199, 204, 0.4);
}

/* Contact Form */
.contact-form {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    transition: var(--transition);
    background: transparent;
}

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

.form-group label {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 15px;
    pointer-events: none;
    transition: var(--transition);
    background: var(--bg-white);
    padding: 0 5px;
}

.form-group textarea + label {
    top: 20px;
    transform: none;
}

.form-group select:invalid,
.form-group select option[value=""] {
    color: transparent;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:valid + label {
    top: 0;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 700;
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.form-group input:focus ~ .focus-border,
.form-group textarea:focus ~ .focus-border {
    width: 100%;
}

.btn-submit {
    position: relative;
}

.btn-loader {
    position: absolute;
    left: 20px;
}

/* Map */
.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* === FOOTER === */
.footer {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 160px;
    height: 160px;
}

.footer-logo .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-logo .p-letter {
    color: var(--primary-color);
}

.footer-logo .ar-text {
    color: var(--text-dark);
}

.footer-logo .en-text {
    color: var(--text-gray);
}

.footer-desc {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-dark);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-right: 10px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: #f3f4f6;
    border: 2px solid #d1d5db;
    border-radius: 50px;
    color: var(--text-dark);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: var(--text-gray);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 18px;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--text-gray);
    font-size: 14px;
    transition: var(--transition);
}

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

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.35);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 20px 35px rgba(37, 211, 102, 0.45);
}

.whatsapp-float i {
    font-size: 34px;
    line-height: 1;
    font-family: "Font Awesome 6 Brands";
}

@keyframes whatsapp-pulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 15px 30px rgba(37, 211, 102, 0.35);
    }
    50% {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 22px 35px rgba(37, 211, 102, 0.45);
    }
}

/* === SCROLL TOP === */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(100, 199, 204, 0.4);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-visual,
    .about-visual,
    .why-visual {
        order: -1;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin-top: 10px;
        display: none;
    }
    
    .has-dropdown.active .dropdown {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-gallery-modal {
        padding: 12px;
    }

    .gallery-dialog {
        max-height: calc(100vh - 24px);
        grid-template-rows: auto minmax(220px, 1fr) auto;
        border-radius: 14px;
    }

    .gallery-header {
        padding: 22px 22px 14px;
        padding-inline-end: 70px;
    }

    .gallery-header h3 {
        font-size: 22px;
    }

    .gallery-viewer {
        min-height: 260px;
    }

    .gallery-main-img {
        height: min(48vh, 440px);
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .gallery-footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 16px 18px;
    }

    .gallery-thumbs {
        width: 100%;
    }
    
    .cta-box {
        padding: 40px 30px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: calc(var(--header-height) + 40px) 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-desc {
        font-size: 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .floating-card {
        display: none;
    }

    .portfolio-img img {
        height: 240px;
    }

    .gallery-close {
        top: 12px;
        left: 12px;
        width: 40px;
        height: 40px;
    }

    .gallery-thumb {
        width: 66px;
        height: 50px;
    }
}

/* === PRINT STYLES === */
@media print {
    .navbar,
    .hero-scroll,
    .scroll-top,
    .btn,
    .footer {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .section {
        padding: 40px 0;
    }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
