/**
 * Picture Perfect Studioz - Luxury Design System Stylesheet
 * Colors: Black (#000000), Royal Gold (#D4AF37), Pure White (#FFFFFF), Deep Grey (#0F0F0F)
 * Fonts: Cinzel, Playfair Display, Poppins, Montserrat
 */

:root {
    --primary-color: #000000;
    --secondary-color: #D4AF37;
    --accent-color: #FFFFFF;
    --bg-color: #0F0F0F;
    --bg-card: #161616;
    --text-primary: #F5F5F5;
    --text-secondary: #CCCCCC;
    --text-muted: #888888;
    --font-heading: 'Cinzel', serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-alt: 'Montserrat', sans-serif;
    --header-height: 80px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
    color: inherit;
}

/* Typography Utility Classes */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.2;
    color: var(--accent-color);
}

.serif-text {
    font-family: var(--font-serif);
    font-style: italic;
}

.gold-text {
    color: var(--secondary-color) !important;
}

/* Top contact bar */
.top-bar {
    background-color: #000000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    height: 40px;
    font-size: 0.8rem;
    font-family: var(--font-alt);
    display: flex;
    align-items: center;
}

.top-bar-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-secondary);
}

.top-bar-left i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.top-bar-left .separator {
    color: rgba(255, 255, 255, 0.2);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-right a {
    color: var(--text-secondary);
}

.top-bar-right a:hover {
    color: var(--secondary-color);
}

/* Header Styling */
.main-header {
    height: var(--header-height);
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

.main-header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    height: 70px;
}

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

/* Logo Design */
.logo a {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--accent-color);
}

.logo-sub {
    font-family: var(--font-alt);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 6.5px;
    color: var(--secondary-color);
    text-align: justify;
    margin-top: 2px;
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.main-header.scrolled .logo-image {
    height: 42px;
}

.mobile-logo .logo-image {
    height: 60px;
}

.footer-logo .logo-image {
    height: 65px;
}

/* Nav Menu */
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu a {
    font-family: var(--font-alt);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: var(--transition-smooth);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-alt);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 8px 18px;
    font-size: 0.75rem;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
}

.btn-nav:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-luxury-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-luxury-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: 0.5s;
}

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

.btn-luxury-outline:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Hamburger menu */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
}

.mobile-nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

/* Mobile full-screen Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-overlay.active {
    transform: translateY(0);
}

.mobile-overlay-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: var(--secondary-color);
    cursor: pointer;
}

.mobile-overlay-content {
    text-align: center;
}

.mobile-overlay .mobile-logo {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.mobile-menu-links {
    margin-bottom: 40px;
}

.mobile-menu-links li {
    margin: 20px 0;
}

.mobile-menu-links a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.mobile-menu-links a:hover {
    color: var(--secondary-color);
}

.mobile-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mobile-socials a {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.mobile-socials a:hover {
    color: var(--secondary-color);
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.action-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}

.action-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.call-action {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.whatsapp-action {
    background-color: #25D366;
    color: var(--accent-color);
}

/* SECTION STYLING */
section {
    padding: 100px 0;
    position: relative;
}

.section-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--secondary-color);
}

.section-header p {
    font-family: var(--font-alt);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
}

/* Hero Section (Cinematic) */
.hero-section {
    height: 100vh;
    padding: 0 0 120px 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #080808 url('../images/royal_reception.png') no-repeat center center / cover;
}

.hero-video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video-bg-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

.hero-video-bg-local {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(15, 15, 15, 1));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 90%;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    line-height: 1.15;
    opacity: 0.45;
}

