/* Global Styles & Variables */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Great+Vibes&family=Rubik:wght@300;400;500&display=swap');

:root {
    --primary-color: #D4AF37;
    /* Gold - Luxury */
    --secondary-color: #1b3a2b;
    /* Deep Emerald Green - Accent */
    --accent-color: #ffffff;
    --bg-color: #050505;
    /* Deep Rich Black */
    --card-bg: #0a0a0a;
    /* Soft Black for cards */
    --text-color: #e0e0e0;
    /* Soft White text */
    --text-muted: #a0a0a0;

    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Fonts */
    --font-script: 'Great Vibes', cursive;
    /* Calligraphy for Titles (Span) */
    --font-heading: 'Rubik', sans-serif;
    /* Clean, Readable for H2 */
    --font-body: 'Rubik', sans-serif;
    /* Clean, Readable for Body */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.7;
    font-weight: 300;
}

/* p { text-transform: capitalize; REMOVED per user request for sentence case } */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 600;
    /* Elegant bold */
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loader-logo {
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse 2s infinite;
}

.loader-text {
    margin-top: 20px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.9);
    /* Logo color proper visible with black bg */
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

header.scrolled {
    padding: 0.5rem 5%;
    background: #000000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 90px;
    width: auto;
}

/* 
.logo h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
}

.logo span {
    color: var(--secondary-color);
} 
*/

nav ul {
    display: flex;
    gap: 2rem;
}

nav ul li a {
    font-weight: 500;
    color: #ffffff;
    /* Explicit White for visibility */
    position: relative;
    letter-spacing: 1px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    /* Fallback */
    height: 100dvh;
    /* Dynamic viewport height for mobile */
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    /* Base transition */
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1);
}

/* --- Professional Cinematic Transitions --- */

/* Base Slide Setup */
.hero-slide {
    z-index: 1;
    /* Default stack */
    transition: z-index 0s linear 0.1s;
    /* Delay z-index drop */
}

.hero-slide.active {
    z-index: 2;
    /* Active slide on top */
}

.hero-slide .slide-bg {
    transform: scale(1.1);
    /* Start slightly zoomed in */
    transition: transform 6s linear;
    /* Continuous movement */
}

.hero-slide.active .slide-bg {
    animation: panAndZoom 8s ease-out forwards;
}

