/* ============================================
   35 FRAMES PHOTOGRAPHY - ULTRA PREMIUM EDITION
   DARK LUXURY THEME - Worth ₹1,00,000+
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=Crimson+Text:wght@400;600;700&display=swap');

:root {
    /* Premium Brand Colors */
    --color-primary: #FF6B35;
    --color-primary-dark: #E85A2A;
    --color-primary-light: #FF8F66;
    --color-accent: #FFB84D;
    --color-dark: #0A0A0A;
    --color-darker: #000000;
    --color-light: #1A1A1A;
    --color-white: #FFFFFF;
    --color-gray: #999999;
    --color-gray-light: #2A2A2A;
    --color-overlay: rgba(26, 26, 46, 0.88);
    
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FFB84D 100%);
    --gradient-dark: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(255, 107, 53, 0.95) 0%, rgba(255, 184, 77, 0.95) 100%);
    --gradient-shine: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    
    /* Premium Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Crimson Text', serif;
    
    /* Spacing */
    --section-padding: 160px;
    --container-width: 1440px;
    
    /* Premium Effects */
    --transition-smooth: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-elastic: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* 3D Shadows */
    --shadow-3d: 0 30px 60px rgba(0, 0, 0, 0.3), 
                 0 15px 30px rgba(0, 0, 0, 0.2),
                 0 5px 15px rgba(0, 0, 0, 0.15);
    --shadow-3d-hover: 0 50px 100px rgba(0, 0, 0, 0.4), 
                       0 25px 50px rgba(0, 0, 0, 0.3),
                       0 10px 25px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.6),
                   0 0 80px rgba(255, 107, 53, 0.4),
                   0 0 120px rgba(255, 107, 53, 0.2);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-white);
    background: #0A0A0A;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 184, 77, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    animation: bgPulse 10s ease-in-out infinite;
}

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

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

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 60px;
}

/* Section Headers - Ultra Premium */
.section-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.section-subtitle::before {
    right: calc(100% + 20px);
}

.section-subtitle::after {
    left: calc(100% + 20px);
}

.section-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 30px;
    letter-spacing: -2px;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.section-description {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Premium Buttons with 3D Effect */
.btn {
    display: inline-block;
    padding: 22px 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 60px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shine);
    transition: left 0.8s;
    z-index: -1;
}

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

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60px;
    padding: 3px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-3d);
    transform: translateY(0) translateZ(0);
}

.btn-primary:hover {
    transform: translateY(-5px) translateZ(20px);
    box-shadow: var(--shadow-3d-hover), var(--shadow-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 3px solid var(--color-white);
    box-shadow: var(--shadow-3d);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-5px) translateZ(20px);
    box-shadow: var(--shadow-3d-hover);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes glow {
    0%, 100% { box-shadow: var(--shadow-3d); }
    50% { box-shadow: var(--shadow-glow); }
}

/* ============================================
   NAVIGATION - GLASS MORPHISM
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.4));
    z-index: -1;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.navbar.scrolled::before {
    background: none;
}

.navbar.scrolled .nav-link {
    color: var(--color-white);
}

.navbar.scrolled .nav-logo img {
    filter: brightness(0) invert(1);
}

.navbar.scrolled .nav-toggle span {
    background-color: var(--color-white);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
}

.nav-logo:hover img {
    transform: scale(1.05) rotateY(5deg);
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
}

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

.nav-link {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-white);
    position: relative;
    transition: var(--transition-smooth);
    padding: 8px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.nav-link-cta {
    padding: 16px 38px;
    background: var(--gradient-primary);
    color: var(--color-white) !important;
    border-radius: 50px;
    box-shadow: var(--shadow-3d);
}

.nav-link-cta::before {
    display: none;
}

.nav-link-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-3d-hover), var(--shadow-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 32px;
    height: 3px;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
    border-radius: 10px;
}

/* ============================================
   HERO SECTION - CINEMATIC 3D
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6) contrast(1.1);
    animation: kenBurns 25s ease infinite;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(10, 10, 10, 0.85) 0%, 
        rgba(255, 107, 53, 0.2) 40%,
        rgba(255, 184, 77, 0.15) 60%,
        rgba(10, 10, 10, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-white);
    max-width: 1100px;
    padding: 0 60px;
    perspective: 1000px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 35px;
    display: block;
    text-shadow: 0 4px 20px rgba(255, 107, 53, 0.6);
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.5));
}

.hero-title {
    font-family: var(--font-display);
    font-size: 110px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -3px;
    text-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.7),
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 107, 53, 0.4);
    transform-style: preserve-3d;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.hero-description {
    font-size: 21px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 60px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1.2s ease-out 0.5s both;
}

.hero-cta {
    display: flex;
    gap: 35px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out 0.7s both;
}

.hero-controls {
    position: absolute;
    bottom: 70px;
    right: 70px;
    z-index: 20;
    display: flex;
    gap: 25px;
}

.hero-arrow {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-3d);
    transform-style: preserve-3d;
}

.hero-arrow:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: scale(1.15) translateZ(10px);
    box-shadow: var(--shadow-3d-hover), var(--shadow-glow);
}

.scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

.scroll-line {
    width: 3px;
    height: 70px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    border-radius: 10px;
    position: relative;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 20px;
    background: var(--color-primary);
    border-radius: 10px;
    animation: scrollDot 2.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
}

@keyframes scrollDot {
    0% { top: 0; opacity: 1; }
    100% { top: calc(100% - 20px); opacity: 0; }
}

/* ============================================
   PORTFOLIO - 3D CARDS WITH PARALLAX
   ============================================ */

.portfolio {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, 
        #0F0F0F 0%, 
        #1A1A1A 50%,
        #0F0F0F 100%
    );
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.portfolio::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 184, 77, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 80px;
}

