/* ============================================================
   Albert Pixels Photo Studio - Main Stylesheet
   Premium Black, White & Gold Theme
   ============================================================ */

/* CSS Variables */
:root {
    --gold: #D4AF37;
    --gold-light: #F4E4A6;
    --gold-dark: #B8960C;
    --black: #1a1a1a;
    --black-light: #2d2d2d;
    --black-lighter: #3d3d3d;
    --white: #ffffff;
    --off-white: #f8f8f8;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.2);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --font-primary: 'Playfair Display', Georgia, serif;
    --font-secondary: 'Poppins', -apple-system, sans-serif;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --black: #f8f8f8;
    --black-light: #e9ecef;
    --black-lighter: #dee2e6;
    --white: #1a1a1a;
    --off-white: #2d2d2d;
    --gray: #adb5bd;
    --gray-light: #3d3d3d;
}

/* ============================================================
   BASE STYLES
   ============================================================ */

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

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

body {
    font-family: var(--font-secondary);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
}

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

a:hover {
    color: var(--gold-dark);
}

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

/* Performance: Optimize images with lazy loading */
img[loading="lazy"] {
    transition: opacity 0.3s ease;
}

img[loading="lazy"][src] {
    opacity: 1;
}

::selection {
    background-color: var(--gold);
    color: var(--white);
}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ============================================================
   ACCESSIBILITY & SEO
   Skip-to-content link — required for WCAG 2.1 AA / Core Web Vitals
   accessibility score (Google uses Lighthouse accessibility score)
   ============================================================ */

/* SEO: Skip link is invisible until focused, then appears for keyboard users */
.skip-link {
    position: absolute;
    top: -100px;
    left: 10px;
    background: var(--gold);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10000;
    transition: top 0.2s ease;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--black);
    outline-offset: 2px;
}

/* SEO: Visible focus ring for keyboard navigation (WCAG 2.1 AA) */
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* SEO: main landmark — defines page content area for assistive tech */
main {
    min-height: 50vh;
}



/* ============================================================
   NAVIGATION
   ============================================================ */

.navbar {
    padding: 15px 0;
    transition: var(--transition);
    /* Use a fixed dark background so the navbar remains visible on initial load
       even if the site theme variables are inverted by dark mode */
    background: #1a1a1a;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 45px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.navbar-brand span {
    color: var(--gold);
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 8px 16px !important;
    position: relative;
    text-transform: uppercase;
    font-size: 0.8rem;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 32px);
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-link.active {
    color: var(--gold) !important;
}

/* Dark mode toggle */
.dark-mode-toggle {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.dark-mode-toggle:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* Mobile Menu */
.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO SLIDER
   ============================================================ */

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.45) 32%,
        rgba(0, 0, 0, 0.15) 62%,
        rgba(0, 0, 0, 0.05) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    left: 50%;
    bottom: clamp(72px, 10vh, 96px);
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: clamp(22px, 3.5vw, 36px) clamp(24px, 4vw, 40px);
    width: min(780px, calc(100% - 48px));
    background: rgba(0, 0, 0, 0.48);
    border-top: 3px solid var(--gold);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.3);
}

.hero-content .subtitle {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: clamp(0.72rem, 1.6vw, 0.82rem);
    font-weight: 600;
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.18);
    border: 1px solid rgba(212, 175, 55, 0.55);
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-shadow: none;
}

.hero-content h1,
.hero-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.9rem, 4.8vw, 3.6rem);
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.18;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 6px 24px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-family: var(--font-secondary);
    font-size: clamp(0.92rem, 1.8vw, 1.08rem);
    max-width: 620px;
    margin: 0 auto 22px;
    color: #f2f2f2 !important;
    line-height: 1.65;
    font-weight: 400;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Animate text only when slide is active */
.hero-slide:not(.active) .hero-content .subtitle,
.hero-slide:not(.active) .hero-content h1,
.hero-slide:not(.active) .hero-content h2,
.hero-slide:not(.active) .hero-content p,
.hero-slide:not(.active) .hero-content .hero-buttons {
    opacity: 0;
    transform: translateY(22px);
    animation: none !important;
}

.hero-slide.active .hero-content .subtitle {
    animation: heroTextIn 0.85s ease forwards 0.25s;
}

