/* ============================
   CSS VARIABLES & RESET
   ============================ */
:root {
    --primary: #ff3700;
    --primary-dark: #cc2c00;
    --secondary: #ffffff;
    --dark: #170703;
    --light: #170703;
    --gray-100: #1f0d06;
    --gray-200: #2a1509;
    --gray-300: #cccccc;
    --gray-500: #aaaaaa;
    --gray-700: #dddddd;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --container: 1200px;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --transition: 0.3s ease;
}

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

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

body {
    font-family: var(--font-body);
    color: #ffffff;
    background: #170703;
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 1.125rem;
}

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

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

ul, ol {
    list-style: none;
}

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

.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 44px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-align: center;
    position: relative;
    margin: 8px;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
}

/* Top-left & top-right corners */
.btn-primary::before,
.btn-outline::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    height: 16px;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    border-bottom: none;
    clip-path: polygon(0 0, 16px 0, 16px 2px, 2px 2px, 2px 100%, 0 100%, 0 0, calc(100% - 16px) 0, 100% 0, 100% 100%, calc(100% - 2px) 100%, calc(100% - 2px) 2px, calc(100% - 16px) 2px, calc(100% - 16px) 0);
    pointer-events: none;
}

/* Bottom-left & bottom-right corners */
.btn-primary::after,
.btn-outline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -5px;
    right: -5px;
    height: 16px;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    border-top: none;
    clip-path: polygon(0 100%, 16px 100%, 16px calc(100% - 2px), 2px calc(100% - 2px), 2px 0, 0 0, 0 100%, calc(100% - 16px) 100%, 100% 100%, 100% 0, calc(100% - 2px) 0, calc(100% - 2px) calc(100% - 2px), calc(100% - 16px) calc(100% - 2px), calc(100% - 16px) 100%);
    pointer-events: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,55,0,0.3);
}


.btn-outline {
    background: var(--primary);
    color: #ffffff;
}

.btn-outline:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-arrow {
    font-size: 1.2rem;
    margin-left: 4px;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.05rem;
}

/* ============================
   HEADER
   ============================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(23,7,3,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.logo img {
    height: 90px;
    width: auto;
}

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

.nav-link {
    font-size: 0.88rem;
    font-weight: 400;
    color: #ffffff;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.has-dropdown .nav-link i {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform var(--transition);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #1f0d06;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
}

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

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 400;
    color: #cccccc;
}

.dropdown-menu li a:hover {
    background: #2a1509;
    color: var(--primary);
}

.header-cta {
    padding: 10px 32px;
    font-size: 0.9rem;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 0;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition);
    position: relative;
    margin: 6px;
}

.header-cta::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    height: 14px;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    border-bottom: none;
    clip-path: polygon(0 0, 14px 0, 14px 2px, 2px 2px, 2px 100%, 0 100%, 0 0, calc(100% - 14px) 0, 100% 0, 100% 100%, calc(100% - 2px) 100%, calc(100% - 2px) 2px, calc(100% - 14px) 2px, calc(100% - 14px) 0);
    pointer-events: none;
}

.header-cta::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -5px;
    right: -5px;
    height: 14px;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    border-top: none;
    clip-path: polygon(0 100%, 14px 100%, 14px calc(100% - 2px), 2px calc(100% - 2px), 2px 0, 0 0, 0 100%, calc(100% - 14px) 100%, 100% 100%, 100% 0, calc(100% - 2px) 0, calc(100% - 2px) calc(100% - 2px), calc(100% - 14px) calc(100% - 2px), calc(100% - 14px) 100%);
    pointer-events: none;
}

.header-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 30px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before { top: 0; }
.hamburger::after { bottom: 0; }

.mobile-toggle.active .hamburger { background: transparent; }
.mobile-toggle.active .hamburger::before { transform: rotate(45deg); top: 50%; }
.mobile-toggle.active .hamburger::after { transform: rotate(-45deg); bottom: 50%; }

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

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

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-bg-slide:nth-child(3) {
    background-position: center 70%;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23,7,3,0.25);
    z-index: 1;
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 180px;
    padding-bottom: 120px;
}

/* Hero content animation */
.hero-content {
    max-width: 600px;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.hero-content .hero-label,
.hero-content .hero-title,
.hero-content .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 0.8s ease forwards;
}