@keyframes panAndZoom {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* 1. Zoom/Fade Effect (Classic Ken Burns) */
.hero-slide[data-effect="zoom"] .slide-bg {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide[data-effect="zoom"].active .slide-bg {
    opacity: 1;
}

/* 2. Square Effect -> Diagonal Wipe (Modern & Clean) */
.hero-slide[data-effect="square"] .slide-bg {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    /* Hidden start */
    transition: clip-path 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-slide[data-effect="square"].active .slide-bg {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    /* Full Reveal */
}

/* 3. Stripe Effect -> Horizontal Wipe (Smooth Reveal) */
.hero-slide[data-effect="stripe"] .slide-bg {
    clip-path: inset(0 100% 0 0);
    /* Hidden right side */
    transition: clip-path 1.5s cubic-bezier(0.8, 0, 0.2, 1);
}

.hero-slide[data-effect="stripe"].active .slide-bg {
    clip-path: inset(0 0 0 0);
    /* Full Reveal */
}

/* 4. Circle Effect -> Iris Expand */
.hero-slide[data-effect="circle"] .slide-bg {
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide[data-effect="circle"].active .slide-bg {
    clip-path: circle(150% at 50% 50%);
}

/* 5. Diamond Effect -> Center Reveal */
.hero-slide[data-effect="diamond"] .slide-bg {
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    transition: clip-path 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide[data-effect="diamond"].active .slide-bg {
    clip-path: polygon(-50% -50%, 150% -50%, 150% 150%, -50% 150%);
}


/* Animated Floating Shapes (Decorative) */
.slider-shape {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: all 1s ease;
}

.slider-shape.shape-1 {
    width: 60vh;
    height: 60vh;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    border-color: rgba(212, 175, 55, 0.1);
}

.slider-shape.shape-2 {
    width: 300px;
    height: 300px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    top: 10%;
    right: 10%;
    transform: rotate(45deg) scale(0.5);
}

.slider-shape.shape-3 {
    width: 200px;
    height: 200px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 15%;
    left: 10%;
    background: rgba(212, 175, 55, 0.05);
    border: none;
    transform: scale(0);
}

.hero-slide.active .slider-shape {
    opacity: 1;
}

.hero-slide.active .slider-shape.shape-1 {
    transform: translate(-50%, -50%) scale(1.1);
    transition-duration: 20s;
}

.hero-slide.active .slider-shape.shape-2 {
    transform: rotate(225deg) scale(1.2);
    transition-duration: 20s;
}

.hero-slide.active .slider-shape.shape-3 {
    transform: scale(1.5) rotate(-10deg);
    transition-duration: 20s;
}


@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
    width: 100%;
}

/* Text Animations (Redesigned - CapCut Typography) */
.hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    /* Starting state handled by animation keyframes */
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #f0f0f0;
    font-weight: 500;
    opacity: 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 4px;
    backdrop-filter: blur(5px);
    display: inline-block;
}

.hero-content .hero-btns {
    opacity: 0;
}

/* Active State Text Animation */
.hero-slide.active .hero-content h1 {
    animation: textPopUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.3s;
}

.hero-slide.active .hero-content p {
    animation: textSlideUp 1s ease-out forwards 0.5s;
}

.hero-slide.active .hero-content .hero-btns {
    animation: elasticBtn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.7s;
}

@keyframes textPopUp {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(50px);
        filter: blur(10px);
        letter-spacing: -5px;
    }

    80% {
        letter-spacing: 0px;
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

@keyframes textSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
        clip-path: inset(0 0 100% 0);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes elasticBtn {
    0% {
        opacity: 0;
        transform: scaleY(0);
    }

    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Slider Navigation (Bottom Center Dots + Pause) */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.pause-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 0.9rem;
    width: 20px;
    /* fixed width to stop jumping */
    display: flex;
    justify-content: center;
    transition: color 0.3s ease;
}

.pause-btn:hover {
    color: var(--primary-color);
}

/* Navigation Arrows (Vertically Centered) */
.prev-slide,
.next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 15;
    backdrop-filter: blur(2px);
}

.prev-slide {
    left: 30px;
}

.next-slide {
    right: 30px;
}

.prev-slide:hover,
.next-slide:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

/* Responsive Font Sizes */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {

    /* Hero Text */
    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    /* Nav Arrows */
    .prev-slide {
        left: 10px;
    }

    .next-slide {
        right: 10px;
    }

    .prev-slide,
    .next-slide {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Dots */
    .slider-nav {
        bottom: 20px;
    }

    .nav-controls {
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    background: var(--primary-color);
    color: #000000;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 10px;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #000000;
    border-color: var(--primary-color);
}

/* Section Common */
/* Section Common - Compact Luxury */
section {
    padding: 60px 5%;
    /* Reduced padding */
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    /* Reduced margin */
    position: relative;
}

.section-title span {
    display: block;
    color: var(--primary-color);
    font-family: var(--font-script);
    /* Calligraphy */
    font-size: 2.5rem;
    /* Large Script */
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--text-color);
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-bottom: 0;
}

/* ::after underline removed — floral-divider component used instead */

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* Features / Services */
/* Features / Services */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 columns */
    gap: 30px;
    margin-top: 40px;
}

/* Tablet (2 cols) */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (1 col) */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Zoom Container for Square Images (About/Hero) */
.zoom-container {
    overflow: hidden;
    display: block;
}

.zoom-container img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.zoom-container:hover img {
    transform: scale(1.15);
}

/* Feature/Service Card Premium Styling */
.feature-card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 20px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.6);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.feature-card p {
    color: #ccc;
    font-size: 0.95rem;
}

/* Animated Border Effect for Images */
.animated-border-wrapper {
    position: relative;
    padding: 10px;
    display: inline-block;
    border-radius: 15px;
    /* Matches content radius */
    overflow: hidden;
}

.animated-border-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            rgba(212, 175, 55, 1),
            transparent 30%);
    animation: rotate-border 4s linear infinite;
    z-index: 0;
}

.animated-border-wrapper img,
.animated-border-content {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    /* Slight difference for inner content */
    background: var(--bg-color);
    /* Ensure background covers the rotating gradient center */
    display: block;
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Portfolio Preview */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    border: 3px solid transparent;
    transition: var(--transition);
}

.portfolio-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    /* Black overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    border: 1px solid var(--primary-color);
}

.portfolio-info {
    text-align: center;
    color: var(--primary-color);
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-info p {
    color: #fff;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

/* Testimonials */
.testimonials {
    background-color: var(--bg-color);
    text-align: center;
    border-top: 1px solid #222;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #ccc;
}