.filter-btn {
    padding: 17px 40px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-gray);
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: var(--transition-elastic);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-3d);
    background: rgba(255, 107, 53, 0.1);
}

.filter-btn.active {
    color: var(--color-white);
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-3d-hover), var(--shadow-glow);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    perspective: 1000px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: var(--transition-smooth);
    opacity: 1;
    transform: scale(1) translateZ(0);
    box-shadow: var(--shadow-3d);
    transform-style: preserve-3d;
}

.portfolio-item:hover {
    transform: translateY(-20px) scale(1.02) rotateX(2deg);
    box-shadow: var(--shadow-3d-hover);
}

.portfolio-item.hide {
    opacity: 0;
    transform: scale(0.8) translateZ(-100px);
    height: 0;
    margin: 0;
    padding: 0;
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.1) 0%, 
        transparent 50%,
        rgba(255, 184, 77, 0.1) 100%
    );
    z-index: 1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-image::before {
    opacity: 1;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.95) contrast(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
}

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

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.2) rotate(2deg);
}

.portfolio-content {
    text-align: center;
    color: var(--color-white);
    transform: translateY(50px) translateZ(40px);
    transition: var(--transition-smooth);
    perspective: 1000px;
}

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

.portfolio-category {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.portfolio-title {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 35px;
    letter-spacing: -1px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

.portfolio-view {
    padding: 18px 45px;
    background-color: var(--color-white);
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-3d);
    transform-style: preserve-3d;
}

.portfolio-view:hover {
    background-color: var(--color-darker);
    color: var(--color-white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-3d-hover);
}

/* ============================================
   GALLERY - MASONRY WITH 3D DEPTH
   ============================================ */

.gallery {
    padding: var(--section-padding) 0;
    background: #0A0A0A;
    position: relative;
}

.gallery::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-auto-rows: 350px;
    gap: 30px;
    perspective: 1500px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-3d);
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02) rotateZ(1deg);
    box-shadow: var(--shadow-3d-hover);
    z-index: 10;
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.95) contrast(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

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

.gallery-item:hover img {
    transform: scale(1.25) rotate(3deg);
}

.gallery-expand {
    width: 80px;
    height: 80px;
    background-color: var(--color-white);
    color: var(--color-primary);
    font-size: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-elastic);
    transform: scale(0) rotateZ(180deg);
    font-weight: 300;
    box-shadow: var(--shadow-3d);
}

.gallery-item:hover .gallery-expand {
    transform: scale(1) rotateZ(0deg);
}

.gallery-expand:hover {
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: scale(1.2) rotate(90deg);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   ABOUT - LUXURY STORYTELLING
   ============================================ */

.about {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, 
        #1A1A1A 0%, 
        #0F0F0F 100%
    );
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
}

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

.about-image {
    position: relative;
    perspective: 1000px;
}

.about-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-3d-hover);
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
}

