/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #111111;
    --text-primary: #ffffff;
    --text-secondary: #e5e5e5;
    --text-muted: #999999;
    --accent: #ffffff;
    --accent-hover: #ffffff;
    --accent-glow: rgba(255, 255, 255, 0.4);
    --border: #1a1a1a;
    --border-light: rgba(255, 255, 255, 0.2);
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-fast: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-slow: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    --shadow-luxury: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 255, 255, 0.15);
    --shadow-glow: 0 0 40px rgba(255, 255, 255, 0.3);
    --milan-gold: #ffffff;
    --milan-black: #000000;
    --milan-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Unbold all headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

/* Base Mobile Optimizations */
* {
    -webkit-tap-highlight-color: transparent;
}

img, video {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
    width: 100%;
}

/* Touch-friendly interactive elements */
@media (max-width: 768px) {
    a, button, .btn {
        min-height: 44px;
        min-width: 44px;
    }

    .nav-menu a {
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo-link {
    display: inline-block;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: var(--transition);
    opacity: 0.85;
    position: relative;
    color: var(--text-primary);
    display: inline-block;
}

.logo-img {
    height: 90px;
    width: auto;
    display: block;
    transition: var(--transition);
    opacity: 0.9;
}

.logo-img:hover {
    opacity: 1;
}

.logo-link::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, var(--accent), transparent);
    transition: var(--transition);
    opacity: 0;
}

.logo-link:hover::before {
    height: 30px;
    opacity: 0.6;
}

.logo-link:hover .logo-text {
    letter-spacing: 5px;
    opacity: 1;
    color: #ffffff;
    transform: translateX(2px);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(to right, var(--accent), transparent);
    transition: var(--transition);
    box-shadow: var(--shadow-glow);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    padding-top: 140px;
    position: relative;
    overflow: visible;
}

.hero-content {
    max-width: 50%;
    margin: 0;
    width: 50%;
    z-index: 2;
    position: relative;
    padding-right: 40px;
    box-sizing: border-box;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(72px, 11vw, 160px);
    font-weight: normal;
    line-height: 0.9;
    margin-bottom: 40px;
    letter-spacing: -3px;
    color: var(--text-primary);
    position: relative;
    text-transform: uppercase;
}

.hero-title .line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title .line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-title .line:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
    max-width: 650px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
}

.btn {
    padding: 16px 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    border: 1px solid transparent;
    display: inline-block;
}

.btn-primary {
    background: #ffffff;
    color: var(--bg-primary);
    border-color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

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

.btn-primary:hover {
    background: #ffffff;
    color: var(--bg-primary);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn-secondary:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.btn-secondary:hover::after {
    width: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.work-img,
.portfolio-img,
.gallery-img,
.instagram-img,
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.work-item:hover .work-img,
.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.portfolio-img {
    filter: grayscale(20%) brightness(0.9);
}

.portfolio-item:hover .portfolio-img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.08);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}

/* Featured Work Section */
.featured-work {
    padding: 120px 0;
    background-color: var(--bg-secondary);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 7vw, 84px);
    font-weight: normal;
    margin-bottom: 80px;
    text-align: center;
    letter-spacing: -2px;
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 40px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.work-item {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
}

.work-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

.work-item:hover {
    transform: translateY(-8px);
    border-color: #ffffff;
    box-shadow: var(--shadow-luxury);
}

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

.work-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.image-placeholder-small {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
    transition: var(--transition);
}

.work-info {
    padding: 30px;
}

.work-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.work-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Video Section */
.video-section {
    padding: 120px 0;
    background-color: var(--bg-primary);
    position: relative;
}

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

.video-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}

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

.video-wrapper {
    position: relative;
    border: 2px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--bg-tertiary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition-slow);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--poster-image);
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

.video-wrapper:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.trend-video {
    width: 100%;
    height: auto;
    display: block;
    background-color: #000;
}

.trend-video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.8);
}

.trend-video::-webkit-media-controls-play-button,
.trend-video::-webkit-media-controls-volume-slider,
.trend-video::-webkit-media-controls-timeline {
    filter: brightness(0) invert(1);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 5;
    cursor: pointer;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: auto;
}

.video-play-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-play-btn {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.98);
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    color: #000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
}

.video-play-btn:hover {
    background-color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.4);
}

.video-play-btn:active {
    transform: scale(0.95);
}

.video-play-btn svg {
    width: 50px;
    height: 50px;
    margin-left: 5px;
}

.video-wrapper.playing .video-play-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.video-control-btn {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.video-control-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.video-control-btn:active {
    transform: scale(0.95);
}

.video-control-btn svg {
    transition: var(--transition);
}

.video-control-btn:hover svg {
    color: #ffffff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

#muteLine {
    transition: opacity 0.3s ease;
}

.video-control-btn.muted #muteLine {
    opacity: 1;
}

/* Instagram Section */
.instagram-section {
    padding: 120px 0;
    background-color: var(--bg-secondary);
    position: relative;
}

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

.instagram-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 15px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-weight: 300;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    padding: 12px 24px;
    border: 1px solid var(--border);
    background-color: transparent;
}

.instagram-link svg {
    transition: var(--transition);
}

.instagram-link:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-2px);
}

.instagram-link:hover svg {
    transform: translate(3px, -3px);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-post {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    background-color: transparent;
    transition: var(--transition);
}

.instagram-post a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}

.instagram-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
    pointer-events: none;
}

.instagram-post:hover::before {
    opacity: 1;
}

.instagram-post:hover {
    border-color: #ffffff;
    box-shadow: var(--shadow-luxury);
    transform: translateY(-5px);
}

.instagram-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-placeholder-instagram {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
    transition: var(--transition);
}

.instagram-post:hover .image-placeholder-instagram {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.9) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-stats {
    display: flex;
    gap: 30px;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

.stat-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.stat-item span {
    font-weight: 400;
}

/* Behind The Scenes Section */
.bts-section {
    padding: 120px 0;
    padding-top: 160px;
    background-color: var(--bg-primary);
    position: relative;
}

.bts-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

.bts-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}

.bts-carousel-container {
    max-width: 1600px;
    margin: 0 auto;
}

/* Main Display Area */
.bts-main-display {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    margin-bottom: 40px;
    background-color: #e5e5e5;
}