.hero-content .hero-label {
    animation-delay: 0.2s;
}

.hero-content .hero-title {
    animation-delay: 0.5s;
}

.hero-content .btn {
    animation-delay: 0.8s;
}

.hero-content.animate .hero-label,
.hero-content.animate .hero-title,
.hero-content.animate .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 0.8s ease forwards;
}

.hero-content.animate .hero-label {
    animation-delay: 0.2s;
}

.hero-content.animate .hero-title {
    animation-delay: 0.5s;
}

.hero-content.animate .btn {
    animation-delay: 0.8s;
}

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

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

.hero-label {
    display: inline-block;
    margin-bottom: 16px;
}

.hero-label a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
}

.hero-label a:hover {
    background: #ffffff;
    color: #170703;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-text {
    font-size: 1rem;
    color: #aaaaaa;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}


.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.hero-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-section {
    padding: 100px 0;
    background: #170703;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-content p {
    font-size: 0.98rem;
    color: #cccccc;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-content p a {
    color: var(--primary);
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.about-content p a:hover {
    border-bottom-color: var(--primary);
}

.about-content .btn {
    margin-top: 16px;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-img-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    border: 3px solid #ffffff;
}

.about-img-1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-img-2 {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 45%;
    border: 3px solid #ffffff;
}

.about-img-2 img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* ============================
   PHOTOGRAPHY INFO SECTION
   ============================ */
.photo-info-section {
    padding: 100px 0;
    background: #1f0d06;
}

.photo-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.photo-info-images {
    position: relative;
    height: 500px;
}

.photo-info-img-1 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 30%;
    border: 3px solid #ffffff;
}

.photo-info-img-1 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.photo-info-img-2 {
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translateY(-50%);
    width: 55%;
    border: 3px solid #ffffff;
}

.photo-info-img-2 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.photo-info-content p {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 16px;
    line-height: 1.8;
}

.photo-info-content p a {
    color: var(--primary);
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.photo-info-content p a:hover {
    border-bottom-color: var(--primary);
}

.photo-info-content .btn {
    margin-top: 16px;
}

/* ============================
   STATS COUNTER SECTION
   ============================ */
.stats-section {
    padding: 60px 0;
    background: #170703;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stats-card {
    background: #0a0200;
    border-radius: 50px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #3d1a0a;
    transition: all var(--transition);
}

.stats-card.highlighted {
    border-color: transparent;
}

.stats-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(255,55,0,0.2);
}

.stats-card:hover .stats-number,
.stats-card:hover .stats-plus {
    color: var(--primary);
}

.stats-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
}

.stats-plus {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.stats-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 8px;
    font-weight: 400;
}

/* ============================
   SERVICES SECTION
   ============================ */
.services-section {
    padding: 100px 0;
    background: #0f0200;
}

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

.service-row {
    display: grid;
    grid-template-columns: 80px 200px 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #2a1509;
    transition: all var(--transition);
}

.service-row:first-child {
    border-top: 1px solid #2a1509;
}

.service-row:hover {
    background: rgba(255,55,0,0.03);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
}

.service-title a {
    color: #ffffff;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 2px;
}

.service-title a:hover {
    color: var(--primary);
}

.service-desc {
    font-size: 0.88rem;
    color: #aaaaaa;
    line-height: 1.7;
}

.service-desc a {
    color: var(--primary);
    text-decoration: underline;
}

.service-desc a:hover {
    color: #ffffff;
}

.service-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    transition: all var(--transition);
}

.service-arrow:hover {
    transform: translateX(5px);
}

/* ============================
   CLIENT GALLERY SECTION
   ============================ */