.customer-name {
    font-weight: bold;
    color: var(--primary-color);
}

/* Footer */
/* Footer Styles handled by .site-footer class now */

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: var(--primary-color) !important;
    /* Force Gold Tone */
    margin-bottom: 25px;
    font-size: 1.8rem;
    /* Larger for visibility */
    font-family: var(--font-heading);
    /* Cinzel (Same as Header/Section Titles) */
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    /* Subtle underline for emphasis */
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
    /* Ensure block for flex alignment if needed */
}

/* Fix Insta Feed Icon in Title */
.footer-column h3 i {
    color: var(--primary-color) !important;
    /* Force Gold */
    font-size: 1.4rem;
    margin-left: 10px;
    vertical-align: middle;
}

.footer-links li {
    margin-bottom: 15px;
    /* Restored spacing */
}

.footer-column p {
    color: #cccccc;
    /* Light Grey Text */
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color) !important;
    /* Force Gold Icon */
    transition: all 0.3s ease;
    font-size: 1.2rem;
    /* Slightly larger */
    z-index: 10;
    opacity: 1 !important;
}

.social-links a i {
    color: inherit;
    /* Ensure icon takes parent color */
}

.social-links a:hover {
    background: var(--primary-color);
    /* Gold Fill */
    color: #000;
    /* Black Icon */
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
}

.footer-links a {
    color: #aeaeae;
    display: flex;
    align-items: center;
    gap: 8px;
    /* Space between icon and text */
    transition: all 0.3s ease;
}

/* User Screenshot shows Chevron/Arrow before links */
.footer-links a::before {
    content: '\f054';
    /* FontAwesome Chevron Right */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    /* Slightly larger */
    color: var(--primary-color);
    /* Gold Default Visibility */
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links a:hover::before {
    color: var(--primary-color);
    /* Gold on hover */
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-info i {
    color: var(--primary-color) !important;
    /* Force Gold */
    font-size: 1.2rem;
    /* Make visible */
    margin-top: 5px;
    min-width: 30px;
    /* Align text properly */
}

.copyright p,
.designer p {
    color: var(--primary-color);
    /* Gold Text */
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.designer a {
    color: #fff;
    /* Link pop */
    font-weight: 600;
}

/* Responsive */
/* Portfolio Page Styles */
.portfolio-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.category-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ccc;
    position: relative;
    overflow: hidden;
}

.category-card:hover,
.category-card.active {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: none;
    /* Hidden by default for filtering */
    animation: fadeIn 0.5s ease forwards;
}

.gallery-item.show {
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--primary-color);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border: 3px solid var(--primary-color);
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 5px;
    transition: var(--transition);
    user-select: none;
}

.lightbox-nav:hover {
    background: var(--primary-color);
    color: #000;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--white);
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

/* Feature/Service Card Premium Styling (Modernized) */
.feature-card {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    z-index: 1;
    cursor: pointer;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    transition: all 0.5s ease;
    opacity: 0.8;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
}

.feature-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: brightness(0.9);
}

.feature-card:hover .feature-bg {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.feature-card:hover::after {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, rgba(212, 175, 55, 0.3) 100%);
}

.feature-content {
    position: relative;
    z-index: 2;
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-card:hover .feature-content {
    transform: translateY(0);
}

.feature-card h3 {
    margin-bottom: 8px;
    font-size: 1.8rem;
    color: var(--white);
    font-family: var(--font-heading);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    color: #e0e0e0;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-height: 0;
    line-height: 1.5;
}

.feature-card:hover p {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px;
}

/* Services Page Styles */
.page-banner {
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 2;
    color: var(--white);
}

.breadcrumb {
    margin-top: 15px;
    font-size: 1rem;
    color: #ccc;
}

.breadcrumb a {
    color: var(--primary-color);
}

.service-album-list {
    padding: 80px 5%;
}

.album-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
    align-items: center;
    gap: 50px;
}

.album-row:nth-child(even) {
    flex-direction: row-reverse;
}

.album-image {
    flex: 1 1 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--primary-color);
}

.album-image img {
    transition: transform 0.6s ease;
}

.album-image:hover img {
    transform: scale(1.1);
}

.album-details {
    flex: 1 1 400px;
}