@media (max-width: 768px) {
    .bts-section {
        padding: 60px 0;
        padding-top: 140px;
    }

    .bts-header {
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .bts-subtitle {
        font-size: 14px;
        margin-top: 12px;
        line-height: 1.6;
    }

    .bts-main-display {
        height: 50vh;
        min-height: 400px;
        max-height: 500px;
        margin-bottom: 30px;
    }

    .bts-carousel-container {
        padding: 0 20px;
    }
}

.bts-main-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.bts-main-slide-group {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    gap: 0;
}

.bts-main-slide {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.bts-main-media {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.bts-main-img,
.bts-main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.bts-main-video {
    background-color: #000;
}

.bts-main-video.playing {
    filter: grayscale(100%);
}

/* Play Overlay */
.bts-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    opacity: 1;
}

.bts-play-overlay svg {
    width: 30px;
    height: 30px;
    color: #000;
    margin-left: 3px;
}

.bts-play-overlay:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.bts-main-media.video-playing .bts-play-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Navigation Arrows */
.bts-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #000;
}

.bts-nav-btn:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.bts-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.bts-nav-prev {
    left: 20px;
}

.bts-nav-next {
    right: 20px;
}

.bts-nav-btn svg {
    width: 24px;
    height: 24px;
}

/* Thumbnail Carousel */
.bts-thumbnails-wrapper {
    position: relative;
    overflow: visible;
    padding: 20px 0;
    width: 100%;
}

.bts-thumbnails-track {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.bts-thumbnail {
    flex: 0 0 auto;
    width: calc((100% - (12px * 10)) / 11);
    max-width: 140px;
    min-width: 90px;
    height: 105px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #e5e5e5;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.6;
}

.bts-thumbnail:hover {
    opacity: 0.9;
    transform: translateY(-5px);
    border-color: rgba(0, 0, 0, 0.3);
}

.bts-thumbnail.active {
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.5);
    transform: translateY(-8px) scale(1.05);
}

.bts-thumbnail-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.bts-thumbnail:hover .bts-thumbnail-media {
    transform: scale(1.1);
}

.bts-thumbnail.active .bts-thumbnail-media {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
}

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

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: -1px;
    line-height: 1.2;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-link {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

.contact-link:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.contact-link span:first-child {
    color: var(--text-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    background-color: rgba(21, 21, 21, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* About Page */
.about-hero,
.portfolio-hero,
.gallery-hero {
    padding: 140px 0 80px;
    padding-top: 160px;
    text-align: center;
}

@media (max-width: 768px) {
    .about-hero,
    .portfolio-hero,
    .gallery-hero {
        padding: 40px 20px 50px;
        padding-top: 140px;
    }
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(64px, 8vw, 110px);
    font-weight: normal;
    margin-bottom: 25px;
    letter-spacing: -3px;
    color: var(--text-primary);
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .page-title {
        font-size: clamp(36px, 10vw, 42px);
        letter-spacing: -1px;
        line-height: 1.2;
    }

    .page-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }
}

.page-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--text-secondary);
}

.about-content {
    padding: 100px 0;
}

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

.about-image {
    width: 100%;
}

.image-placeholder-large {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: -1px;
}

.about-intro {
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    font-weight: 400;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Skills Section */
.skills-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.skill-item {
    padding: 50px 40px;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--accent), transparent);
    transition: var(--transition);
}

.skill-item:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
}

.skill-item:hover::before {
    height: 100%;
}

.skill-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.skill-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

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

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--accent);
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
}

.timeline-year::after {
    display: none;
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 10px;
}

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

/* Portfolio Sections */
.portfolio-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: visible;
}

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

.portfolio-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) brightness(0.4);
    transition: transform 20s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.portfolio-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.portfolio-number {
    font-family: 'Playfair Display', serif;
    font-size: 200px;
    font-weight: 100;
    color: #ffffff;
    line-height: 1;
    opacity: 0.15;
    letter-spacing: -15px;
}

.portfolio-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: normal;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.portfolio-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
    font-weight: 300;
}

.portfolio-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 300;
}

.portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    border: 2px solid #ffffff;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.portfolio-btn:hover {
    color: var(--bg-primary);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.portfolio-btn:hover::before {
    left: 0;
}

.portfolio-btn svg {
    transition: var(--transition);
}

.portfolio-btn:hover svg {
    transform: translate(5px, -5px);
}

/* Section 1: Minimalist Elegant */
.portfolio-section-1 {
    padding: 150px 0;
    background-color: var(--bg-primary);
}

.portfolio-layout-1 {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.portfolio-layout-1 .portfolio-number {
    font-size: 280px;
    margin-bottom: 40px;
    opacity: 0.1;
}

.portfolio-layout-1 .portfolio-title {
    font-size: 84px;
    font-weight: normal;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.portfolio-layout-1 .portfolio-subtitle {
    font-size: 20px;
    letter-spacing: 5px;
    margin-bottom: 40px;
}

.portfolio-layout-1 .portfolio-description {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 17px;
}

/* Section 2: Editorial Magazine */
.portfolio-section-2 {
    padding: 150px 0;
    background-color: var(--bg-secondary);
}

.portfolio-layout-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.8);
    transition: var(--transition-slow);
}

.portfolio-section-2:hover .portfolio-img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.portfolio-accent {
    display: none;
}

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

.portfolio-text-wrapper {
    position: relative;
}

.portfolio-label {
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 500;
}

.portfolio-layout-2 .portfolio-number {
    font-size: 180px;
    margin-bottom: 30px;
    opacity: 0.2;
}

.portfolio-layout-2 .portfolio-title {
    font-size: 64px;
    margin-bottom: 20px;
}

.portfolio-layout-2 .portfolio-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
}

.portfolio-layout-2 .portfolio-description {
    font-size: 16px;
    margin-bottom: 40px;
}

/* Flipped Layout 2 (for right-aligned presentations) */
.portfolio-layout-2-flipped {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.portfolio-layout-2-flipped .portfolio-image-wrapper {
    grid-column: 2;
    grid-row: 1;
}

.portfolio-layout-2-flipped .portfolio-text-wrapper {
    grid-column: 1;
    grid-row: 1;
}

/* Section 3: Luxury Lookbook */
.portfolio-section-3 {
    padding: 150px 0;
    background-color: var(--bg-primary);
}

.portfolio-layout-3 {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 120px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.portfolio-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.portfolio-layout-3 .portfolio-number {
    font-size: 160px;
    opacity: 0.3;
    margin: 0;
}

.portfolio-divider {
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    margin-left: 30px;
}

.portfolio-category {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    margin-left: 30px;
    font-weight: 300;
}

.portfolio-main {
    max-width: 700px;
}

.portfolio-layout-3 .portfolio-title {
    font-size: 68px;
    margin-bottom: 25px;
    font-weight: normal;
}

.portfolio-layout-3 .portfolio-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
}

.portfolio-layout-3 .portfolio-description {
    font-size: 17px;
    line-height: 2;
    margin-bottom: 45px;
}

/* Section 4: Modern Geometric */
.portfolio-section-4 {
    padding: 150px 0;
    background-color: var(--bg-secondary);
    position: relative;
}

.portfolio-geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.geometric-shape-1,
.geometric-shape-2,
.geometric-shape-3 {
    display: none;
}

@keyframes geometricRotate1 {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

@keyframes geometricRotate2 {
    0% { transform: rotate(-30deg); }
    100% { transform: rotate(330deg); }
}

@keyframes geometricFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

.portfolio-layout-4 {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.portfolio-image-container {
    position: relative;
    overflow: hidden;
}

.portfolio-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    opacity: 0.2;
    z-index: -1;
}

.portfolio-layout-4 .portfolio-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.7);
    transition: var(--transition-slow);
}