.hero-slide.active .hero-content h1,
.hero-slide.active .hero-content h2 {
    animation: heroTextIn 0.85s ease forwards 0.4s;
}

.hero-slide.active .hero-content p {
    animation: heroTextIn 0.85s ease forwards 0.55s;
}

.hero-slide.active .hero-content .hero-buttons {
    animation: heroTextIn 0.85s ease forwards 0.7s;
}

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

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--gold);
    border-color: var(--white);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

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

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--white);
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    padding: 14px 36px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

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

.btn-sm {
    padding: 10px 24px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 16px 48px;
    font-size: 1rem;
}

/* ============================================================
   SECTION STYLES
   ============================================================ */

.section-padding {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 1.05rem;
}

.section-label {
    font-family: var(--font-primary);
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: block;
}

/* ============================================================
   SERVICES CARDS
   ============================================================ */

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-light);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

.service-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.service-card .card-icon {
    position: absolute;
    bottom: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.service-card .card-body {
    padding: 45px 25px 25px;
}

.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

 

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 24px;
    border: 1px solid var(--gray-light);
    background: var(--white);
    color: var(--black);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

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

.gallery-overlay h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-overlay span {
    color: var(--gold);
    font-size: 0.85rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

.gallery-item:hover .gallery-overlay h5,
.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

.gallery-overlay .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.gallery-item:hover .zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10000;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: var(--gold);
    color: var(--black);
}

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

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.testimonial-card .stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1rem;
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.testimonial-card .client-info h5 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.testimonial-card .client-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
}

.about-image .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--black);
    padding: 25px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-image .experience-badge h3 {
    font-size: 2.5rem;
    margin: 0;
    line-height: 1;
}

.about-image .experience-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stats Counter */
.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--off-white);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.stat-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.stat-item .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.5rem;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.blog-card .blog-img {
    height: 220px;
    overflow: hidden;
}

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

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

.blog-card .blog-body {
    padding: 25px;
}

.blog-card .blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: var(--gray);
}

.blog-card .blog-meta i {
    color: var(--gold);
    margin-right: 5px;
}

.blog-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* ============================================================
   BOOKING FORM
   ============================================================ */

.booking-form {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-light);
}

.form-control, .form-select {
    padding: 14px 20px;
    border: 1px solid var(--gray-light);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--black);
}

.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    background: var(--white);
    color: var(--black);
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--black);
}

.form-floating > .form-control,
.form-floating > .form-select {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--off-white);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.contact-info-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
    transform: translateX(5px);
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

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

.contact-info-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Map Container */
.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.accordion-item {
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius) !important;
    margin-bottom: 15px;
    overflow: hidden;
    background: var(--white);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--black);
    background: var(--white);
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--off-white);
    color: var(--gold);
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D4AF37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 25px;
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================================
   FOOTER - LIGHT VERSION (Based on banner)
   ============================================================ */

.footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--black);
    padding: 80px 0 0;
    border-top: 3px solid var(--gold);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.footer h4 {
    color: var(--black);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer a {
    color: var(--gray);
    transition: var(--transition);
    display: block;
    padding: 5px 0;
    font-size: 0.9rem;
}

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

.footer .footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer .footer-logo img {
    width: 100%;
    border-radius: 50%;
    border: 3px solid var(--gold);
}

.footer .social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer .social-links a {
    width: 42px;
    height: 42px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1rem;
    transition: var(--transition);
    padding: 0;
}

.footer .social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    padding-left: 0;
}

.footer .contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 0.9rem;
}

.footer .contact-list li i {
    color: var(--gold);
    margin-top: 4px;
    min-width: 20px;
}

.footer .contact-list li a {
    color: var(--gray);
    display: inline;
    padding: 0;
}

.footer .contact-list li a:hover {
    color: var(--gold);
    padding-left: 0;
}

/* Footer Banner Style (Light version of uploaded banner) */
.footer-banner {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 50%, #e9ecef 100%);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin-top: 30px;
    border: 2px solid var(--gold);
    text-align: center;
}

.footer-banner h3 {
    font-family: var(--font-primary);
    color: var(--black);
    margin-bottom: 15px;
}