.hero-content p {
    font-family: var(--font-alt);
    font-size: 1.1rem;
    letter-spacing: 4px;
    color: var(--secondary-color);
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.4;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Animated Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: var(--font-alt);
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.scroll-mouse {
    width: 20px;
    height: 35px;
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheelAnimation 2s infinite;
}

@keyframes scrollWheelAnimation {
    0% { top: 6px; opacity: 1; }
    50% { top: 15px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

/* Brand Introduction Section */
.intro-section {
    background-color: var(--bg-color);
}

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

.intro-text-col h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.intro-text-col p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.counter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.counter-item {
    background-color: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.counter-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.counter-title {
    font-family: var(--font-alt);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

/* Image grid side of intro */
.intro-image-col {
    position: relative;
}

.intro-img-frame {
    border: 1px solid var(--secondary-color);
    padding: 15px;
    position: relative;
}

.intro-img-frame img {
    width: 100%;
    filter: grayscale(20%);
    transition: var(--transition-smooth);
}

.intro-img-frame:hover img {
    filter: grayscale(0%);
}

.intro-img-frame::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    border-top: 2px solid var(--secondary-color);
    border-right: 2px solid var(--secondary-color);
}

.intro-img-frame::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    border-bottom: 2px solid var(--secondary-color);
    border-left: 2px solid var(--secondary-color);
}

/* Portfolio Masonry Layout */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-alt);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: var(--transition-smooth);
    background-color: var(--bg-card);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* Masonry Grid */
.masonry-grid {
    column-count: 3;
    column-gap: 20px;
    width: 100%;
}

.masonry-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--bg-card);
    break-inside: avoid;
}

.masonry-item img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.masonry-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

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

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

.masonry-item-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.masonry-item-overlay span {
    font-family: var(--font-alt);
    font-size: 0.75rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Signature Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-price {
    font-family: var(--font-alt);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Video Showcase Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.video-card {
    position: relative;
    background-color: var(--bg-card);
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-card:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-overlay-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    padding: 20px;
}

.video-card:hover .video-overlay-btn {
    background-color: rgba(0, 0, 0, 0.7);
}

.play-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    background-color: rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.video-card:hover .play-icon {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.video-overlay-btn h4 {
    font-size: 1.1rem;
    text-align: center;
    color: var(--accent-color);
    letter-spacing: 1px;
}

/* Custom Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 80%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.1);
}

.lightbox-video-frame {
    width: 80vw;
    height: 45vw;
    max-width: 960px;
    max-height: 540px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 2.5rem;
    color: var(--secondary-color);
    cursor: pointer;
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: var(--font-heading);
    color: var(--accent-color);
    letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.why-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.02);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.why-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Testimonial Section & Swiper Slider */
.testimonials-section {
    background-color: #0c0c0c;
}

.testimonials-slider {
    padding-bottom: 50px;
}

.testimonial-slide {
    background-color: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 50px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.client-rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.client-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    object-fit: cover;
}

.client-info h4 {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 2px;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.swiper-pagination-bullet {
    background: var(--text-muted);
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color) !important;
}

/* Instagram Feed Grid */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--bg-card);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    opacity: 0;
    transition: var(--transition-smooth);
}

.instagram-item:hover img {
    transform: scale(1.05);
}

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

/* Call To Action (CTA) Section */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.85)), url('../images/cta_bg.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 120px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.cta-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: var(--text-secondary);
}

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

/* FOOTER STYLING */
.site-footer {
    background-color: var(--primary-color);
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 1px;
    background-color: var(--secondary-color);
}

.footer-about .footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 20px;
    margin-bottom: 20px;
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 8px 15px;
}