.portfolio-section-4:hover .portfolio-img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.03);
}

.portfolio-text-container {
    position: relative;
}

.portfolio-layout-4 .portfolio-number {
    font-size: 200px;
    margin-bottom: 30px;
    opacity: 0.15;
}

.portfolio-layout-4 .portfolio-title {
    font-size: 70px;
    margin-bottom: 25px;
    font-weight: normal;
}

.portfolio-layout-4 .portfolio-subtitle {
    font-size: 19px;
    margin-bottom: 35px;
}

.portfolio-layout-4 .portfolio-description {
    font-size: 16px;
    margin-bottom: 45px;
    line-height: 1.9;
}

/* Flipped Layout 4 (for right-aligned presentations) */
.portfolio-layout-4-flipped {
    direction: rtl;
}

.portfolio-layout-4-flipped > * {
    direction: ltr;
}

/* Section 5: Asymmetric Split */
.portfolio-section-5 {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.portfolio-layout-5 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.portfolio-asymmetric-left {
    position: relative;
    z-index: 2;
}

.portfolio-layout-5 .portfolio-number {
    font-size: 180px;
    line-height: 1;
    margin-bottom: 40px;
    opacity: 0.12;
    font-weight: 200;
    position: absolute;
    top: -60px;
    left: -40px;
    z-index: -1;
}

.portfolio-layout-5 .portfolio-title {
    font-size: 65px;
    margin-bottom: 20px;
    font-weight: normal;
    line-height: 1.1;
}

.portfolio-layout-5 .portfolio-subtitle {
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.portfolio-layout-5 .portfolio-description {
    font-size: 16px;
    margin-bottom: 50px;
    line-height: 1.9;
    max-width: 500px;
}

.portfolio-asymmetric-right {
    position: relative;
    margin-top: 80px;
}

.portfolio-asymmetric-right .portfolio-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(25%) brightness(0.75);
    transition: var(--transition-slow);
}

.portfolio-section-5:hover .portfolio-img {
    filter: grayscale(0%) brightness(1);
    transform: translateY(-10px);
}

.portfolio-accent-line {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, var(--accent), transparent);
    opacity: 0.5;
}

/* Section 6: Centered Elegant */
.portfolio-section-6 {
    padding: 150px 0;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.portfolio-layout-6 {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
}

/* Right-aligned Layout 6 */
.portfolio-layout-6-right {
    margin-left: auto;
    margin-right: 0;
    text-align: right;
    max-width: 1000px;
}

.portfolio-layout-6-right .portfolio-centered-content {
    text-align: right;
}

.portfolio-layout-6-right .portfolio-description {
    margin-left: auto;
    margin-right: 0;
}

.portfolio-centered-content {
    position: relative;
}

.portfolio-label-top {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.8;
}

.portfolio-layout-6 .portfolio-number {
    font-size: 250px;
    line-height: 1;
    margin-bottom: 30px;
    opacity: 0.1;
    font-weight: 200;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.portfolio-layout-6 .portfolio-title {
    font-size: 75px;
    margin-bottom: 25px;
    font-weight: normal;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.portfolio-layout-6 .portfolio-subtitle {
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 35px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.portfolio-layout-6 .portfolio-description {
    font-size: 17px;
    margin-bottom: 50px;
    line-height: 2;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Section 7: Split Screen Modern */
.portfolio-section-7 {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.portfolio-layout-7 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

.portfolio-split-left {
    position: relative;
    overflow: hidden;
}

.portfolio-split-left .portfolio-img {
    width: 100%;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.7);
    transition: var(--transition-slow);
}

.portfolio-section-7:hover .portfolio-img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.portfolio-split-right {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-primary);
    position: relative;
}

.portfolio-layout-7 .portfolio-number {
    font-size: 200px;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.08;
    font-weight: 200;
    position: absolute;
    top: 60px;
    right: 80px;
    z-index: 0;
}

.portfolio-category-tag {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

.portfolio-layout-7 .portfolio-title {
    font-size: 70px;
    margin-bottom: 20px;
    font-weight: normal;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.portfolio-layout-7 .portfolio-subtitle {
    font-size: 19px;
    color: var(--accent);
    margin-bottom: 35px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.portfolio-layout-7 .portfolio-description {
    font-size: 16px;
    margin-bottom: 50px;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel-item {
    position: relative;
    height: 80vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.7);
    transition: var(--transition-slow);
}

.carousel-slide.active .carousel-img {
    filter: grayscale(0%) brightness(1);
}

.carousel-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    z-index: 2;
}

.carousel-number {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    font-weight: 200;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.3;
}

.carousel-overlay-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: normal;
    margin-bottom: 15px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.carousel-overlay-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.carousel-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--accent);
}

.carousel-pdf-btn:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.carousel-pdf-btn svg {
    transition: var(--transition);
}

.carousel-pdf-btn:hover svg {
    transform: translate(5px, -5px);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    pointer-events: all;
    z-index: 11;
}

.carousel-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--bg-primary);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    position: relative;
    z-index: 5;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.indicator.active {
    background: var(--accent);
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 0 15px var(--accent-glow);
}

.indicator:hover {
    background: var(--accent);
    transform: scale(1.2);
}

.carousel-counter {
    position: absolute;
    top: 40px;
    right: 40px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-secondary);
    font-weight: 300;
    z-index: 10;
}

/* Layout Content Wrapper */
.layout-content {
    position: relative;
    z-index: 3;
}

/* Layout 1: Minimalist Elegant */
.layout-minimalist .carousel-overlay-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.85) 40%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 80px 60px;
}

.layout-minimalist .layout-content {
    max-width: 700px;
    width: 100%;
}

.layout-minimalist .carousel-number {
    font-size: 180px;
    font-weight: 100;
    opacity: 0.15;
    margin-bottom: 30px;
    letter-spacing: -10px;
}

.layout-minimalist .layout-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: normal;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.layout-minimalist .layout-text p {
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 50px;
    font-weight: 300;
}

.layout-minimalist .carousel-pdf-btn {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 18px 40px;
}

.layout-minimalist .carousel-pdf-btn:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