.footer-banner .services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-banner .services-list span {
    background: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--black);
    border: 1px solid var(--gold);
}

.footer-banner .contact-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.footer-banner .contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-banner .contact-badge.phone {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.footer-banner .contact-badge.phone-2 {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.footer-banner .contact-badge.room {
    background: #fff3cd;
    color: #856404;
    border: 2px solid #ffeeba;
}

.footer-banner .contact-badge.social {
    background: #e2e3f3;
    color: #383d7a;
    border: 2px solid #d6d8e7;
}

.footer-bottom {
    background: var(--black);
    color: rgba(255,255,255,0.6);
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--gold);
    display: inline;
    padding: 0;
}

.footer-bottom a:hover {
    color: var(--gold-light);
    padding-left: 0;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    color: var(--white);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float .tooltip-text {
    position: absolute;
    right: 70px;
    background: var(--black);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */

.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    width: 45px;
    height: 45px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */

.newsletter-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-section h2 {
    color: var(--white);
}

.newsletter-section p {
    color: rgba(255,255,255,0.7);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.15);
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* ============================================================
   PAGE HEADER
   ============================================================ */

.page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--gold-light);
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--gold);
}

/* ============================================================
   ALERTS
   ============================================================ */

.alert {
    border-radius: var(--border-radius);
    padding: 15px 20px;
    border: none;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
}

/* ============================================================
   PAGINATION
   ============================================================ */

.pagination .page-link {
    color: var(--black);
    border: 1px solid var(--gray-light);
    padding: 10px 18px;
    font-weight: 500;
}