.album-details h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.album-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #888;
    font-size: 0.9rem;
}

.album-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.album-desc {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
}

.album-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.album-btn:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Read More Button */
.read-more-btn {
    align-self: flex-start;
    margin-top: 15px;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card:hover .read-more-btn {
    opacity: 1;
    transform: translateY(0);
}

.read-more-btn:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* Testimonial Stacked Slider */
/* Testimonial Stacked Slider (Unique Leaf Design) */
/* Testimonial Stacked Slider (Dark Luxury) */
.testimonial-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 480px;
    /* Increased height for comfort */
    margin: 60px auto 0;
    perspective: 1000px;
}

.testimonial-card {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 380px;
    background: #000000;
    /* Pure Black Card */
    padding: 70px 40px 40px;
    /* Elegant rounded corners */
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    /* Gold Border */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    transform: translateZ(-200px) scale(0.85);
    pointer-events: none;
    overflow: visible;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateZ(0) scale(1);
    z-index: 10;
    pointer-events: all;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 20px rgba(212, 175, 55, 0.15);
    /* Gold Glow */
    border-color: var(--primary-color);
}

.testimonial-card.prev,
.testimonial-card.next {
    opacity: 0.3;
    z-index: 5;
    background: #0a0a0a;
    border-color: rgba(255, 255, 255, 0.05);
}

.testimonial-card.prev {
    transform: translateX(-120px) translateZ(-150px) rotateY(5deg);
}

.testimonial-card.next {
    transform: translateX(120px) translateZ(-150px) rotateY(-5deg);
}

/* Solid Gold Quote Icon */
.quote-icon-bg {
    position: absolute;
    top: -25px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    /* Gold */
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    z-index: 5;
    border: 4px solid #000;
    /* Border to merge with card */
}

/* Floating Client Image */
.client-img-wrapper {
    position: absolute;
    top: -50px;
    right: 40px;
    /* Moved to Right */
    left: auto;
    /* Reset Left */
    transform: none;
    /* Reset transform */
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 5px;
    background: var(--bg-color);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.client-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

/* Card Content Adjustments */
.card-content {
    position: relative;
    z-index: 2;
    /* Above quote icon */
    margin-top: 10px;
    text-align: left;
    /* Align text left for variety */
    width: 100%;
    padding: 0 20px;
}

.stars {
    color: var(--primary-color);
    /* Gold Stars */
    margin-bottom: 20px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-align: center;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.customer-name {
    color: var(--primary-color);
    /* Gold Name */
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.role {
    display: block;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Testimonial Nav - Centered Bottom (Matches Event Albums) */
.testimonial-nav {
    display: flex;
    justify-content: center;
    /* Center align */
    gap: 20px;
    margin-top: 40px;
    /* Space below cards */
    position: relative;
    /* Not absolute */
    top: auto;
    transform: none;
    padding: 0;
    pointer-events: auto;
    width: auto;
    z-index: 20;
}

.nav-btn {
    pointer-events: auto;
    background: #1f1f1f;
    /* Dark Grey Background */
    border: 1px solid #333;
    color: var(--primary-color);
    width: 45px;
    /* Match album-nav size */
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    backdrop-filter: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.nav-btn.prev-btn,
.nav-btn.next-btn {
    transform: none;
    /* Reset transform */
}

.nav-btn:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Reset unique hover transforms */
.nav-btn.prev-btn:hover,
.nav-btn.next-btn:hover {
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .testimonial-card.prev,
    .testimonial-card.next {
        opacity: 0;
        /* Hide side cards on mobile */
    }

    .testimonial-container {
        height: 450px;
        /* More height for text wrap */
    }

    .testimonial-card {
        width: 100%;
        padding: 50px 20px 30px;
    }
}

/* Loader Updates */
/* Creative Loader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-content {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo-new {
    width: 200px;
    /* Adjust size based on logo aspect ratio */
    height: auto;
    animation: breath 2.5s infinite ease-in-out;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
    position: relative;
    z-index: 2;
}

.loader-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-top-color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 3s linear infinite;
    opacity: 0.7;
}

.loader-ring::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid transparent;
    border-left-color: var(--secondary-color);
    /* Green accent */
    border-right-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin-reverse 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes breath {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
    }
}

/* Royal Footer Styles - Dark Luxury */
.site-footer {
    background: #000000;
    /* Pure Black to match */
    color: #aeaeae;
    padding: 0;
    margin-top: 0;
    /* Remove top margin if connected to dark section */
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    /* Subtle Gold Line */
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
}

.site-footer::before {
    display: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
    /* 4 Columns with Insta */
    gap: 30px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 5% 30px 5%;
    /* Reduced bottom padding */
    border-bottom: none;
    /* Removed to use footer-bottom border instead */
}

.footer-column h3 {
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    /* Slightly smaller for compact look */
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column h3::after {
    display: none;
}

.footer-column p {
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--secondary-color);
    color: #000;
    transform: translateY(-2px);
}

/* Links List */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--secondary-color);
    font-size: 0.7rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 3px;
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: #bbb;
    font-size: 0.9rem;
}


