/* ========================================
  MOKADAK PHOTOGRAPHY - COMPLETE CUSTOM CSS
  NO BOOTSTRAP - PURE CSS GRID SYSTEM
======================================== */

/* @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
    --gold: #D4AF37;
    --gold-light: #E8C84B;
    --gold-dark: #B8960C;
    --gold-rgb: 212, 175, 55;
    --black: #0a0a0a;
    --black-light: #111111;
    --black-lighter: #1a1a1a;
    --black-card: #141414;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #b0b0b0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    /* font-family: 'Tajawal', sans-serif; */
    font-family: 'Cairo', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ========================================
   CUSTOM GRID SYSTEM - FIXED
   ======================================== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.row > [class*="col-"] {
    padding: 0 12px;
    /* width: 100%; */
}

.col-1 { width: 8.333333%; }
.col-2 { width: 16.666667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.333333%; }
.col-5 { width: 41.666667%; }
.col-6 { width: 50%; }
.col-7 { width: 58.333333%; }
.col-8 { width: 66.666667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.333333%; }
.col-11 { width: 91.666667%; }
.col-12 { width: 100%; }

@media (min-width: 576px) {
    .col-sm-1 { width: 8.333333%; }
    .col-sm-2 { width: 16.666667%; }
    .col-sm-3 { width: 25%; }
    .col-sm-4 { width: 33.333333%; }
    .col-sm-5 { width: 41.666667%; }
    .col-sm-6 { width: 50%; }
    .col-sm-7 { width: 58.333333%; }
    .col-sm-8 { width: 66.666667%; }
    .col-sm-9 { width: 75%; }
    .col-sm-10 { width: 83.333333%; }
    .col-sm-11 { width: 91.666667%; }
    .col-sm-12 { width: 100%; }
}

@media (min-width: 768px) {
    .col-md-1 { width: 8.333333%; }
    .col-md-2 { width: 16.666667%; }
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.333333%; }
    .col-md-5 { width: 41.666667%; }
    .col-md-6 { width: 50%; }
    .col-md-7 { width: 58.333333%; }
    .col-md-8 { width: 66.666667%; }
    .col-md-9 { width: 75%; }
    .col-md-10 { width: 83.333333%; }
    .col-md-11 { width: 91.666667%; }
    .col-md-12 { width: 100%; }
}

@media (min-width: 992px) {
    .col-lg-1 { width: 8.333333%; }
    .col-lg-2 { width: 16.666667%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.333333%; }
    .col-lg-5 { width: 41.666667%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.333333%; }
    .col-lg-8 { width: 66.666667%; }
    .col-lg-9 { width: 75%; }
    .col-lg-10 { width: 83.333333%; }
    .col-lg-11 { width: 91.666667%; }
    .col-lg-12 { width: 100%; }
}

@media (min-width: 1200px) {
    .col-xl-1 { width: 8.333333%; }
    .col-xl-2 { width: 16.666667%; }
    .col-xl-3 { width: 25%; }
    .col-xl-4 { width: 33.333333%; }
    .col-xl-5 { width: 41.666667%; }
    .col-xl-6 { width: 50%; }
    .col-xl-7 { width: 58.333333%; }
    .col-xl-8 { width: 66.666667%; }
    .col-xl-9 { width: 75%; }
    .col-xl-10 { width: 83.333333%; }
    .col-xl-11 { width: 91.666667%; }
    .col-xl-12 { width: 100%; }
}

.align-center { align-items: center; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }

/* ========================================
   SECTIONS & UTILITIES
   ======================================== */
.section-padding { padding: 120px 0; }
.gold-text { color: var(--gold); }
.bg-dark-custom { background: var(--black-light) !important; }

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

.section-subtitle {
    display: inline-block;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    padding: 0 24px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section-subtitle::before {
    left: -20px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-subtitle::after {
    right: -20px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--white);
    word-wrap: break-word;
    line-height: 1.2;
}

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    font-family: inherit;
}