.client-gallery-section {
    padding: 100px 0;
    background: #170703;
}

.client-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.client-gallery-item {
    position: relative;
    height: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}

.client-gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(23,7,3,0.7));
    transition: background var(--transition);
}

.client-gallery-item:hover::before {
    background: transparent;
}

.client-gallery-item:hover .client-overlay {
    opacity: 0;
}

.client-gallery-item:hover {
    transform: scale(1.03);
}

.client-overlay {
    text-align: center;
    position: relative;
    z-index: 1;
    transition: opacity var(--transition);
}

.client-overlay span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--light);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 4px;
}

/* ============================
   LATEST WORKS SECTION
   ============================ */
.latest-works-section {
    padding: 100px 0;
    background: #1f0d06;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.works-grid-full {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr 1.2fr 0.8fr;
    gap: 0;
    width: 100%;
    margin-top: 40px;
}

.work-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

.works-grid-full .work-item:hover img {
    transform: scale(1.08);
}

.work-item:hover img {
    transform: scale(1.08);
}

/* ============================
   INSTAGRAM SECTION
   ============================ */
.instagram-section {
    padding: 100px 0;
    background: #170703;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 40px;
}

.instagram-grid-full {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    width: 100%;
    margin-top: 40px;
}

.insta-item {
    position: relative;
    overflow: hidden;
}

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

.insta-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: background var(--transition);
}

.insta-overlay i {
    font-size: 1.1rem;
    color: #fff;
}

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

.insta-item:hover .insta-overlay {
    background: var(--primary);
}

/* ============================
   TESTIMONIALS SECTION
   ============================ */
.testimonials-section {
    padding: 100px 0;
    background: #0f0200;
    color: #ffffff;
}

.testimonials-section .section-title {
    color: #ffffff;
    margin-bottom: 50px;
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.5fr;
    gap: 30px;
    align-items: center;
}

.testimonials-stats-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testi-stat-card {
    background: #1a0a04;
    border: 1px solid #2a1509;
    border-radius: var(--radius-lg);
    padding: 30px 24px;
}

.testi-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 12px;
}

.testi-stat-label {
    font-size: 0.85rem;
    color: #aaaaaa;
    line-height: 1.6;
}

.testimonials-image-col {
    display: flex;
    justify-content: center;
}