/* Layout 2: Editorial Magazine */
.layout-editorial .carousel-overlay-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
    padding: 60px 80px;
    display: flex;
    align-items: flex-end;
}

.layout-editorial .layout-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
}

.layout-editorial .layout-header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.layout-editorial .layout-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    font-weight: 500;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.layout-editorial .carousel-number {
    font-size: 140px;
    font-weight: 300;
    opacity: 0.4;
    margin: 0;
    line-height: 1;
}

.layout-editorial .layout-text {
    max-width: 500px;
}

.layout-editorial .layout-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: normal;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.layout-editorial .layout-text p {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 35px;
    opacity: 0.8;
}

.layout-editorial .carousel-pdf-btn {
    background: var(--accent);
    border: none;
    padding: 14px 28px;
}

/* Layout 3: Luxury Lookbook */
.layout-lookbook .carousel-overlay-content {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.layout-lookbook .layout-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.layout-lookbook .layout-split {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    width: 100%;
    padding: 80px;
    align-items: center;
}

.layout-lookbook .layout-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.layout-lookbook .carousel-number {
    font-size: 120px;
    font-weight: 200;
    opacity: 0.5;
    margin: 0;
    line-height: 1;
}

.layout-lookbook .layout-divider {
    width: 2px;
    height: 120px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    margin-left: 20px;
}

.layout-lookbook .layout-right {
    max-width: 600px;
}

.layout-lookbook .layout-right h3 {
    font-size: 52px;
    font-weight: normal;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.3;
}

.layout-lookbook .layout-right p {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.layout-lookbook .carousel-pdf-btn {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 16px 32px;
}

.layout-lookbook .carousel-pdf-btn:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

/* Layout 4: Modern Geometric */
.layout-geometric .carousel-overlay-content {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 100%);
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.layout-geometric .geometric-shape {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border: 2px solid var(--accent);
    border-radius: 50% 0 50% 50%;
    opacity: 0.1;
    transform: rotate(45deg);
    animation: geometricRotate 20s linear infinite;
}

.layout-geometric .geometric-shape::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 1px solid var(--accent);
    border-radius: 0 50% 0 50%;
    opacity: 0.2;
}

@keyframes geometricRotate {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

.layout-geometric .layout-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    text-align: right;
}

.layout-geometric .layout-text {
    margin-bottom: 40px;
}

.layout-geometric .carousel-number {
    font-size: 160px;
    font-weight: 100;
    opacity: 0.2;
    margin-bottom: 20px;
    line-height: 1;
    display: block;
}

.layout-geometric .layout-text h3 {
    font-size: 58px;
    font-weight: normal;
    margin-bottom: 18px;
    letter-spacing: -2px;
    line-height: 1.2;
    text-align: right;
}

.layout-geometric .layout-text p {
    font-size: 17px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 400;
    text-align: right;
}

.layout-geometric .carousel-pdf-btn {
    background: var(--accent);
    border: none;
    padding: 16px 36px;
    margin-top: 30px;
    float: right;
    clear: both;
}

.layout-geometric .carousel-pdf-btn:hover {
    transform: translateY(-3px) translateX(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.carousel-counter #currentSlide {
    color: var(--accent);
}

/* Portfolio Page */
.portfolio-filters {
    padding: 60px 0 40px;
    background-color: var(--bg-secondary);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 14px 35px;
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 300;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition-slow);
}

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

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent);
    color: var(--accent);
    background-color: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.portfolio-grid-section {
    padding: 80px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    background-color: var(--bg-tertiary);
    transition: var(--transition);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    transition: var(--transition);
    z-index: 3;
    pointer-events: none;
}

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

.portfolio-item:hover::after {
    border-color: var(--accent);
    box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.1);
}

.portfolio-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.image-placeholder-portfolio {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
    transition: var(--transition);
}

.portfolio-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-luxury);
}

.portfolio-item:hover .image-placeholder-portfolio {
    transform: scale(1.15);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.98), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

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

.pdf-preview {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.portfolio-item:hover .pdf-preview {
    opacity: 1;
}

.pdf-icon {
    color: var(--accent);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

.pdf-label {
    color: var(--text-primary);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    font-weight: 400;
}

.pdf-link:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.pdf-link svg {
    transition: var(--transition);
}

.pdf-link:hover svg {
    transform: translate(3px, -3px);
}

.portfolio-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.portfolio-overlay p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.portfolio-tag {
    display: inline-block;
    padding: 5px 12px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 10px;
}

/* Gallery Images Section */
.gallery-images-header {
    text-align: center;
    margin-bottom: 100px;
}

.gallery-images-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 20px;
    letter-spacing: 1px;
    font-weight: 300;
}

.gallery-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: start;
}

.gallery-image-item {
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Staggered positioning - zig-zag pattern throughout */
.gallery-image-item:nth-child(odd) {
    margin-top: 0;
}

.gallery-image-item:nth-child(even) {
    margin-top: 100px;
}

.gallery-image-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-image-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-image-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-image-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-image-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-image-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-image-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-image-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-image-item:nth-child(9) { animation-delay: 0.9s; }
.gallery-image-item:nth-child(10) { animation-delay: 1s; }
.gallery-image-item:nth-child(11) { animation-delay: 1.1s; }
.gallery-image-item:nth-child(12) { animation-delay: 1.2s; }
.gallery-image-item:nth-child(13) { animation-delay: 1.3s; }
.gallery-image-item:nth-child(14) { animation-delay: 1.4s; }
.gallery-image-item:nth-child(15) { animation-delay: 1.5s; }
.gallery-image-item:nth-child(16) { animation-delay: 1.6s; }

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3 / 4;
    transition: var(--transition);
}


.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-image-wrapper:hover .gallery-image {
    transform: scale(1.05);
    opacity: 0.9;
}

.gallery-image-description {
    display: none;
}

.gallery-image-description::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 50px;
    height: 1px;
    background: linear-gradient(to right, var(--accent), transparent);
    opacity: 0.5;
}

.gallery-image-description p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 2;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-align: left;
    position: relative;
}

/* Resume Section */
.resume-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.resume-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.resume-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 50px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
}

.resume-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--accent), transparent);
}

.resume-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.resume-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.resume-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 8px;
}

.resume-location {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 5px;
}

.resume-date {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resume-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.resume-skills {
    margin-bottom: 60px;
}

.resume-skills h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--accent);
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
}

.resume-skills h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--accent), transparent);
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.skill-category h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    color: var(--text-secondary);
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.skill-category li:last-child {
    border-bottom: none;
}

.resume-download {
    text-align: center;
}

.resume-skills-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 30px;
    color: var(--accent);
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.resume-skills-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--accent), transparent);
}