.btn-gold {
    background: var(--gold);
    color: var(--black) !important;
    border-color: var(--gold);
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-light {
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    z-index: 1001;
}

.brand-icon {
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    color: var(--black);
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.brand-text { color: var(--gold); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
    background: none;
    border: none;
}

.toggle-bar {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active .toggle-bar:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
.nav-toggle.active .toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .toggle-bar:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

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

.nav-cta { margin-right: 12px; }

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1516035069371-29a1b244cc32?w=1920&h=1080&fit=crop') center/cover no-repeat;
    animation: heroZoom 25s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.75) 40%,
        rgba(10, 10, 10, 0.6) 60%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

/* ========================================
   CAMERA APERTURE / SHUTTER ANIMATION
   REPLACES FLOATING DOTS PARTICLES
   ======================================== */
.hero-shutter-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.aperture-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
    opacity: 0.08;
}

.aperture-blade {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 260px;
    background: var(--gold);
    border-radius: 0 0 50px 0;
    transform-origin: 0 0;
    opacity: 0.6;
    animation: aperturePulse 8s ease-in-out infinite;
}

.aperture-blade:nth-child(1) { transform: rotate(0deg) translate(-50%, -50%); animation-delay: 0s; }
.aperture-blade:nth-child(2) { transform: rotate(45deg) translate(-50%, -50%); animation-delay: 0.15s; }
.aperture-blade:nth-child(3) { transform: rotate(90deg) translate(-50%, -50%); animation-delay: 0.3s; }
.aperture-blade:nth-child(4) { transform: rotate(135deg) translate(-50%, -50%); animation-delay: 0.45s; }
.aperture-blade:nth-child(5) { transform: rotate(180deg) translate(-50%, -50%); animation-delay: 0.6s; }
.aperture-blade:nth-child(6) { transform: rotate(225deg) translate(-50%, -50%); animation-delay: 0.75s; }
.aperture-blade:nth-child(7) { transform: rotate(270deg) translate(-50%, -50%); animation-delay: 0.9s; }
.aperture-blade:nth-child(8) { transform: rotate(315deg) translate(-50%, -50%); animation-delay: 1.05s; }

@keyframes aperturePulse {
    0%, 100% { opacity: 0.2; transform: rotate(var(--rotation, 0deg)) translate(-50%, -50%) scale(0.85); }
    50% { opacity: 0.7; transform: rotate(var(--rotation, 0deg)) translate(-50%, -50%) scale(1.05); }
}

/* Camera Lens Rings */
.lens-ring {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.12);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lens-ring-1 {
    width: 350px;
    height: 350px;
    animation: lensRotate 25s linear infinite;
}

.lens-ring-2 {
    width: 450px;
    height: 450px;
    border-style: dashed;
    animation: lensRotate 35s linear infinite reverse;
}

.lens-ring-3 {
    width: 250px;
    height: 250px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    animation: lensPulse 5s ease-in-out infinite;
}

@keyframes lensRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes lensPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

/* Focus Points (AF Points) Animation */
.focus-points {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.focus-point {
    position: absolute;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    animation: focusScan 10s ease-in-out infinite;
}

.focus-point::before,
.focus-point::after {
    content: '';
    position: absolute;
    background: rgba(212, 175, 55, 0.3);
}

.focus-point::before {
    width: 1px;
    height: 10px;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.focus-point::after {
    width: 10px;
    height: 1px;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.focus-point:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s; }
.focus-point:nth-child(2) { top: 28%; right: 18%; animation-delay: 2s; }
.focus-point:nth-child(3) { bottom: 22%; left: 22%; animation-delay: 4s; }
.focus-point:nth-child(4) { bottom: 32%; right: 12%; animation-delay: 6s; }
.focus-point:nth-child(5) { top: 48%; left: 8%; animation-delay: 3s; }
.focus-point:nth-child(6) { top: 12%; left: 48%; animation-delay: 5s; }

@keyframes focusScan {
    0%, 100% { opacity: 0.05; transform: scale(0.7); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* Viewfinder Grid Lines */
.viewfinder-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.04;
}

.viewfinder-grid::before,
.viewfinder-grid::after {
    content: '';
    position: absolute;
    background: rgba(212, 175, 55, 0.6);
}

.viewfinder-grid::before {
    width: 1px;
    height: 100%;
    left: 33.33%;
    top: 0;
    box-shadow: calc(33.33vw) 0 0 rgba(212, 175, 55, 0.6), calc(66.66vw) 0 0 rgba(212, 175, 55, 0.6);
}

.viewfinder-grid::after {
    width: 100%;
    height: 1px;
    top: 33.33%;
    left: 0;
    box-shadow: 0 calc(33.33vh) 0 rgba(212, 175, 55, 0.6), 0 calc(66.66vh) 0 rgba(212, 175, 55, 0.6);
}

/* Center Crosshair */
.crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    pointer-events: none;
    opacity: 0.1;
    animation: crosshairPulse 4s ease-in-out infinite;
}

.crosshair::before,
.crosshair::after {
    content: '';
    position: absolute;
    background: var(--gold);
}

.crosshair::before { width: 1px; height: 100%; left: 50%; transform: translateX(-50%); }
.crosshair::after { width: 100%; height: 1px; top: 50%; transform: translateY(-50%); }

@keyframes crosshairPulse {
    0%, 100% { opacity: 0.05; transform: translate(-50%, -50%) scale(0.9); }
    50% { opacity: 0.2; transform: translate(-50%, -50%) scale(1.1); }
}

/* Shutter Speed Lines */
.shutter-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.03;
}

.shutter-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: shutterSweep 6s linear infinite;
}

.shutter-line:nth-child(1) { top: 20%; width: 60%; left: -60%; animation-delay: 0s; }
.shutter-line:nth-child(2) { top: 40%; width: 80%; left: -80%; animation-delay: 1.5s; }
.shutter-line:nth-child(3) { top: 60%; width: 50%; left: -50%; animation-delay: 3s; }
.shutter-line:nth-child(4) { top: 80%; width: 70%; left: -70%; animation-delay: 4.5s; }

@keyframes shutterSweep {
    0% { transform: translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(250vw); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.hero-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: var(--white);
    /* color: var(--gold); */
    min-height: 80px;
    word-wrap: break-word;
    line-height: 1.3;
}

.typewriter { display: inline; }

.cursor {
    display: inline-block;
    color: var(--gold);
    animation: blink 1s step-end infinite;
    font-weight: 300;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-desc {
    font-size: 1.3rem;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.9;
    padding: 0 16px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.scroll-down {
    animation: bounce 2.5s ease-in-out infinite;
}

.scroll-down a {
    color: var(--gold);
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-full);
    transition: var(--transition);
    background: rgba(212, 175, 55, 0.05);
}

.scroll-down a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

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

/* ========================================
   ABOUT SECTION - FIXED TEXT ALIGNMENT
   ======================================== */
.about-img-wrapper {
    position: relative;
    padding: 20px;
    max-width: 100%;
}

.about-img {
    width: 100%;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
}

.about-img-wrapper:hover .about-img {
    transform: translate(-5px, -5px);
}

.about-img-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    transform: translate(20px, 20px);
    z-index: 1;
    opacity: 0.6;
    transition: var(--transition-slow);
}

.about-img-wrapper:hover .about-img-frame {
    transform: translate(25px, 25px);
    opacity: 1;
}

.about-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--gold);
    color: var(--black);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    z-index: 3;
    box-shadow: var(--shadow-gold);
    animation: pulse-gold 3s ease-in-out infinite;
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.5); }
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 1rem;
    font-weight: 700;
}