.about-image:hover img {
    transform: rotateY(5deg) rotateX(2deg) translateZ(20px);
}

.about-image-decoration {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--color-primary);
    border-radius: 20px;
    z-index: -1;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.about-text {
    padding-left: 30px;
}

.about-text .section-subtitle::before,
.about-text .section-subtitle::after {
    display: none;
}

.about-text .section-title,
.about-text .section-subtitle {
    text-align: left;
}

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

.about-description {
    font-size: 18px;
    line-height: 2.1;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-weight: 400;
}

.about-achievements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin: 70px 0;
    padding: 70px 0;
    border-top: 3px solid rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid rgba(255, 255, 255, 0.1);
}

.achievement-item {
    text-align: center;
    transition: var(--transition-smooth);
    padding: 20px;
    border-radius: 15px;
    transform-style: preserve-3d;
}

.achievement-item:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 184, 77, 0.1));
    transform: translateY(-10px) scale(1.05);
}

.achievement-number {
    font-family: var(--font-display);
    font-size: 68px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 15px rgba(255, 107, 53, 0.3));
}

.achievement-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.about-trusted {
    margin: 50px 0;
}

.trusted-text {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 20px;
}

.trusted-flags {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.trusted-flags span {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    padding: 12px 25px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 184, 77, 0.15));
    border-radius: 50px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.trusted-flags span:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-3d);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 184, 77, 0.2));
}

/* ============================================
   FAQS - PREMIUM ACCORDION
   ============================================ */

.faqs {
    padding: var(--section-padding) 0;
    background: #0A0A0A;
}

.faqs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(15, 15, 15, 0.9));
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-3d);
    transition: var(--transition-smooth);
    border: 3px solid rgba(255, 107, 53, 0.2);
    transform-style: preserve-3d;
    backdrop-filter: blur(20px);
}

.faq-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-3d-hover);
}

.faq-item.active {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 184, 77, 0.1));
    border-color: var(--color-primary);
    box-shadow: var(--shadow-3d-hover), 0 0 40px rgba(255, 107, 53, 0.2);
}

.faq-question {
    width: 100%;
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 19px;
    font-weight: 700;
    color: var(--color-white);
    background-color: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--color-primary);
    filter: drop-shadow(0 2px 5px rgba(255, 107, 53, 0.4));
}

.faq-item.active .faq-icon {
    transform: rotate(180deg) scale(1.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 700px;
}

.faq-answer p {
    padding: 0 40px 35px;
    font-size: 17px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* ============================================
   CONTACT - LUXURY FORM
   ============================================ */

.contact {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, 
        #0F0F0F 0%, 
        #1A1A1A 50%,
        #0F0F0F 100%
    );
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 120px;
}

.contact-info {
    padding-right: 50px;
}

.contact-info .section-subtitle::before,
.contact-info .section-subtitle::after {
    display: none;
}

.contact-info .section-title,
.contact-info .section-subtitle {
    text-align: left;
}

.contact-info .section-title::after {
    left: 0;
    transform: translateX(0);
}

.contact-description {
    font-size: 18px;
    line-height: 2.1;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
}

.contact-details {
    margin-bottom: 60px;
}

.contact-detail-item {
    display: flex;
    gap: 30px;
    margin-bottom: 45px;
    transition: var(--transition-smooth);
    padding: 15px;
    border-radius: 15px;
}

.contact-detail-item:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 184, 77, 0.08));
    transform: translateX(10px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
    box-shadow: var(--shadow-3d);
    transition: var(--transition-smooth);
}

.contact-detail-item:hover .contact-icon {
    transform: scale(1.1) rotateZ(5deg);
    box-shadow: var(--shadow-glow);
}

.contact-detail-text h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.contact-detail-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.contact-social h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

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

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-smooth);
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-3d);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: translateY(-8px) scale(1.1);
    box-shadow: var(--shadow-3d-hover), var(--shadow-glow);
    border-color: transparent;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(15, 15, 15, 0.95));
    padding: 60px;
    border-radius: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    box-shadow: var(--shadow-3d-hover);
    border: 3px solid rgba(255, 107, 53, 0.3);
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
}