.testimonials-image-col img {
    width: 100%;
    max-width: 350px;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.testimonials-review-col {
    display: flex;
    align-items: center;
}

.testi-slider {
    position: relative;
    overflow: hidden;
}

.testi-review-card {
    background: #1a0a04;
    border: 1px solid #2a1509;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.testi-review-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testi-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3d1a0a;
    cursor: pointer;
    transition: background var(--transition);
}

.testi-dot.active {
    background: var(--primary);
}

.testi-stars {
    margin-bottom: 20px;
}

.testi-stars i {
    color: var(--primary);
    font-size: 0.9rem;
    margin-right: 3px;
}

.testi-review-text {
    font-size: 0.92rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testi-author {
    border-top: 1px solid #2a1509;
    padding-top: 20px;
}

.testi-author-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    display: block;
    margin-bottom: 4px;
}

.testi-author-title {
    font-size: 0.85rem;
    color: #aaaaaa;
}

/* ============================
   PRICING SECTION
   ============================ */
.pricing-section {
    padding: 100px 0;
    background: #170703;
}

.section-label {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: center;
}

.pricing-card {
    background: #1f0d06;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: #ffffff;
    border: none;
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
    padding: 50px 30px;
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.pricing-icon {
    margin-bottom: 20px;
}

.pricing-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.pricing-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(255,55,0,0.1);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.pricing-tier {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.pricing-card.featured .pricing-price {
    color: #170703;
}

.pricing-card.featured .pricing-tier {
    color: var(--primary);
}

.pricing-features {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-features li {
    font-size: 0.9rem;
    color: #aaaaaa;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-card.featured .pricing-features li {
    color: #555555;
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-cta {
    width: 100%;
    justify-content: center;
}

.btn-dark {
    background: #2a1509;
    color: #ffffff;
}

.btn-dark::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    height: 16px;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    border-bottom: none;
    clip-path: polygon(0 0, 16px 0, 16px 2px, 2px 2px, 2px 100%, 0 100%, 0 0, calc(100% - 16px) 0, 100% 0, 100% 100%, calc(100% - 2px) 100%, calc(100% - 2px) 2px, calc(100% - 16px) 2px, calc(100% - 16px) 0);
    pointer-events: none;
}

.btn-dark::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -5px;
    right: -5px;
    height: 16px;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    border-top: none;
    clip-path: polygon(0 100%, 16px 100%, 16px calc(100% - 2px), 2px calc(100% - 2px), 2px 0, 0 0, 0 100%, calc(100% - 16px) 100%, 100% 100%, 100% 0, calc(100% - 2px) 0, calc(100% - 2px) calc(100% - 2px), calc(100% - 16px) calc(100% - 2px), calc(100% - 16px) 100%);
    pointer-events: none;
}

.btn-dark:hover {
    background: #3d1a0a;
    transform: translateY(-2px);
}

/* ============================
   FAQ SECTION
   ============================ */
.faq-section {
    padding: 100px 0;
    background: #0f0200;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.faq-heading .section-label {
    text-align: left;
}

.faq-heading .section-title {
    text-align: left;
}

.faq-list {
    margin: 0;
}

.faq-item {
    background: transparent;
    border-bottom: 1px solid #2a1509;
    border-radius: 0;
    margin-bottom: 0;
    overflow: hidden;
    box-shadow: none;
}

.faq-item:first-child {
    border-top: 1px solid #2a1509;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    transition: color var(--transition);
}

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

.faq-icon {
    font-size: 0.9rem;
    color: var(--primary);
    transition: transform var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 0 24px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: #aaaaaa;
    line-height: 1.8;
}

/* ============================
   BLOG SECTION
   ============================ */
.blog-section {
    padding: 100px 0;
    background: #170703;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #1f0d06;
    transition: all var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-thumb {
    overflow: hidden;
    height: 200px;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.05);
}

.blog-content {
    padding: 24px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.4;
}

.blog-title a {
    color: #ffffff;
}

.blog-title a:hover {
    color: var(--primary);
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
    padding: 80px 0;
    background: #000000;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-layout {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 40px;
    align-items: center;
}

.cta-img-left,
.cta-img-right {
    overflow: hidden;
    border-radius: var(--radius);
}

.cta-img-left img,
.cta-img-right img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius);
}

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

.cta-section .section-label {
    color: var(--primary);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin: 16px 0 32px;
    line-height: 1.3;
    color: #ffffff;
}

/* ============================
   WEDDING PRICING SECTION
   ============================ */
.wedding-pricing-section {
    padding: 80px 0;
    background: #0f0200;
}

.wedding-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.wedding-price-card {
    text-align: center;
    padding: 40px 24px;
}

.wedding-price-tier {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.wedding-price-tag {
    display: inline-block;
    background: var(--primary);
    border-radius: 30px;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.wedding-price-tag .rupee {
    font-size: 1.2rem;
    margin-right: 2px;
}

.wedding-price-tag .from {
    font-size: 0.9rem;
    font-weight: 400;
    margin-left: 6px;
}

.wedding-price-features {
    list-style: none;
    text-align: center;
    margin-bottom: 30px;
}

.wedding-price-features li {
    font-size: 0.88rem;
    color: #cccccc;
    padding: 8px 0;
}

/* Sets Apart List */
.sets-apart-list {
    list-style: none;
    padding-left: 20px;
}

.sets-apart-list li {
    font-size: 0.9rem;
    color: #cccccc;
    padding: 6px 0;
    position: relative;
    padding-left: 16px;
}

.sets-apart-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 0.6rem;
    top: 9px;
}

/* ============================
   SERVICE PAGE LAYOUT
   ============================ */
.service-page-section {
    padding: 80px 0;
    background: #170703;
}

.service-page-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: flex-start;
}

/* Service Sidebar */
.service-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}