/* Fixed text alignment for about section */
.about-text {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 20px;
    text-align: justify;
    text-align-last: right;
    line-height: 2;
    hyphens: auto;
}

/* Stats - Fixed Grid */
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 28px 16px;
    background: var(--black-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.stat-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 12px;
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    transition: var(--transition);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 8px;
}

/* ========================================
   SERVICES SECTION - FIXED GRID
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-xl);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, rgba(212,175,55,0.1), transparent);
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-12px);
    box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
    height: 100px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    color: var(--gold);
    transition: var(--transition-slow);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--black);
    transform: rotateY(360deg);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.service-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

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

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--gray);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

/* Portfolio Grid - Fixed */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: zoom-in;
    aspect-ratio: 4/5;
    background: var(--black-card);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.5) 40%, transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
    opacity: 0;
    transition: var(--transition);
}

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

.portfolio-info {
    text-align: center;
    background: #00000085;
    padding: 8px;
    width: 100%;
    box-shadow: 0 2px 2px #D4AF37;
}
.portfolio-info h4 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.portfolio-info p {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.portfolio-zoom {
    display: inline-flex;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius-full);
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.portfolio-zoom:hover {
    background: var(--white);
    color: var(--black);
    transform: scale(1.15);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    z-index: 2;
    width: 95%;
    height: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-img-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.lightbox-content img.zoomed {
    transform: scale(1.8);
    cursor: zoom-out;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--black);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.lightbox-nav:hover {
    background: var(--gold);
    color: var(--black);
}

.lightbox-prev { right: 20px; }
.lightbox-next { left: 20px; }

.lightbox-caption {
    color: var(--gray-light);
    margin-top: 20px;
    font-size: 1.1rem;
    text-align: center;
    padding: 0 16px;
}

.lightbox-counter {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 10px;
    text-align: center;
    font-weight: 600;
}

/* ========================================
   WHY US SECTION - FIXED GRID
   ======================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.why-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-xl);
    padding: 32px 22px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.why-card:hover {
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.7rem;
    color: var(--gold);
    transition: var(--transition-slow);
    flex-shrink: 0;
}

.why-card:hover .why-icon {
    background: var(--gold);
    color: var(--black);
    transform: rotate(360deg);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--white);
}

.why-card p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.8;
}

/* ========================================
   TESTIMONIALS SECTION - FIXED GRID
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 6rem;
    color: rgba(212, 175, 55, 0.05);
    font-weight: 900;
    line-height: 1;
    font-family: serif;
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 24px;
    font-style: italic;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    text-align: justify;
    text-align-last: right;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    margin-left: 14px;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--white);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-item {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: rgba(212, 175, 55, 0.15); }

.faq-header {
    padding: 22px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    gap: 12px;
    user-select: none;
}

.faq-header h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    color: var(--white);
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-header h5 i {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-icon {
    color: var(--gold);
    transition: var(--transition);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.faq-header.active .faq-icon { transform: rotate(180deg); }

.faq-body {
    padding: 0 24px 24px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.9;
    display: none;
    text-align: justify;
    text-align-last: right;
}

.faq-body.show { display: block; }

.faq-body strong {
    color: var(--gold);
    font-weight: 700;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-info-wrapper {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-xl);
    padding: 40px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    margin-left: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info-item:hover .contact-icon {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--white);
}

.contact-details a,
.contact-details p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
    word-break: break-all;
}

.contact-details a:hover { color: var(--gold); }

.contact-social {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.contact-social h5 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 46px;
    height: 46px;
    background: var(--black-lighter);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.contact-map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    border-radius: var(--radius-xl);
    filter: grayscale(0.8) invert(0.9);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--black-light);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 0 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.9;
    text-align: justify;
    text-align-last: right;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--gray);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

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

.footer-links a:hover::after { width: 100%; }

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: var(--black-lighter);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.footer-contact p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--gold);
    width: 18px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 60px;
    padding: 24px 0;
    text-align: center;
}

.copyright,
.credits {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.credits { margin-top: 8px; }

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white) !important;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 998;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 35px rgba(37, 211, 102, 0.6); }
}

.whatsapp-float:hover {
    /* transform: scale(1.1) rotate(10deg); */
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    /* left: 50%; */
    left: 0;
    /* transform: translateX(-50%); */
    background: var(--black-card);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    /* transition: var(--transition); */
    border: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    /* bottom: 75px; */
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    cursor: pointer;
    touch-action: manipulation;
}

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

.back-to-top:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.back-to-top:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3);
}