.rating-stars {
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.rating-text {
    font-size: 0.8rem;
    font-weight: 600;
}

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

.footer-links ul a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links ul a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-list i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.footer-socials a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.map-wrapper {
    width: 100%;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links a {
    color: var(--text-muted);
}

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

/* ABOUT PAGE SPECIFIC STYLES */
.page-banner {
    height: 45vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}

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

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.banner-content .breadcrumbs {
    font-family: var(--font-alt);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
}

.banner-content .breadcrumbs a {
    color: var(--text-secondary);
}

.banner-content .breadcrumbs a:hover {
    color: var(--accent-color);
}

/* Studio Story */
.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.story-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Founder Message */
.founder-section {
    background-color: var(--bg-card);
}

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

.founder-img img {
    border: 1px solid var(--secondary-color);
    padding: 10px;
}

.founder-quote h3 {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.founder-quote p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.founder-signature h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.founder-signature span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Journey Timeline */
.timeline-container {
    max-width: 800px;
    margin: 50px auto 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: var(--secondary-color);
    opacity: 0.3;
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
    width: 50%;
    padding: 0 40px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    z-index: 2;
}

.timeline-left {
    left: 0;
    text-align: right;
}

.timeline-left::after {
    right: -8px;
}

.timeline-right {
    left: 50%;
    text-align: left;
}

.timeline-right::after {
    left: -8px;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

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

/* Team section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.team-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.02);
    overflow: hidden;
    position: relative;
}

.team-img-wrapper {
    overflow: hidden;
    position: relative;
}

.team-img-wrapper img {
    width: 100%;
    transition: transform 0.6s ease;
}

.team-socials-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: var(--transition-smooth);
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.05);
}

.team-card:hover .team-socials-overlay {
    bottom: 0;
}

.team-socials-overlay a {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.team-info span {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-family: var(--font-alt);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SERVICES PAGE SPECIFIC */
.service-detail-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail-block:nth-child(even) {
    direction: rtl;
}

.service-detail-block:nth-child(even) .service-detail-content {
    direction: ltr;
}

.service-detail-img {
    border: 1px solid var(--secondary-color);
    padding: 12px;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-detail-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.process-list {
    margin-bottom: 30px;
}

.process-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.process-list i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

/* BLOG PAGE SPECIFIC */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.02);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-img-wrapper {
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.blog-meta {
    padding: 25px 25px 0 25px;
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-family: var(--font-alt);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    gap: 15px;
}

.blog-card-content {
    padding: 15px 25px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card h3 a:hover {
    color: var(--secondary-color);
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* BLOG SINGLE POST VIEW */
.blog-single-container {
    max-width: 900px;
    margin: 0 auto;
}

.blog-single-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-single-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.blog-single-meta {
    font-family: var(--font-alt);
    font-size: 0.85rem;
    color: var(--secondary-color);
    display: flex;
    justify-content: center;
    gap: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-single-banner {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-rich-content {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

.blog-rich-content p {
    margin-bottom: 30px;
}

.blog-rich-content h3 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-rich-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
    list-style: square;
}

.blog-rich-content li {
    margin-bottom: 10px;
}

/* CONTACT PAGE SPECIFIC */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info-col h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info-col p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.info-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.02);
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--bg-card);
    border: 1px solid rgba(212,175,55,0.1);
    padding: 50px 40px;
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-form-wrapper p {
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: var(--font-alt);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background-color: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--secondary-color);
    background-color: rgba(255,255,255,0.04);
}

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

/* Status Messages */
.status-msg {
    padding: 15px;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.status-msg.success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #75ec88;
}

.status-msg.error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ea868f;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .main-header {
        height: 70px;
    }
    .nav-menu {
        display: none;
    }
    .btn-nav {
        display: none;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .intro-grid,
    .story-block,
    .founder-block,
    .service-detail-block,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .service-detail-block:nth-child(even) {
        direction: ltr;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .timeline-container::before {
        left: 30px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
        text-align: left;
    }
    .timeline-left::after,
    .timeline-right::after {
        left: 22px;
    }
    .timeline-right {
        left: 0;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    .hero-section {
        padding: 0 0 50px 0;
    }
    .hero-content h1 {
        font-size: 1.4rem;
        margin-bottom: 10px;
        line-height: 1.25;
    }
    .hero-content p {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
    }
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .counter-item {
        padding: 20px 10px;
    }
    .counter-number {
        font-size: 1.8rem;
    }
    .counter-title {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    .masonry-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .masonry-item {
        margin-bottom: 0;
        width: 100%;
        aspect-ratio: 1 / 1;
    }
    .masonry-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .masonry-item-overlay {
        padding: 12px;
    }
    .masonry-item-overlay h4 {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }
    .masonry-item-overlay span {
        font-size: 0.65rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    .blog-single-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .top-bar {
        display: none;
    }
}

.success-modal p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Admin Login Footer Button */
.footer-bottom-links .btn-admin-footer {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 16px !important;
    font-family: var(--font-alt) !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: 1px solid var(--secondary-color) !important;
    color: var(--secondary-color) !important;
    background-color: transparent !important;
    transition: var(--transition-smooth) !important;
    cursor: pointer !important;
    opacity: 1 !important;
}

.footer-bottom-links .btn-admin-footer:hover {
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

.footer-bottom-links .btn-admin-footer i {
    font-size: 0.7rem !important;
}
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
}

.success-modal-content {
    background-color: var(--bg-card);
    border: 1px solid var(--secondary-color);
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

.success-modal-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.success-modal h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent-color);
    font-family: var(--font-heading);
}

.success-modal p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.6;
}