.service-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    border-bottom: 1px solid #2a1509;
    transition: all var(--transition);
}

.service-nav-link:first-child {
    border-top: 1px solid #2a1509;
}

.service-nav-link:hover {
    color: var(--primary);
    padding-left: 8px;
}

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

.service-nav-link i {
    font-size: 0.8rem;
}

/* Process Section */
.service-process {
    margin-bottom: 40px;
}

.process-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.process-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.process-step {
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 0.85rem;
    color: #aaaaaa;
    line-height: 1.7;
}

/* Mid CTA */
.service-mid-cta {
    margin-top: 40px;
}

.service-mid-cta p {
    font-size: 0.85rem;
    color: #aaaaaa;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Main Content */
.service-main-content {
    padding-top: 0;
}

.service-featured-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.service-main-content p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Why Choose List */
.why-choose-list {
    margin: 30px 0;
}

.why-choose-item {
    margin-bottom: 24px;
}

.why-choose-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    display: inline-block;
    flex-shrink: 0;
}

.why-choose-item p {
    font-size: 0.9rem;
    color: #aaaaaa;
    line-height: 1.7;
    padding-left: 20px;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 18px 44px;
    font-size: 1.1rem;
}

/* ============================
   CONTACT SECTION
   ============================ */
.contact-section {
    padding: 80px 0;
    background: #170703;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1f0d06;
    border: 1px solid #2a1509;
    border-radius: var(--radius);
    padding: 12px 16px;
    transition: border-color var(--transition);
}

.input-wrap:focus-within {
    border-color: var(--primary);
}

.input-wrap i {
    color: #aaaaaa;
    font-size: 0.9rem;
}

.input-wrap input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.input-wrap input::placeholder {
    color: #666666;
}

.form-group.full-width {
    margin-bottom: 24px;
}

.form-group textarea {
    width: 100%;
    background: #1f0d06;
    border: 1px solid #2a1509;
    border-radius: var(--radius);
    padding: 14px 16px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    resize: vertical;
    outline: none;
    transition: border-color var(--transition);
}

.form-group textarea::placeholder {
    color: #666666;
}

.form-group textarea:focus {
    border-color: var(--primary);
}

.contact-info-wrap {
    padding-top: 20px;
}

.contact-info-text {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-social {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-social a {
    font-size: 1.2rem;
    color: #ffffff;
    transition: color var(--transition);
}

.contact-social a:hover {
    color: var(--primary);
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
}

/* ============================
   PAGE HERO (Inner Pages)
   ============================ */
.page-hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23,7,3,0.4);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
}

/* ============================
   ABOUT INTRO SECTION
   ============================ */
.about-intro-section {
    padding: 100px 0;
    background: #170703;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-intro-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: var(--radius);
    border: 3px solid #ffffff;
}

.about-intro-content p {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-intro-content .btn {
    margin-top: 16px;
}

/* ============================
   EMPOWER SECTION
   ============================ */
.empower-section {
    padding: 100px 0;
    background: #1f0d06;
}

.empower-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 50px;
}

.empower-img-left img,
.empower-img-right img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 3px solid #ffffff;
}

.empower-content p {
    font-size: 0.92rem;
    color: #cccccc;
    margin-bottom: 16px;
    line-height: 1.8;
}

.empower-content strong {
    color: #ffffff;
}

.empower-stats {
    display: flex;
    gap: 60px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #2a1509;
}