/* ========================================
   SCROLLBAR & SELECTION
   ======================================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

::selection {
    background: var(--gold);
    color: var(--black);
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* ========================================
   RESPONSIVE - TABLET (max-width: 991px)
   ======================================== */
@media (max-width: 991px) {
    .section-padding { padding: 80px 0; }
    .section-title { font-size: 2.4rem; }

    .hero-title { font-size: 2.8rem; min-height: 70px; }
    .hero-desc { font-size: 1.15rem; }

    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        gap: 0;
        overflow-y: auto;
    }

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

    .nav-menu::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: -1;
    }

    .nav-menu.active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 4px;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        border-radius: 0;
    }

    .nav-link::after { display: none; }

    .nav-cta {
        margin: 24px 0 0;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 2rem; }

    .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

    .about-badge {
        padding: 16px 22px;
        bottom: 5px;
        left: 5px;
    }
    .badge-number { font-size: 2rem; }

    .lightbox-nav { display: none !important; }

    .aperture-wrapper {
        width: 350px;
        height: 350px;
    }
    .aperture-blade {
        width: 120px;
        height: 200px;
    }
    .lens-ring-1 { width: 250px; height: 250px; }
    .lens-ring-2 { width: 320px; height: 320px; }
    .lens-ring-3 { width: 180px; height: 180px; }
}