.contact-info li i {
    color: #fff !important;
    background-color: var(--primary-color) !important;
    margin-right: 15px;
    font-size: 1rem;
    /* Slightly reduced icon size for better fit */
    min-width: 35px;
    /* Ensure width is maintained */
    min-height: 35px;
    /* Ensure height is maintained */
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(212, 175, 55, 0.3);
    line-height: normal;
    /* Reset line-height */
}

/* Instagram Feed Grid */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-top: 5px;
}

.insta-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1/1;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-overlay i {
    color: #fff;
    font-size: 1.2rem;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

/* Footer Bottom with Perfect Border */
.footer-bottom {
    background-color: #000000;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #777;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    margin-top: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-bottom p {
    margin: 0;
}


@media (max-width: 1024px) {
    .footer-content {
        padding: 0 5% 20px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 5% 30px;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
        text-align: center;
    }

    .contact-info i {
        margin-left: 0;
    }

    .footer-links a {
        justify-content: center;
    }

    .insta-grid {
        justify-content: center;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        width: 100%;
    }
}

/* Horizontal Footer Services - Attractive Badge Style */
.footer-services {
    background: var(--primary-color);
    /* Yellow/Gold Background */
    padding: 30px 5%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 50px;
    /* Lift up effect */
}

.footer-services ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-services li a {
    color: #ffffff;
    /* White Font */
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: #000000;
    /* Black Badges */
    padding: 8px 20px;
    border-radius: 50px;
    /* Badge Shape */
    border: 1px solid #000000;
    display: inline-block;
    font-weight: 500;
}

.footer-services li a:hover {
    background: #333333;
    /* Darker Grey on Hover */
    color: #ffffff;
    border-color: #333333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-services {
        padding: 25px 5%;
    }

    .footer-services ul {
        gap: 10px;
    }

    .footer-services li a {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
}

/* ============================================================
   CRITICAL OVERRIDES - Professional Design v2
   ============================================================ */

/* Gallery items: show by default on detail pages
   (portfolio.html still controls them via JS adding .show) */
.album-grid-section .gallery-item,
.gallery-grid-section .gallery-item {
    display: block;
}

/* Services section background override */
section.services,
.services-section-wrap {
    background: #f8f6f1 !important;
}

/* Feature card: simplified, remove AOS sliding content */
.feature-card p {
    opacity: 1 !important;
    transform: translateY(0) !important;
    max-height: none !important;
}

.feature-content {
    transform: translateY(0) !important;
}

.read-more-btn {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Section title floral divider */
.floral-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 14px auto 0;
    width: fit-content;
}

.floral-divider .line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37);
}

.floral-divider .line.right {
    background: linear-gradient(90deg, #D4AF37, transparent);
}

.floral-divider .flower-icon {
    color: #D4AF37;
    font-size: 1.1rem;
}

/* Loader ring */
.loader-content {
    text-align: center;
}

/* Detail page gallery fix: ensure all gallery photos are visible */
#detailGrid .gallery-item {
    display: block !important;
}

/* Fix Bootstrap container inside sections */
.container-xl {
    padding-left: 5%;
    padding-right: 5%;
    max-width: 100%;
}

/* Mobile: stack testimonial cards */
@media (max-width: 767px) {
    .testimonial-container {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .testimonial-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none !important;
        opacity: 0;
        height: auto;
        min-height: 320px;
        margin-bottom: 20px;
        display: none;
    }

    .testimonial-card.active {
        opacity: 1;
        display: flex;
    }

    .client-img-wrapper {
        top: -40px;
        right: 20px;
        width: 70px;
        height: 70px;
    }

    .quote-icon-bg {
        top: -20px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .testimonial-card {
        padding: 50px 20px 30px;
    }
}