.pagination .page-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.pagination .page-item.active .page-link {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* ============================================================
   LOADING / SKELETON
   ============================================================ */

.skeleton {
    background: linear-gradient(90deg, var(--gray-light) 25%, #f0f0f0 50%, var(--gray-light) 75%);
    background-size: 2000px 100%;
    animation: shimmer 2s infinite linear;
    border-radius: var(--border-radius);
}

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

/* Tablet and below */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

    .navbar-collapse {
        background: rgba(26, 26, 26, 0.98);
        padding: 20px;
        border-radius: var(--border-radius);
        margin-top: 15px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .hero-content {
        bottom: 68px;
        width: calc(100% - 28px);
        padding: 20px 22px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 1.85rem;
    }

    .about-image .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }

    .booking-form {
        padding: 30px 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    /* Service cards responsive */
    .service-card .card-img-wrapper {
        height: 180px;
    }

    .service-card .card-body {
        padding: 35px 20px 20px;
    }

    .service-card .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: -20px;
        left: 20px;
    }
}

/* Mobile landscape and portrait */
@media (max-width: 767px) {
    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }

    .hero-content {
        bottom: 64px;
        background: rgba(0, 0, 0, 0.55);
        padding: 18px 20px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 1.55rem;
        margin-bottom: 12px;
    }

    .hero-content .subtitle {
        font-size: 0.68rem;
        padding: 6px 12px;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-arrow.prev { left: 15px; }
    .slider-arrow.next { right: 15px; }

    .slider-controls {
        bottom: 30px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top {
        bottom: 20px;
        left: 20px;
    }

    .footer-banner .contact-badges {
        flex-direction: column;
        align-items: center;
    }

    .footer-banner .contact-badge {
        width: 100%;
        justify-content: center;
    }

    /* Gallery responsive */
    .gallery-item img {
        height: 250px;
    }

    /* Testimonials responsive */
    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-card .client-info img {
        width: 50px;
        height: 50px;
    }

    /* Blog cards responsive */
    .blog-card .blog-img {
        height: 180px;
    }

    .blog-card .blog-body {
        padding: 20px;
    }

    /* Contact info responsive */
    .contact-info-item {
        padding: 20px;
    }

    .contact-info-item .icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    /* Map responsive */
    .map-container iframe {
        height: 300px;
    }

    /* Form responsive */
    .form-control, .form-select {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    /* Footer responsive */
    .footer {
        padding: 60px 0 0;
    }

    .footer h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .footer .footer-logo {
        max-width: 150px;
    }
}

/* Small mobile phones */
@media (max-width: 575px) {
    html {
        font-size: 14px;
    }

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

    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .btn-lg {
        padding: 14px 32px;
        font-size: 0.9rem;
    }

    .btn-sm {
        padding: 8px 20px;
        font-size: 0.75rem;
    }

    /* Hero responsive */
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }

    .hero-content {
        bottom: 50px;
        padding: 15px 18px;
        width: calc(100% - 24px);
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 1.35rem;
    }

    .hero-content .subtitle {
        font-size: 0.6rem;
        padding: 5px 10px;
    }

    .hero-content p {
        font-size: 0.8rem;
        max-width: 100%;
    }

    .hero-buttons {
        gap: 10px;
    }

    /* Section headers responsive */
    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .section-label {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    /* Service cards responsive */
    .service-card .card-img-wrapper {
        height: 160px;
    }

    .service-card .card-body {
        padding: 30px 15px 15px;
    }

    .service-card h4 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .service-card .card-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        bottom: -18px;
        left: 15px;
    }

    /* Gallery responsive */
    .gallery-item {
        margin-bottom: 15px;
    }

    .gallery-item img {
        height: 200px;
    }

    .gallery-overlay {
        padding: 15px;
    }

    .gallery-overlay h5 {
        font-size: 0.95rem;
    }

    .gallery-overlay span {
        font-size: 0.75rem;
    }

    /* Testimonials responsive */
    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-card p {
        font-size: 0.9rem;
    }

    .testimonial-card .client-info img {
        width: 45px;
        height: 45px;
    }

    .testimonial-card .client-info h5 {
        font-size: 0.9rem;
    }

    .testimonial-card .client-info span {
        font-size: 0.8rem;
    }

    /* Blog cards responsive */
    .blog-card .blog-img {
        height: 160px;
    }

    .blog-card .blog-body {
        padding: 18px;
    }

    .blog-card h4 {
        font-size: 1rem;
    }

    .blog-card p {
        font-size: 0.85rem;
    }

    /* Page header responsive */
    .page-header {
        height: 250px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    /* Stats responsive */
    .stat-item {
        padding: 25px 15px;
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }

    .stat-item span {
        font-size: 0.8rem;
    }

    /* Contact info responsive */
    .contact-info-item {
        padding: 18px;
        gap: 15px;
    }

    .contact-info-item h5 {
        font-size: 0.9rem;
    }

    .contact-info-item p {
        font-size: 0.85rem;
    }

    /* Map responsive */
    .map-container iframe {
        height: 250px;
    }

    /* Form responsive */
    .booking-form {
        padding: 25px 15px;
    }

    .form-control, .form-select {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .form-label {
        font-size: 0.85rem;
    }

    /* Footer responsive */
    .footer {
        padding: 50px 0 0;
    }

    .footer h4 {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .footer p {
        font-size: 0.85rem;
    }

    .footer a {
        font-size: 0.85rem;
    }

    .footer .footer-logo {
        max-width: 130px;
        margin-bottom: 15px;
    }

    .footer .social-links a {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .footer-banner {
        padding: 20px;
    }

    .footer-banner h3 {
        font-size: 1.1rem;
    }

    .footer-banner .services-list span {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .footer-banner .contact-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    /* Lightbox responsive */
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2rem;
    }

    .lightbox-nav {
        padding: 10px;
        font-size: 1.5rem;
    }

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

    /* WhatsApp button responsive */
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 15px;
        right: 15px;
    }

    /* Scroll to top responsive */
    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 15px;
        left: 15px;
    }

    /* Newsletter responsive */
    .newsletter-section {
        padding: 60px 0;
    }

    /* Accordion responsive */
    .accordion-button {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    .accordion-body {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
}

/* Extra small devices (very old phones) */
@media (max-width: 360px) {
    html {
        font-size: 13px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
}

/* Large tablets and small laptops */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-content {
        width: min(700px, calc(100% - 40px));
    }

    .service-card .card-img-wrapper {
        height: 200px;
    }

    .gallery-item img {
        height: 280px;
    }
}

/* Large desktops and ultra-wide screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-content {
        width: min(820px, calc(100% - 60px));
    }

    .section-padding {
        padding: 120px 0;
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */

@media print {
    .navbar, .whatsapp-float, .scroll-top, .footer, .newsletter-section {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }
}