/* ========================================
   RESPONSIVE - MOBILE (max-width: 767px)
   ======================================== */
@media (max-width: 767px) {
    .container { padding: 0 16px; }
    .section-padding { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }
    .section-title { font-size: 1.9rem; }
    .section-subtitle { font-size: 0.8rem; letter-spacing: 2px; }
    .section-desc { font-size: 1rem; padding: 0 8px; }

    .hero-section { min-height: 500px; }
    .hero-title {
        font-size: 2rem;
        min-height: 55px;
        padding: 0 8px;
    }
    .hero-desc {
        font-size: 1rem;
        padding: 0 8px;
        margin-bottom: 32px;
    }
    .hero-buttons { gap: 12px; }
    .hero-buttons .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    .scroll-down { margin-top: 40px; }
    .scroll-down a {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .about-img-wrapper { padding: 10px; }
    .about-img-frame { transform: translate(10px, 10px); }
    .about-badge {
        padding: 12px 18px;
        bottom: 0;
        left: 0;
    }
    .badge-number { font-size: 1.6rem; }
    .badge-text { font-size: 0.85rem; }

    .about-text { font-size: 0.95rem; }
    .section-header { text-align: center; }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .stat-item { padding: 16px 8px; }
    .stat-icon { font-size: 1.4rem; }
    .stat-number { font-size: 1.6rem; }
    .stat-label { font-size: 0.75rem; }

    .service-card { padding: 36px 24px; }
    .service-icon { width: 65px; height: 65px; font-size: 1.6rem; }
    .service-title { font-size: 1.1rem; }
    .service-desc { font-size: 0.9rem; }

    .portfolio-grid { grid-template-columns: 1fr; gap: 12px; }
    .services-grid { grid-template-columns: 1fr; gap: 12px; }
    .why-grid { grid-template-columns: 1fr; gap: 12px; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .portfolio-item { aspect-ratio: 16/10; }
    .portfolio-overlay { opacity: 1; padding: 20px; }
    .portfolio-info h4 { font-size: 1.05rem; }

    .filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .why-card { padding: 30px 20px; }
    .why-icon { width: 55px; height: 55px; font-size: 1.4rem; }
    .why-card h3 { font-size: 1.05rem; }
    .why-card p { font-size: 0.88rem; }

    .testimonial-card { padding: 28px 24px; }
    .testimonial-text { font-size: 0.92rem; }
    .author-avatar { width: 42px; height: 42px; font-size: 1.1rem; }
    .author-info h4 { font-size: 0.95rem; }

    .faq-header { padding: 18px 20px; }
    .faq-header h5 { font-size: 0.95rem; gap: 8px; }
    .faq-body { padding: 0 20px 20px; font-size: 0.9rem; }

    .contact-info-wrapper { padding: 28px 20px; }
    .contact-icon { width: 48px; height: 48px; font-size: 1.1rem; }
    .contact-details h4 { font-size: 0.95rem; }
    .contact-details a, .contact-details p { font-size: 0.9rem; }
    .contact-map-wrapper { min-height: 300px; }
    .contact-map-wrapper iframe { min-height: 300px; }

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

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
        bottom: 20px;
        left: 20px;
    }
    .whatsapp-tooltip { display: none; }

    .back-to-top {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }

    .lightbox-close {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        top: 10px;
        left: 10px;
    }
    .lightbox-caption { font-size: 0.95rem; }

    .footer { padding: 50px 0 0; }
    .footer-brand { font-size: 1.3rem; }
    .footer-title { font-size: 1rem; margin-bottom: 20px; }
    .footer-bottom { padding: 20px 0; margin-top: 40px; }
    .copyright, .credits { font-size: 0.85rem; }

    .nav-brand { font-size: 1.2rem; }
    .brand-icon { width: 38px; height: 38px; font-size: 1rem; }

    .aperture-wrapper {
        width: 280px;
        height: 280px;
    }
    .aperture-blade {
        width: 90px;
        height: 150px;
    }
    .lens-ring-1 { width: 180px; height: 180px; }
    .lens-ring-2 { width: 240px; height: 240px; }
    .lens-ring-3 { width: 120px; height: 120px; }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (max-width: 575px)
   ======================================== */
@media (max-width: 575px) {
    .hero-section { min-height: 450px; }
    .hero-title { font-size: 1.6rem; min-height: 45px; }
    .hero-desc { font-size: 0.9rem; }
    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 260px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title { font-size: 1.6rem; }
    .section-subtitle { font-size: 0.75rem; }
    .section-padding { padding: 50px 0; }

    .stats-row { grid-template-columns: 1fr; gap: 8px; }
    .stat-item { padding: 12px 6px; }
    .stat-number { font-size: 1.4rem; }
    .stat-label { font-size: 0.7rem; }
    .stat-icon { font-size: 1.2rem; }

    .portfolio-item { aspect-ratio: 4/3; }

    .service-card { padding: 28px 18px; }
    .service-icon { width: 55px; height: 55px; font-size: 1.4rem; }
    .service-title { font-size: 1rem; }
    .service-desc { font-size: 0.85rem; }

    .why-card { padding: 24px 16px; }
    .why-icon { width: 48px; height: 48px; font-size: 1.2rem; }
    .why-card h3 { font-size: 1rem; }
    .why-card p { font-size: 0.85rem; }

    .testimonial-card { padding: 24px 20px; }
    .testimonial-text { font-size: 0.88rem; }
    .author-avatar { width: 38px; height: 38px; font-size: 1rem; }
    .author-info h4 { font-size: 0.9rem; }
    .author-info span { font-size: 0.78rem; }

    .faq-header { padding: 14px 16px; }
    .faq-header h5 { font-size: 0.88rem; }
    .faq-body { padding: 0 16px 16px; font-size: 0.85rem; }

    .contact-info-wrapper { padding: 24px 16px; }
    .contact-icon { width: 42px; height: 42px; font-size: 1rem; }
    .contact-details h4 { font-size: 0.9rem; }
    .contact-details a, .contact-details p { font-size: 0.85rem; }

    .footer-social a { width: 36px; height: 36px; font-size: 0.9rem; }
    .footer-contact p { font-size: 0.8rem; }
}

/* Very small screens */
@media (max-width: 360px) {
    .hero-title { font-size: 1.35rem; }
    .hero-desc { font-size: 0.85rem; }
    .section-title { font-size: 1.4rem; }

    .stats-row { gap: 6px; }
    .stat-number { font-size: 1.2rem; }
    .stat-label { font-size: 0.65rem; }

    .filter-btn { padding: 6px 14px; font-size: 0.8rem; }

    .nav-brand { font-size: 1.1rem; }
    .brand-icon { width: 34px; height: 34px; }
}

/* ========================================
   TOUCH DEVICE OPTIMIZATIONS
   ======================================== */
@media (hover: none) and (pointer: coarse) {
    .portfolio-overlay { opacity: 1 !important; background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 50%); }
    .portfolio-item:hover img { transform: none; }
    .service-card:hover { transform: none; }
    .why-card:hover { transform: none; }
    .testimonial-card:hover { transform: none; }
    .stat-item:hover { transform: none; }
    .about-img-wrapper:hover .about-img { transform: none; }
    .about-img-wrapper:hover .about-img-frame { transform: translate(20px, 20px); }

    .lightbox-content img.zoomed { transform: scale(1.3); }

    .whatsapp-float { animation: none; }
}

/* Smooth scrolling for iOS */
@supports (-webkit-touch-callout: none) {
    body { -webkit-overflow-scrolling: touch; }
}

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

/* ========================================
   FOOTER - 3 COLUMNS GRID
   ======================================== */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-col-brand {
    max-width: 100%;
}

.footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-col-social {
    text-align: right;
}

.footer-col-social .footer-social {
    justify-content: flex-start;
}

/* ========================================
   SECTIONS - SMALLER PADDING
   ======================================== */
#services.section-padding,
#portfolio.section-padding,
#why-us.section-padding {
    padding: 70px 0;
}