.certifications-list {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.certifications-list li {
    color: var(--text-secondary);
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    padding-left: 0 !important;
    position: relative;
    list-style: none !important;
}

.certifications-list li::before {
    display: none !important;
    content: none !important;
}

.certifications-list li:last-child {
    border-bottom: none;
}

/* Gallery Page */
.gallery-section {
    padding: 80px 0;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    background-color: var(--bg-tertiary);
    transition: var(--transition);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

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

.gallery-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-luxury);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.image-placeholder-gallery {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
    transition: var(--transition);
}

.gallery-item:hover .image-placeholder-gallery {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-caption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 5px;
}

.gallery-caption p {
    color: var(--text-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    padding: 50px 0;
    border-top: 1px solid var(--border);
    background: linear-gradient(to top, rgba(212, 175, 55, 0.02) 0%, transparent 100%);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer p {
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    margin: 0;
}

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

.footer-social-link {
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.about-social-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.about-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid var(--border);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    font-weight: 400;
}

.about-social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background-color: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

.about-social-link svg {
    transition: var(--transition);
}

.about-social-link:hover svg {
    transform: scale(1.1);
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    font-weight: 400;
}

.social-link:hover {
    color: var(--accent);
}

.social-link svg {
    transition: var(--transition);
}

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

.instagram-post {
    text-decoration: none;
    color: inherit;
    display: block;
}

.instagram-media {
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    min-width: auto !important;
}

.instagram-post .instagram-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Hide all placeholder elements and white sections */
.instagram-media > div {
    padding: 0 !important;
    height: 100% !important;
    background: transparent !important;
}

.instagram-media > div > a {
    background: transparent !important;
    display: block !important;
    height: 100% !important;
    padding: 0 !important;
}

.instagram-media > div > a > div:first-child,
.instagram-media > div > a > div:nth-child(3),
.instagram-media > div > a > div:nth-child(4),
.instagram-media > div > a > div:nth-child(5) {
    display: none !important;
}

.instagram-media > div > a > div:nth-child(2) {
    padding: 0 !important;
    height: 100% !important;
}

.instagram-media > div > p {
    display: none !important;
}

.instagram-media iframe {
    width: 120% !important;
    height: 120% !important;
    border: none !important;
    background: transparent !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    transform-origin: center center;
    pointer-events: none;
}

/* Instagram Thumbnail Styles */
.instagram-thumbnail-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.instagram-thumbnail-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.instagram-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.instagram-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.instagram-thumbnail-container:hover .instagram-thumbnail-img {
    transform: scale(1.1);
}

.instagram-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.3) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.instagram-thumbnail-container:hover .instagram-thumbnail-overlay {
    opacity: 1;
}

.instagram-thumbnail-overlay .play-icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.instagram-thumbnail-container:hover .play-icon {
    transform: scale(1.1);
}


/* Custom play button overlay */
.instagram-post::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    z-index: 10;
    pointer-events: none;
    transition: var(--transition);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-size: 24px 24px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
}

.instagram-post:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    background-color: rgba(0, 0, 0, 0.8);
}

.instagram-post:hover .instagram-iframe {
    border-color: var(--accent);
    box-shadow: var(--shadow-luxury);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Golden Rotating Aesthetic Elements */
.golden-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    display: none;
}

.golden-element {
    position: absolute;
    opacity: 0.08;
    transition: opacity 0.3s ease;
}

.golden-element:hover {
    opacity: 0.15;
}

/* Minimalist Golden Circles */
.golden-circle-1 {
    width: 120px;
    height: 120px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    top: 15%;
    left: 8%;
    animation: goldenRotate 25s linear infinite;
}

.golden-circle-2 {
    width: 100px;
    height: 100px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    bottom: 20%;
    right: 10%;
    animation: goldenRotate 30s linear infinite reverse;
}

/* Minimalist Golden Lines */
.golden-line-1 {
    width: 2px;
    height: 150px;
    background: var(--accent);
    top: 50%;
    left: 5%;
    transform-origin: center;
    animation: goldenRotate 20s linear infinite;
}

.golden-line-2 {
    width: 2px;
    height: 120px;
    background: var(--accent);
    top: 30%;
    right: 8%;
    transform-origin: center;
    animation: goldenRotate 22s linear infinite reverse;
}

/* Minimalist Golden Dots */
.golden-dot-1 {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    top: 70%;
    left: 12%;
    animation: goldenRotate 15s linear infinite;
}

.golden-dot-2 {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    bottom: 35%;
    right: 15%;
    animation: goldenRotate 18s linear infinite reverse;
}

/* Rotation Animation */
@keyframes goldenRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