.contact-form:hover {
    border-color: var(--color-primary);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 20px 25px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

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

.btn-submit {
    width: 100%;
    position: relative;
}

.btn-loading {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

.btn-submit.loading .btn-loading {
    display: block;
}

.spinner {
    animation: spin 1s linear infinite;
}

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

.form-success {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(15, 15, 15, 0.98));
    padding: 80px;
    border-radius: 25px;
    box-shadow: var(--shadow-3d-hover);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    border: 3px solid var(--color-primary);
    backdrop-filter: blur(30px);
}

.form-success.show {
    opacity: 1;
    pointer-events: auto;
}

.form-success svg {
    margin: 0 auto 35px;
    animation: glow 2s ease-in-out infinite;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.form-success p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.8;
}

/* ============================================
   FOOTER - PREMIUM DARK
   ============================================ */

.footer {
    background: var(--gradient-dark);
    color: var(--color-white);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 120px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 35px;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
}

.footer-logo:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
    transform: scale(1.05);
}

.footer-tagline {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social-link {
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-smooth);
    border: 3px solid transparent;
    box-shadow: var(--shadow-3d);
}

.footer-social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-8px) scale(1.1);
    box-shadow: var(--shadow-3d-hover), var(--shadow-glow);
    border-color: var(--color-primary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
}

.footer-heading {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--color-white);
    position: relative;
    padding-bottom: 15px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.footer-menu li,
.footer-contact li {
    margin-bottom: 20px;
}

.footer-menu a,
.footer-contact li {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition-smooth);
}

.footer-menu a:hover {
    color: var(--color-primary);
    padding-left: 10px;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
}

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

/* ============================================
   LIGHTBOX - CINEMATIC
   ============================================ */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-smooth);
    z-index: 10;
    box-shadow: var(--shadow-3d-hover), var(--shadow-glow);
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.15);
    box-shadow: var(--shadow-3d-hover), 0 0 60px rgba(255, 107, 53, 0.8);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-smooth);
    z-index: 10;
    box-shadow: var(--shadow-3d);
}

.lightbox-arrow:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-50%) scale(1.15);
    box-shadow: var(--shadow-3d-hover), var(--shadow-glow);
}

.lightbox-prev {
    left: 50px;
}

.lightbox-next {
    right: 50px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    padding: 0 140px;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: var(--shadow-3d-hover);
    border-radius: 15px;
}

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: var(--shadow-3d-hover), var(--shadow-glow);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    animation: float 3s ease-in-out infinite;
}