.empower-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.empower-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.empower-stat-label {
    font-size: 0.9rem;
    color: #aaaaaa;
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
    background: #0a0200;
    color: var(--gray-300);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #1f0d06;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

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

.footer-links li a {
    font-size: 0.9rem;
    color: var(--gray-500);
    transition: all var(--transition);
}

.footer-links li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-info {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.footer-info a {
    color: var(--gray-500);
}

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

.footer-middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid #1f0d06;
}

.footer-middle-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-middle-item .footer-heading {
    margin-bottom: 0;
    white-space: nowrap;
}

.footer-middle-item .footer-info {
    margin: 0;
}

.footer-logo-wrap {
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid #1f0d06;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin: 0 auto;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ============================
   WHATSAPP FLOAT & BACK TO TOP
   ============================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
    z-index: 999;
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

.whatsapp-float i {
    font-size: 1.8rem;
    color: #fff;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 999;
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.5rem; }
    .service-row { grid-template-columns: 60px 150px 1fr auto; gap: 20px; }
    .testimonials-layout { grid-template-columns: 1fr 1fr; }
    .testimonials-review-col { grid-column: span 2; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .works-grid { grid-template-columns: repeat(2, 1fr); }
    .works-grid-full { grid-template-columns: repeat(2, 1fr); }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .header-cta { display: none; }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #170703;
        box-shadow: -4px 0 20px rgba(0,0,0,0.3);
        padding: 80px 30px 30px;
        transition: right var(--transition);
        z-index: 999;
        overflow-y: auto;
    }

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

    .main-nav .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #2a1509;
    }

    .nav-link {
        display: block;
        padding: 14px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 20px;
        display: none;
    }

    .has-dropdown.open .dropdown-menu {
        display: block;
    }

    .hero-section { min-height: 100vh; }
    .hero-content-wrap { padding: 120px 20px 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 2.2rem; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-images { height: 400px; }
    .about-img-1 { width: 60%; }
    .about-img-2 { width: 50%; }
    .photo-info-grid { grid-template-columns: 1fr; gap: 40px; }
    .photo-info-images { height: 400px; }
    .photo-info-img-1 { width: 45%; }
    .photo-info-img-2 { width: 55%; left: 30%; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .service-row { grid-template-columns: 1fr; gap: 12px; }
    .service-arrow { display: none; }
    .client-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .works-grid { grid-template-columns: repeat(2, 1fr); }
    .works-grid-full { grid-template-columns: repeat(2, 1fr); }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .instagram-grid-full { grid-template-columns: repeat(3, 1fr); }
    .testimonials-layout { grid-template-columns: 1fr; }
    .testimonials-review-col { grid-column: auto; }
    .testimonials-image-col img { max-width: 100%; height: 350px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-6px); }
    .faq-grid { grid-template-columns: 1fr; gap: 40px; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .footer-middle { grid-template-columns: 1fr; }
    .cta-title { font-size: 1.8rem; }
    .cta-layout { grid-template-columns: 1fr; gap: 30px; }
    .cta-img-left, .cta-img-right { display: none; }
    .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-intro-image { text-align: center; }
    .empower-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .service-page-grid { grid-template-columns: 1fr; gap: 40px; }
    .page-hero { height: 100vh; min-height: 500px; }
    .page-hero-title { font-size: 2.2rem; }
    .client-hero { height: 100vh; min-height: 500px; }
    .section-title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .section-title { font-size: 1.5rem; }
    .client-gallery-grid { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .instagram-grid-full { grid-template-columns: repeat(2, 1fr); }
    .about-stats { grid-template-columns: 1fr; }
    .stat-number { font-size: 2rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .cta-title { font-size: 1.5rem; }
    .hero-content-wrap { padding: 100px 15px 60px; }
    .hero-label { font-size: 0.75rem; padding: 6px 16px; }
    .btn { padding: 10px 30px; font-size: 0.9rem; }
    .testimonials-image-col img { height: 300px; }
    .testi-review-text { font-size: 0.95rem; }
    .footer-top { gap: 20px; }
    .works-grid-full { grid-template-columns: 1fr; }
}

/* ============================
   GALLERY PAGE - CLIENT CARDS
   ============================ */
.gallery-clients-section {
    padding: 80px 0;
}

.gallery-clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-client-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
    transition: transform var(--transition);
}

.gallery-client-card:hover {
    transform: translateY(-6px);
}

.gallery-client-img {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.gallery-client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-client-card:hover .gallery-client-img img {
    transform: scale(1.05);
}

.gallery-client-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery-client-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.gallery-client-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    transition: background var(--transition);
}

.gallery-client-card:hover .gallery-client-arrow {
    background: #fff;
    color: var(--primary);
}

/* ============================
   GALLERY PAGE - MASONRY GRID
   ============================ */
.gallery-grid-section {
    padding: 40px 0 80px;
}

.gallery-grid-section .section-title {
    margin-bottom: 50px;
    font-size: 1.8rem;
}

.gallery-masonry {
    columns: 4;
    column-gap: 16px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(23, 7, 3, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-overlay i {
    font-size: 1.5rem;
    color: #fff;
}

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

/* ============================
   GALLERY PAGE - LIGHTBOX
   ============================ */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    transition: color var(--transition);
}

.lightbox-close:hover {
    color: var(--primary);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 10001;
}

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

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.lightbox-img-wrap {
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-wrap img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
}

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

.client-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.client-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(23, 7, 3, 0.4);
}

.client-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.client-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.client-hero-desc {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .client-hero { height: 70vh; min-height: 450px; }
    .client-hero-title { font-size: 2.2rem; }
    .client-hero-desc { font-size: 0.9rem; }
}

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

/* ============================
   VIDEO GALLERY PAGE
   ============================ */
.video-gallery-section {
    padding: 80px 0;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #0a0200;
    border: 1px solid #3d1a0a;
    transition: transform var(--transition), box-shadow var(--transition);
}

.video-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 55, 0, 0.1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.page-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 12px;
    font-weight: 400;
}

/* Video Gallery Responsive */
@media (max-width: 768px) {
    .video-gallery-grid { grid-template-columns: 1fr; gap: 20px; }
    .video-gallery-section { padding: 60px 0; }
}

/* ============================
   GALLERY PAGE - RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .gallery-clients-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-masonry { columns: 3; }
}

@media (max-width: 768px) {
    .gallery-clients-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-client-img { height: 280px; }
    .gallery-masonry { columns: 2; }
    .gallery-grid-section .section-title { font-size: 1.5rem; }
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }
    .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1rem; }
    .video-gallery-grid { grid-template-columns: 1fr; gap: 20px; }
    .video-gallery-section { padding: 60px 0; }
    .works-grid-full { grid-template-columns: repeat(2, 1fr); }
    .works-grid-full .work-item img { height: 300px; }
    .gallery-clients-section { padding: 60px 0; }
    .client-hero-title { font-size: 2.2rem; }
    .client-hero-desc { font-size: 1rem; padding: 0 10px; }
    .gallery-grid-section { padding: 40px 0 60px; }
}

@media (max-width: 480px) {
    .gallery-clients-grid { grid-template-columns: 1fr; }
    .gallery-client-img { height: 250px; }
    .gallery-masonry { columns: 2; column-gap: 10px; }
    .gallery-item { margin-bottom: 10px; }
    .works-grid-full { grid-template-columns: 1fr; }
    .works-grid-full .work-item img { height: 250px; }
    .instagram-grid-full { grid-template-columns: repeat(2, 1fr); }
    .client-hero-title { font-size: 1.8rem; }
    .client-hero-desc { font-size: 0.95rem; }
    .page-hero-title { font-size: 1.8rem; }
    .hero-title { font-size: 1.6rem; }
    .section-title { font-size: 1.4rem; }
    .cta-title { font-size: 1.3rem; }
    .testi-stat-number { font-size: 2rem; }
    .pricing-card { padding: 30px 20px; }
    .btn { padding: 10px 30px; font-size: 0.9rem; }
    .container { padding: 0 15px; }
    .gallery-clients-section { padding: 40px 0; }
    .video-gallery-section { padding: 40px 0; }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