/* ========================================
   TESTIMONIALS SLIDER
   ======================================== */
.testimonials-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.testimonials-slider {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 16px;
}

.testimonial-slide {
    /* min-width: calc(33.333% - 16px); */
    width: 40%;
    flex-shrink: 0;
    text-align: center;
}

.testimonial-slide .testimonial-card {
    height: 100%;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.slider-prev { right: 0; }
.slider-next { left: 0; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 5px;
}

/* ========================================
   FAQ IMAGE
   ======================================== */
.faq-image-wrapper {
    position: relative;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

.faq-image {
    width: 100%;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    max-height: 500px;
}

.faq-image-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    transform: translate(15px, 15px);
    z-index: 1;
    opacity: 0.5;
}

/* ========================================
   RESPONSIVE - FOOTER TABLET
   ======================================== */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
    }

    .testimonial-slide {
        min-width: calc(50% - 12px);
    }

    .faq-image-wrapper {
        display: none;
    }
}

/* ========================================
   RESPONSIVE - FOOTER MOBILE
   ======================================== */
@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-links-wrapper {
        grid-template-columns: 1fr 1fr;
        text-align: right;
    }

    .footer-col-social {
        text-align: center;
    }

    .footer-col-social .footer-social {
        justify-content: center;
    }

    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .testimonials-slider-wrapper {
        padding: 0 40px;
    }

    .testimonial-slide {
        min-width: 100%;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    #services.section-padding,
    #portfolio.section-padding,
    #why-us.section-padding {
        padding: 50px 0;
    }
}

@media (max-width: 575px) {
    .footer-links-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }
}