.back-to-top:hover {
    transform: translateY(-10px) scale(1.15) rotateZ(45deg);
    box-shadow: var(--shadow-3d-hover), 0 0 60px rgba(255, 107, 53, 0.8);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    :root {
        --section-padding: 120px;
    }
    
    .section-title {
        font-size: 60px;
    }
    
    .hero-title {
        font-size: 85px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 40px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 100px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 350px;
        height: 100vh;
        background: linear-gradient(135deg, #0F0F0F, #1A1A1A);
        flex-direction: column;
        align-items: flex-start;
        padding: 140px 60px;
        gap: 19px;
        transition: right 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: var(--shadow-3d-hover);
        z-index: 1000;
        backdrop-filter: blur(30px);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--color-white) !important;
        font-size: 18px;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .hero-title {
        font-size: 68px;
    }
    
    .section-title {
        font-size: 50px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 70px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 70px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .hero {
        min-height: 750px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 40px;
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-wide,
    .gallery-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .btn {
        padding: 18px 38px;
        font-size: 12px;
    }
    
    .hero-controls {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

/* ============================================
   NAVIGATION - ULTRA PREMIUM GLASSMORPHISM
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom, 
        rgba(10, 10, 10, 0.8) 0%, 
        rgba(10, 10, 10, 0.4) 100%
    );
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled::before {
    opacity: 1;
}

.navbar.scrolled {
    padding: 18px 0;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 107, 53, 0.3));
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
}

.nav-logo:hover img {
    transform: scale(1.08) rotateY(5deg);
    filter: brightness(0) invert(1) drop-shadow(0 0 25px rgba(255, 107, 53, 0.6));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 19px;
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 35px;
    border-radius: 100px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    transition: var(--transition-smooth);
    padding: 10px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
    color: var(--color-primary);
    text-shadow: 0 0 25px rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

.nav-link-cta {
    padding: 16px 38px;
    background: var(--gradient-primary);
    color: var(--color-white) !important;
    border-radius: 50px;
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.nav-link-cta::before {
    display: none;
}

.nav-link-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.nav-link-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(255, 107, 53, 0.6),
        0 0 60px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.nav-link-cta:hover::after {
    opacity: 1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    z-index: 1001;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.nav-toggle:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
    transform: scale(1.05);
}

.nav-toggle span {
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: var(--transition-smooth);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

.nav-toggle:hover span {
    box-shadow: 0 2px 12px rgba(255, 107, 53, 0.6);
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 380px;
        height: 100vh;
        background: linear-gradient(
            135deg, 
            rgba(10, 10, 10, 0.98) 0%, 
            rgba(26, 26, 26, 0.95) 100%
        );
        flex-direction: column;
        align-items: flex-start;
        padding: 140px 50px 60px;
        gap: 35px;
        transition: right 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 
            -10px 0 80px rgba(0, 0, 0, 0.8),
            inset 1px 0 0 rgba(255, 107, 53, 0.2);
        z-index: 1000;
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        border-left: 2px solid rgba(255, 107, 53, 0.3);
        border-radius: 0;
        overflow-y: auto;
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.15) 0%, transparent 60%),
            radial-gradient(circle at 50% 100%, rgba(255, 184, 77, 0.1) 0%, transparent 60%);
        pointer-events: none;
        z-index: -1;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 18px;
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-link::before {
        left: 0;
        transform: translateX(0) scaleX(0);
        bottom: 0;
        height: 2px;
    }
    
    .nav-link:hover::before,
    .nav-link.active::before {
        transform: translateX(0) scaleX(1);
    }
    
    .nav-link:hover {
        padding-left: 15px;
    }
    
    .nav-link-cta {
        width: 100%;
        text-align: center;
        margin-top: 20px;
        padding: 20px 38px;
    }
    
    .nav-toggle {
        display: flex;
    }
}

/* Overlay for Mobile Menu */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .nav-menu {
        width: 320px;
        padding: 120px 40px 50px;
    }
    
    .nav-container {
        padding: 0 30px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        padding: 100px 30px 40px;
    }
    
    .nav-logo img {
        height: 55px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE PERFECT
   ============================================ */

@media (max-width: 1400px) {
    .container {
        padding: 0 50px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    :root {
        --section-padding: 120px;
    }
    
    .section-title {
        font-size: 60px;
    }
    
    .hero-title {
        font-size: 85px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 40px;
    }
    
    .about-content {
        gap: 100px;
    }
    
    .contact-wrapper {
        gap: 80px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 100px;
    }
    
    .container {
        padding: 0 35px;
    }
    
    /* Navigation Mobile */
    .nav-container {
        padding: 0 35px;
    }
    
    .nav-logo img {
        height: 60px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: linear-gradient(
            135deg, 
            rgba(10, 10, 10, 0.98) 0%, 
            rgba(26, 26, 26, 0.95) 100%
        );
        flex-direction: column;
        align-items: flex-start;
        padding: 120px 40px 60px;
        gap: 44px;
        transition: right 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 
            -10px 0 80px rgba(0, 0, 0, 0.8),
            inset 1px 0 0 rgba(255, 107, 53, 0.2);
        z-index: 1000;
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        border-left: 2px solid rgba(255, 107, 53, 0.3);
        border-radius: 0;
        overflow-y: auto;
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.15) 0%, transparent 60%),
            radial-gradient(circle at 50% 100%, rgba(255, 184, 77, 0.1) 0%, transparent 60%);
        pointer-events: none;
        z-index: -1;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 16px;
        padding: 18px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: left;
    }
    
    .nav-link::before {
        left: 0;
        transform: translateX(0) scaleX(0);
        bottom: 0;
        height: 2px;
        width: 60px;
    }
    
    .nav-link:hover::before,
    .nav-link.active::before {
        transform: translateX(0) scaleX(1);
    }
    
    .nav-link:hover {
        padding-left: 15px;
        transform: translateY(0);
    }
    
    .nav-link-cta {
        width: 100%;
        text-align: center;
        margin-top: 30px;
        padding: 18px 38px;
        border-bottom: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 700px;
        height: 100vh;
    }
    
    .hero-title {
        font-size: 68px;
        letter-spacing: -2px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-controls {
        bottom: 50px;
        right: 30px;
        gap: 15px;
    }
    
    .hero-arrow {
        width: 55px;
        height: 55px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 50px;
    }
    
    .section-description {
        font-size: 17px;
    }
    
    /* Portfolio Mobile */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .portfolio-image {
        height: 500px;
    }
    
    .filter-btn {
        padding: 14px 28px;
        font-size: 12px;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
        gap: 20px;
    }
    
    /* About Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-text {
        padding-left: 0;
    }
    
    .about-image img {
        height: 500px;
    }
    
    .about-image-decoration {
        top: -25px;
        right: -25px;
    }
    
    .about-achievements {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        padding: 50px 0;
        margin: 50px 0;
    }
    
    .achievement-number {
        font-size: 56px;
    }
    
    /* Contact Mobile */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .contact-form {
        padding: 45px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 25px;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 25px;
    }
    
    .nav-logo img {
        height: 55px;
    }
    
    .nav-menu {
        width: 90%;
        max-width: 320px;
        padding: 100px 30px 50px;
    }
    
    .nav-link {
        font-size: 15px;
        padding: 16px 0;
    }
    
    /* Hero */
    .hero {
        min-height: 650px;
    }
    
    .hero-content {
        padding: 0 25px;
    }
    
    .hero-subtitle {
        font-size: 13px;
        letter-spacing: 4px;
        margin-bottom: 25px;
    }
    
    .hero-title {
        font-size: 48px;
        margin-bottom: 30px;
        letter-spacing: -1px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 45px;
        line-height: 1.7;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-controls {
        bottom: 30px;
        right: 25px;
        gap: 12px;
    }
    
    .hero-arrow {
        width: 50px;
        height: 50px;
    }
    
    .scroll-indicator {
        bottom: 30px;
        font-size: 10px;
    }
    
    .scroll-line {
        height: 50px;
    }
    
    /* Sections */
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-subtitle {
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }
    
    .section-subtitle::before,
    .section-subtitle::after {
        width: 30px;
    }
    
    .section-title {
        font-size: 40px;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }
    
    .section-title::after {
        width: 60px;
        height: 4px;
        bottom: -10px;
    }
    
    .section-description {
        font-size: 16px;
        line-height: 1.8;
    }
    
    /* Buttons */
    .btn {
        padding: 18px 40px;
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    /* Portfolio */
    .portfolio-filters {
        gap: 12px;
        margin-bottom: 50px;
    }
    
    .filter-btn {
        padding: 12px 22px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    .portfolio-grid {
        gap: 30px;
    }
    
    .portfolio-image {
        height: 450px;
    }
    
    .portfolio-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .portfolio-category {
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }
    
    .portfolio-view {
        padding: 15px 35px;
        font-size: 11px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
        gap: 20px;
    }
    
    .gallery-tall,
    .gallery-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-expand {
        width: 65px;
        height: 65px;
        font-size: 36px;
    }
    
    /* About */
    .about-content {
        gap: 50px;
    }
    
    .about-image img {
        height: 450px;
    }
    
    .about-image-decoration {
        top: -20px;
        right: -20px;
        border-width: 4px;
    }
    
    .about-description {
        font-size: 16px;
        line-height: 1.9;
        margin-bottom: 25px;
    }
    
    .about-achievements {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0;
        margin: 40px 0;
    }
    
    .achievement-number {
        font-size: 48px;
    }
    
    .achievement-label {
        font-size: 12px;
    }
    
    .trusted-text {
        font-size: 12px;
    }
    
    .trusted-flags {
        gap: 20px;
    }
    
    .trusted-flags span {
        font-size: 15px;
        padding: 10px 20px;
    }
    
    /* FAQs */
    .faq-item {
        margin-bottom: 20px;
    }
    
    .faq-question {
        padding: 25px 30px;
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 30px 25px;
        font-size: 15px;
    }
    
    /* Contact */
    .contact-wrapper {
        gap: 50px;
    }
    
    .contact-description {
        font-size: 16px;
        margin-bottom: 45px;
    }
    
    .contact-detail-item {
        gap: 20px;
        margin-bottom: 35px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-detail-text h4 {
        font-size: 15px;
    }
    
    .contact-detail-text p {
        font-size: 14px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
    }
    
    .contact-form {
        padding: 35px;
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .form-group label {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .form-group textarea {
        min-height: 150px;
    }
    
    .form-success {
        padding: 50px 30px;
    }
    
    .form-success h3 {
        font-size: 32px;
    }
    
    .form-success p {
        font-size: 15px;
    }
    
    /* Footer */
    .footer {
        padding: 70px 0 30px;
    }
    
    .footer-content {
        margin-bottom: 50px;
        padding-bottom: 50px;
    }
    
    .footer-logo {
        height: 55px;
        margin-bottom: 25px;
    }
    
    .footer-tagline {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .footer-social-link {
        width: 48px;
        height: 48px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-heading {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .footer-menu li,
    .footer-contact li {
        margin-bottom: 15px;
    }
    
    .footer-menu a,
    .footer-contact li {
        font-size: 14px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        font-size: 13px;
    }
    
    .footer-bottom-links {
        gap: 20px;
    }
    
    /* Lightbox */
    .lightbox-content {
        padding: 0 60px;
    }
    
    .lightbox-close {
        top: 30px;
        right: 30px;
        width: 55px;
        height: 55px;
    }
    
    .lightbox-arrow {
        width: 60px;
        height: 60px;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
    
    /* Back to Top */
    .back-to-top {
        bottom: 30px;
        right: 30px;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Navigation */
    .navbar {
        padding: 18px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-logo img {
        height: 50px;
    }
    
    .nav-menu {
        width: 100%;
        padding: 90px 25px 40px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 14px 0;
    }
    
    .nav-link-cta {
        padding: 16px 30px;
        margin-top: 20px;
    }
    
    /* Hero */
    .hero {
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 35px;
    }
    
    .hero-cta .btn {
        padding: 16px 35px;
        font-size: 11px;
    }
    
    .hero-controls {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Sections */
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-subtitle {
        font-size: 10px;
        letter-spacing: 2.5px;
    }
    
    .section-subtitle::before,
    .section-subtitle::after {
        width: 20px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 18px;
    }
    
    .section-title::after {
        width: 50px;
        height: 3px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    /* Buttons */
    .btn {
        padding: 16px 32px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    /* Portfolio */
    .portfolio-filters {
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 10px;
    }
    
    .portfolio-image {
        height: 400px;
    }
    
    .portfolio-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .portfolio-category {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .portfolio-view {
        padding: 14px 30px;
        font-size: 10px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-auto-rows: 250px;
        gap: 15px;
    }
    
    .gallery-expand {
        width: 55px;
        height: 55px;
        font-size: 32px;
    }
    
    /* About */
    .about-image img {
        height: 400px;
    }
    
    .about-image-decoration {
        top: -15px;
        right: -15px;
        border-width: 3px;
    }
    
    .about-description {
        font-size: 14px;
    }
    
    .achievement-number {
        font-size: 40px;
    }
    
    .achievement-label {
        font-size: 11px;
    }
    
    .trusted-flags span {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    /* FAQs */
    .faq-question {
        padding: 20px 25px;
        font-size: 14px;
    }
    
    .faq-answer p {
        padding: 0 25px 20px;
        font-size: 13px;
    }
    
    /* Contact */
    .contact-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .contact-icon {
        width: 55px;
        height: 55px;
    }
    
    .contact-detail-text h4 {
        font-size: 14px;
    }
    
    .contact-detail-text p {
        font-size: 13px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .contact-form {
        padding: 25px;
        gap: 20px;
    }
    
    .form-group label {
        font-size: 11px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 18px;
        font-size: 13px;
    }
    
    .form-success {
        padding: 40px 25px;
    }
    
    .form-success h3 {
        font-size: 28px;
    }
    
    .form-success p {
        font-size: 14px;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .footer-tagline {
        font-size: 14px;
    }
    
    .footer-social-link {
        width: 45px;
        height: 45px;
    }
    
    .footer-heading {
        font-size: 14px;
    }
    
    .footer-menu a,
    .footer-contact li {
        font-size: 13px;
    }
    
    .footer-bottom {
        font-size: 12px;
    }
    
    /* Lightbox */
    .lightbox-content {
        padding: 0 20px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .lightbox-arrow {
        width: 50px;
        height: 50px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    /* Back to Top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .portfolio-image {
        height: 350px;
    }
    
    .about-image img {
        height: 350px;
    }
    
    .gallery-grid {
        grid-auto-rows: 220px;
    }
}

/* Landscape Mobile Fix */
@media (max-width: 992px) and (orientation: landscape) {
    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 15px;
    }
}