@keyframes goldenPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .golden-element {
        opacity: 0.05;
    }

    .golden-circle-1 {
        width: 100px;
        height: 100px;
    }

    .golden-circle-2 {
        width: 80px;
        height: 80px;
    }

    .golden-line-1 {
        height: 120px;
    }

    .golden-line-2 {
        height: 100px;
    }

    .golden-dot-1 {
        width: 6px;
        height: 6px;
    }

    .golden-dot-2 {
        width: 5px;
        height: 5px;
    }

    .container {
        padding: 0 30px;
    }

    .nav-container {
        padding: 0 30px;
    }

    .about-grid,
    .contact-content,
    .resume-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 15px;
        letter-spacing: 3px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-primary);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 40px 0;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

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

    .nav-menu a {
        padding: 15px 0;
        font-size: 13px;
    }

    /* Hero section - responsive */
    .hero {
        padding: 40px 20px 60px;
        padding-top: 140px;
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin-bottom: 50px;
    }

    .hero-title {
        font-size: clamp(42px, 10vw, 56px);
        margin-bottom: 25px;
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 35px;
        max-width: 100%;
        color: var(--text-secondary);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 30px;
        font-size: 13px;
        letter-spacing: 1px;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 280px;
        margin-top: 20px;
        opacity: 0.12;
        order: -1;
    }

    .hero-img {
        filter: grayscale(100%) brightness(0.15);
        object-fit: cover;
    }

    .featured-work {
        padding: 60px 0;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
        line-height: 1.2;
        padding: 0 20px;
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 20px;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .work-item {
        margin-bottom: 0;
    }

    .work-image {
        height: 250px;
    }

    .work-info {
        padding: 25px;
    }

    .work-info h3 {
        font-size: 20px;
    }

    .video-section {
        padding: 80px 0;
    }

    .video-header {
        margin-bottom: 40px;
    }

    .video-subtitle {
        font-size: 14px;
    }

    .instagram-section {
        padding: 60px 0;
    }

    .instagram-header {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .instagram-subtitle {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 10px;
    }

    .instagram-grid {
        padding: 0 20px;
        gap: 20px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-content {
        gap: 40px;
        padding: 0 20px;
        flex-direction: column;
    }

    .contact-info h3 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .contact-form {
        width: 100%;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 14px;
    }

    .resume-section {
        padding: 80px 0;
    }

    .resume-content {
        gap: 50px;
    }

    .resume-column h3 {
        font-size: 28px;
    }

    .resume-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .resume-item h4 {
        font-size: 18px;
    }

    .resume-description {
        padding-left: 0;
        margin-left: 0;
    }

    .resume-description strong {
        display: block;
        margin-bottom: 8px;
        margin-top: 10px;
    }

    .resume-description strong:first-child {
        margin-top: 0;
    }

    .resume-item .resume-description {
        margin-bottom: 15px;
    }

    .resume-skills h3 {
        font-size: 28px;
    }

    .certifications-list li {
        padding-left: 0 !important;
        list-style: none !important;
    }

    .certifications-list li::before {
        display: none !important;
        content: none !important;
    }

    .skills-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .video-container {
        padding: 0 20px;
    }

    .video-wrapper {
        border-width: 1px;
    }

    .video-play-btn {
        width: 80px;
        height: 80px;
    }

    .video-play-btn svg {
        width: 40px;
        height: 40px;
    }

    .video-control-btn {
        width: 40px;
        height: 40px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .bts-section {
        padding: 80px 0;
    }

    .bts-header {
        margin-bottom: 50px;
    }

    .bts-main-display {
        height: 60vh;
        min-height: 400px;
        max-height: 600px;
    }

    .bts-nav-btn {
        width: 40px;
        height: 40px;
    }

    .bts-nav-prev {
        left: 10px;
    }

    .bts-nav-next {
        right: 10px;
    }

    .bts-thumbnail {
        width: calc((100% - (10px * 5)) / 6);
        max-width: 110px;
        min-width: 75px;
        height: 82px;
    }


    .instagram-stats {
        gap: 20px;
    }

    .stat-item {
        font-size: 12px;
    }

    .stat-item svg {
        width: 18px;
        height: 18px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 11px;
    }

    /* Portfolio Sections Responsive - Tablet */
    .portfolio-section {
        min-height: auto;
        padding: 100px 0;
    }

    .portfolio-number {
        font-size: 140px;
    }

    .portfolio-title {
        font-size: 48px;
    }

    .portfolio-subtitle {
        font-size: 18px;
    }

    .portfolio-description {
        font-size: 16px;
    }

    .portfolio-layout-1 {
        padding: 0 30px;
    }

    .portfolio-layout-1 .portfolio-number {
        font-size: 180px;
    }

    .portfolio-layout-1 .portfolio-title {
        font-size: 56px;
    }

    .portfolio-layout-2 {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .portfolio-layout-2-flipped {
        grid-template-columns: 1fr;
    }

    .portfolio-layout-2-flipped .portfolio-image-wrapper {
        grid-column: 1;
        grid-row: 1;
    }

    .portfolio-layout-2-flipped .portfolio-text-wrapper {
        grid-column: 1;
        grid-row: 2;
    }

    .portfolio-layout-4-flipped {
        direction: ltr;
    }

    .portfolio-layout-6-right {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
        max-width: 100%;
    }

    .portfolio-layout-6-right .portfolio-centered-content {
        text-align: left;
    }

    .portfolio-layout-6-right .portfolio-description {
        margin-left: 0;
        margin-right: 0;
    }

    .portfolio-img {
        height: 400px;
    }

    .portfolio-layout-2 .portfolio-number {
        font-size: 120px;
    }

    .portfolio-layout-2 .portfolio-title {
        font-size: 48px;
    }

    .portfolio-layout-3 {
        grid-template-columns: 180px 1fr;
        gap: 60px;
        padding: 0 30px;
    }

    .portfolio-layout-3 .portfolio-number {
        font-size: 120px;
    }

    .portfolio-layout-3 .portfolio-title {
        font-size: 50px;
    }

    .portfolio-layout-4 {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }

    .portfolio-layout-4 .portfolio-number {
        font-size: 140px;
    }

    .portfolio-layout-4 .portfolio-title {
        font-size: 52px;
    }

    .geometric-shape-1,
    .geometric-shape-2,
    .geometric-shape-3 {
        display: none;
    }

    .portfolio-layout-5 {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 30px;
    }

    .portfolio-layout-5 .portfolio-number {
        font-size: 140px;
        top: -40px;
        left: -20px;
    }

    .portfolio-layout-5 .portfolio-title {
        font-size: 52px;
    }

    .portfolio-asymmetric-right {
        margin-top: 0;
    }

    .portfolio-asymmetric-right .portfolio-img {
        height: 450px;
    }

    .portfolio-layout-6 {
        padding: 0 30px;
    }

    .portfolio-layout-6 .portfolio-number {
        font-size: 180px;
    }

    .portfolio-layout-6 .portfolio-title {
        font-size: 56px;
    }

    .portfolio-layout-7 {
        grid-template-columns: 1fr;
    }

    .portfolio-split-left .portfolio-img {
        min-height: 400px;
    }

    .portfolio-split-right {
        padding: 60px 40px;
    }

    .portfolio-layout-7 .portfolio-number {
        font-size: 140px;
        top: 30px;
        right: 40px;
    }

    .portfolio-layout-7 .portfolio-title {
        font-size: 52px;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
    }

    .carousel-controls {
        padding: 0 10px;
    }

    .carousel-counter {
        top: 20px;
        right: 20px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .golden-elements {
        display: none;
    }

    .logo-text {
        display: none;
    }

    .logo-text {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .page-title {
        font-size: 42px;
    }

    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .bts-section {
        padding: 60px 0;
    }

    .bts-main-display {
        height: 50vh;
        min-height: 300px;
        max-height: 500px;
        margin-bottom: 30px;
    }

    .bts-nav-btn {
        width: 35px;
        height: 35px;
    }

    .bts-nav-btn svg {
        width: 18px;
        height: 18px;
    }

    .bts-play-overlay {
        width: 60px;
        height: 60px;
    }

    .bts-play-overlay svg {
        width: 24px;
        height: 24px;
    }

    .bts-thumbnail {
        width: calc((100% - (8px * 5)) / 6);
        max-width: 95px;
        min-width: 65px;
        height: 71px;
    }

    .bts-thumbnails-track {
        gap: 8px;
    }

    .video-section {
        padding: 60px 0;
    }

    .video-header {
        margin-bottom: 40px;
    }

    .video-container {
        padding: 0 15px;
    }

    .video-play-btn {
        width: 70px;
        height: 70px;
    }

    .video-play-btn svg {
        width: 35px;
        height: 35px;
    }

    .video-control-btn {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }

    .video-control-btn svg {
        width: 16px;
        height: 16px;
    }

    .gallery-images-header {
        margin-bottom: 50px;
    }

    .gallery-images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .gallery-image-item:nth-child(1) {
        margin-top: 0;
    }

    .gallery-image-item:nth-child(2) {
        margin-top: 0;
    }

    .gallery-image-item:nth-child(odd) {
        margin-top: 0;
    }

    .gallery-image-item:nth-child(even) {
        margin-top: 0;
    }

    .gallery-image-wrapper {
        padding: 15px;
    }

    .gallery-image-description {
        padding: 0 10px;
    }

    .gallery-image-description p {
        font-size: 14px;
        text-align: center;
        line-height: 1.8;
    }

    .instagram-link {
        padding: 10px 20px;
        font-size: 12px;
    }

    /* Portfolio Sections Responsive - Mobile */
    .portfolio-section {
        padding: 80px 0;
        min-height: auto;
    }

    .portfolio-number {
        font-size: 100px;
        letter-spacing: -8px;
    }

    .portfolio-title {
        font-size: 36px;
    }

    .portfolio-subtitle {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .portfolio-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .portfolio-btn {
        padding: 14px 28px;
        font-size: 11px;
    }

    .portfolio-layout-1 {
        padding: 0 20px;
    }

    .portfolio-layout-1 .portfolio-number {
        font-size: 120px;
        margin-bottom: 30px;
    }

    .portfolio-layout-1 .portfolio-title {
        font-size: 42px;
    }

    .portfolio-layout-1 .portfolio-subtitle {
        font-size: 16px;
    }

    .portfolio-layout-1 .portfolio-description {
        font-size: 15px;
    }

    .portfolio-layout-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-layout-2-flipped {
        grid-template-columns: 1fr;
    }

    .portfolio-layout-2-flipped .portfolio-image-wrapper {
        grid-column: 1;
        grid-row: 1;
    }

    .portfolio-layout-2-flipped .portfolio-text-wrapper {
        grid-column: 1;
        grid-row: 2;
    }

    .portfolio-img {
        height: 300px;
    }

    .portfolio-layout-2 .portfolio-number {
        font-size: 90px;
        margin-bottom: 20px;
    }

    .portfolio-layout-2 .portfolio-title {
        font-size: 36px;
    }

    .portfolio-layout-2 .portfolio-subtitle {
        font-size: 14px;
    }

    .portfolio-layout-2 .portfolio-description {
        font-size: 14px;
    }

    .portfolio-layout-3 {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .portfolio-sidebar {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .portfolio-layout-3 .portfolio-number {
        font-size: 80px;
    }

    .portfolio-divider {
        width: 60px;
        height: 2px;
        margin-left: 0;
    }

    .portfolio-category {
        writing-mode: horizontal-tb;
        transform: none;
        margin-left: 0;
    }

    .portfolio-layout-3 .portfolio-title {
        font-size: 38px;
    }

    .portfolio-layout-3 .portfolio-subtitle {
        font-size: 16px;
    }

    .portfolio-layout-3 .portfolio-description {
        font-size: 15px;
    }

    .portfolio-layout-4 {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .portfolio-layout-4 .portfolio-number {
        font-size: 100px;
        margin-bottom: 20px;
    }

    .portfolio-layout-4 .portfolio-title {
        font-size: 40px;
    }

    .portfolio-layout-5 {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .portfolio-layout-5 .portfolio-number {
        font-size: 100px;
        top: -30px;
        left: -10px;
    }

    .portfolio-layout-5 .portfolio-title {
        font-size: 40px;
    }

    .portfolio-asymmetric-right .portfolio-img {
        height: 350px;
    }

    .portfolio-accent-line {
        display: none;
    }

    .portfolio-layout-6 {
        padding: 0 20px;
    }

    .portfolio-layout-6 .portfolio-number {
        font-size: 120px;
    }

    .portfolio-layout-6 .portfolio-title {
        font-size: 40px;
    }

    .portfolio-layout-6 .portfolio-description {
        font-size: 15px;
    }

    .portfolio-split-right {
        padding: 50px 30px;
    }

    .portfolio-layout-7 {
        grid-template-columns: 1fr;
    }

    .portfolio-layout-7 .portfolio-number {
        font-size: 100px;
        top: 20px;
        right: 30px;
    }

    .portfolio-layout-7 .portfolio-title {
        font-size: 40px;
    }

    .portfolio-layout-6 .portfolio-subtitle {
        font-size: 16px;
    }

    .portfolio-layout-7 .portfolio-subtitle {
        font-size: 16px;
    }

    .portfolio-layout-7 .portfolio-description {
        font-size: 14px;
    }

    .portfolio-split-left .portfolio-img {
        min-height: 300px;
    }

    .portfolio-split-right {
        padding: 40px 20px;
    }

    .gallery-images-header {
        margin-bottom: 40px;
    }

    .gallery-images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .gallery-image-item:nth-child(1) {
        margin-top: 0;
    }

    .gallery-image-item:nth-child(odd) {
        margin-top: 0;
    }

    .gallery-image-item:nth-child(even) {
        margin-top: 0;
    }

    .gallery-image-wrapper {
        aspect-ratio: 3 / 4;
    }

    .gallery-image-description {
        padding: 0 10px;
    }

    .gallery-image-description p {
        font-size: 14px;
        text-align: center;
        line-height: 1.7;
    }

    .portfolio-layout-4 .portfolio-subtitle {
        font-size: 15px;
    }

    .portfolio-layout-4 .portfolio-description {
        font-size: 14px;
    }

    .portfolio-layout-4 .portfolio-img {
        height: 350px;
    }

    .carousel-pdf-btn {
        padding: 12px 24px;
        font-size: 11px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-counter {
        font-size: 16px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .about-social-links {
        flex-direction: column;
    }

    .about-social-link {
        width: 100%;
        justify-content: center;
    }

    /* Additional Mobile Optimizations */
    .navbar {
        padding: 15px 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hamburger {
        gap: 4px;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
    }

    /* Hero section - responsive mobile */
    .hero {
        padding: 80px 15px 50px;
        min-height: 90vh;
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        padding: 0;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: clamp(42px, 10vw, 56px);
        letter-spacing: -2px;
        margin-bottom: 25px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 35px;
    }

    .hero-buttons {
        gap: 12px;
        flex-direction: column;
        width: 100%;
    }

    .btn {
        padding: 12px 25px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 250px;
        margin-top: 0;
        opacity: 0.12;
    }

    .hero-img {
        filter: grayscale(100%) brightness(0.2);
    }

    .section-title {
        font-size: 32px;
        padding-bottom: 20px;
    }

    .section-title::after {
        width: 60px;
    }

    .featured-work {
        padding: 50px 0;
    }

    .work-grid {
        gap: 25px;
    }

    .work-image {
        height: 220px;
    }

    .work-info {
        padding: 20px;
    }

    .work-info h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .work-info p {
        font-size: 13px;
    }

    .video-section {
        padding: 50px 0;
    }

    .video-header {
        margin-bottom: 30px;
    }

    .video-subtitle {
        font-size: 13px;
        margin-top: 10px;
    }

    .video-wrapper {
        padding: 0;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-play-btn svg {
        width: 30px;
        height: 30px;
    }

    .video-control-btn {
        width: 32px;
        height: 32px;
        top: 8px;
        right: 8px;
    }

    .video-control-btn svg {
        width: 14px;
        height: 14px;
    }

    .instagram-section {
        padding: 0;
    }

    .instagram-grid {
        gap: 12px;
    }

    .instagram-post {
        min-height: 400px;
    }

    .bts-section {
        padding: 50px 0;
    }

    .bts-header {
        margin-bottom: 35px;
    }

    .bts-subtitle {
        font-size: 13px;
    }

    .bts-main-display {
        height: 40vh;
        min-height: 250px;
        max-height: 400px;
        margin-bottom: 20px;
    }


    .bts-nav-btn {
        width: 30px;
        height: 30px;
    }

    .bts-nav-btn svg {
        width: 16px;
        height: 16px;
    }

    .bts-nav-prev {
        left: 5px;
    }

    .bts-nav-next {
        right: 5px;
    }

    .bts-play-overlay {
        width: 50px;
        height: 50px;
    }

    .bts-play-overlay svg {
        width: 20px;
        height: 20px;
    }

    .bts-thumbnail {
        width: calc((100% - (6px * 4)) / 5);
        max-width: 70px;
        min-width: 55px;
        height: 52px;
    }

    .bts-thumbnails-track {
        gap: 6px;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-content {
        gap: 40px;
    }

    .contact-info h3 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .contact-info > p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .contact-details {
        gap: 20px;
    }

    .contact-link {
        padding-bottom: 15px;
    }

    .contact-link span:first-child {
        font-size: 11px;
    }

    .contact-link span:last-child {
        font-size: 13px;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        font-size: 12px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }

    .form-group textarea {
        rows: 5;
    }

    .resume-section {
        padding: 50px 0;
    }

    .resume-content {
        gap: 40px;
    }

    .resume-column h3 {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .resume-item {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }

    .resume-item h4 {
        font-size: 16px;
    }

    .resume-location {
        font-size: 13px;
    }

    .resume-date {
        font-size: 11px;
    }

    .resume-description {
        font-size: 13px;
        line-height: 1.5;
        padding-left: 0;
        margin-left: 0;
    }

    .resume-description strong {
        display: block;
        margin-bottom: 8px;
        margin-top: 10px;
    }

    .resume-description strong:first-child {
        margin-top: 0;
    }

    .resume-item .resume-description {
        margin-bottom: 15px;
    }

    .resume-skills-title {
        font-size: 22px;
        margin-top: 40px;
        margin-bottom: 25px;
    }

    .certifications-list li {
        font-size: 13px;
        padding: 8px 0;
        padding-left: 25px;
    }

    .certifications-list li::before {
        display: none;
    }

    .resume-skills h3 {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .skills-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .skill-category h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .skill-category li {
        font-size: 13px;
        padding: 6px 0;
    }

    .resume-download {
        margin-top: 40px;
    }

    .resume-download .btn {
        width: 100%;
    }

    .footer {
        padding: 30px 0;
    }

    .footer-content p {
        font-size: 12px;
    }

    .footer-social {
        justify-content: center;
        gap: 15px;
    }

    .footer-social-link {
        width: 35px;
        height: 35px;
    }

    .footer-social-link svg {
        width: 16px;
        height: 16px;
    }

    /* Portfolio Page Mobile */
    .portfolio-hero {
        padding: 40px 20px 50px;
        padding-top: 140px;
    }

    .page-title {
        font-size: 38px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .page-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }

    .portfolio-section {
        padding: 60px 0;
    }

    .portfolio-layout-1 .portfolio-number {
        font-size: 100px;
    }

    .portfolio-layout-1 .portfolio-title {
        font-size: 38px;
    }

    .portfolio-layout-2 .portfolio-number {
        font-size: 80px;
    }

    .portfolio-layout-2 .portfolio-title {
        font-size: 32px;
    }

    .portfolio-layout-3 .portfolio-number {
        font-size: 70px;
    }

    .portfolio-layout-3 .portfolio-title {
        font-size: 32px;
    }

    .portfolio-layout-4 .portfolio-number {
        font-size: 90px;
    }

    .portfolio-layout-4 .portfolio-title {
        font-size: 36px;
    }

    .portfolio-layout-5 .portfolio-number {
        font-size: 90px;
    }

    .portfolio-layout-5 .portfolio-title {
        font-size: 36px;
    }

    .portfolio-layout-6 .portfolio-number {
        font-size: 100px;
    }

    .portfolio-layout-6 .portfolio-title {
        font-size: 36px;
    }

    .portfolio-layout-7 .portfolio-number {
        font-size: 80px;
    }

    .portfolio-layout-7 .portfolio-title {
        font-size: 36px;
    }

    .portfolio-img {
        height: 250px;
    }

    .portfolio-btn {
        padding: 12px 24px;
        font-size: 10px;
        width: 100%;
        justify-content: center;
    }

    /* About Page Mobile */
    .about-hero {
        padding: 40px 20px 50px;
        padding-top: 140px;
    }

    .about-content {
        padding: 60px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .about-text h2 {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-image {
        height: 300px;
    }

    .timeline {
        margin-top: 35px;
    }

    .timeline-item {
        padding-left: 25px;
        margin-bottom: 30px;
    }

    .timeline-date {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .timeline-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .timeline-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .timeline-marker {
        width: 10px;
        height: 10px;
        left: -5px;
    }

    /* Gallery Page Mobile */
    .gallery-hero {
        padding: 40px 20px 50px;
        padding-top: 140px;
    }

    .page-title {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .page-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }

    .gallery-images-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .gallery-image-item:nth-child(even) {
        margin-top: 0;
    }

    .gallery-image-wrapper {
        aspect-ratio: 3 / 4;
    }

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

    .gallery-image-description {
        padding: 0 5px;
    }

    .gallery-image-description::before {
        width: 30px;
        top: -10px;
    }

    .gallery-image-description p {
        font-size: 13px;
        line-height: 1.6;
        text-align: center;
    }

    .hero-image {
        height: 250px;
        margin-top: 30px;
        opacity: 0.12;
    }
}


