/* ==========================================================================
   Pushpa Interiors - Design System & Custom Styles
   Colors: Modern Deep Charcoal, Champagne Bronze, and Warm Linen
   ========================================================================== */

/* Variables */
:root {
    --primary-dark: #121212;
    --primary-dark-rgb: 18, 18, 18;
    --primary-dark-light: #222222;
    --accent-bronze: #c5a880;
    --accent-bronze-rgb: 197, 168, 128;
    --bronze-dark: #9f845d;
    --bronze-light: #e5dac9;
    --linen-bg: #FAF9F6;
    --linen-alt: #f3efe9;
    --charcoal: #1C1B1A;
    --text-muted: #6e6c68;
    --white: #ffffff;
    --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', 'Inter', system-ui, -apple-system, sans-serif;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.06);
    --bronze-shadow: 0 0 15px rgba(197, 168, 128, 0.2);
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--linen-alt);
}

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

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

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

ul {
    list-style: none;
}

/* Section Common Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bronze-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.divider-gold {
    width: 80px;
    height: 1px;
    background: var(--accent-bronze);
    margin: 12px auto 0;
    position: relative;
}

.divider-gold::before {
    content: '\f111'; /* Clean solid dot representing minimal design icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--linen-bg);
    padding: 0 8px;
    color: var(--accent-bronze);
    font-size: 8px;
}

.services-section .divider-gold::before {
    background-color: var(--linen-alt);
}

.why-choose-us .divider-gold::before {
    background-color: var(--primary-dark);
}

/* Header & Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Scroll Active Header State */
.navbar.scrolled {
    background-color: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    color: var(--accent-bronze);
    font-size: 1.6rem;
    transition: var(--transition);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-bronze);
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.navbar.scrolled .logo-text {
    color: var(--white);
    text-shadow: none;
}

.navbar.scrolled .brand-logo:hover .logo-text {
    color: var(--accent-bronze);
}

.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 0;
    position: relative;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: none;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--accent-bronze) !important;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--accent-bronze);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('assets/images/hero.png') no-repeat center center/cover;
    color: var(--white);
    padding-top: 60px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(34, 34, 34, 0.6) 50%, rgba(18, 18, 18, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 24px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-bronze);
    letter-spacing: 6px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-style: italic;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-line {
    width: 120px;
    height: 1px;
    background-color: var(--accent-bronze);
    margin: 20px auto;
    box-shadow: var(--bronze-shadow);
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--bronze-light);
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

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

/* Button System */
.btn {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px 36px;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent-bronze);
    color: var(--primary-dark);
    border: 1px solid var(--accent-bronze);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.15);
}

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

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

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
}

.scroll-indicator .mouse {
    width: 20px;
    height: 35px;
    border: 1.5px solid var(--white);
    border-radius: 10px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 3px;
    height: 6px;
    background-color: var(--accent-bronze);
    border-radius: 1.5px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s infinite;
}

.scroll-indicator .arrow {
    color: var(--white);
    font-size: 0.8rem;
    animation: bounce 1.8s infinite;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--linen-bg);
}

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

.about-text-content .section-title {
    text-align: left;
}

.about-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: justify;
}

.about-highlights {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
}

.highlight-num {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--accent-bronze);
    line-height: 1.1;
}

.highlight-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
}

/* Frame Border styling for About Image */
.about-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.frame-border-outer {
    border: 1px solid var(--accent-bronze);
    padding: 12px;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: relative;
    border-radius: 2px;
}

.frame-border-outer::before, .frame-border-outer::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--primary-dark);
    border-style: solid;
    z-index: 2;
}

.frame-border-outer::before {
    top: -3px;
    left: -3px;
    border-width: 1px 0 0 1px;
}

.frame-border-outer::after {
    bottom: -3px;
    right: -3px;
    border-width: 0 1px 1px 0;
}

.frame-border-inner {
    overflow: hidden;
}

.about-image {
    transition: var(--transition);
}

.frame-border-outer:hover .about-image {
    transform: scale(1.03);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--linen-alt);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(197, 168, 128, 0.1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--accent-bronze);
}

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

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .card-overlay {
    opacity: 1;
}

.card-btn {
    background-color: var(--accent-bronze);
    color: var(--primary-dark);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 24px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(15px);
    transition: var(--transition);
}

.service-card:hover .card-btn {
    transform: translateY(0);
}

.card-btn:hover {
    background-color: var(--white);
    color: var(--primary-dark);
}

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--linen-bg);
}

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

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid rgba(197, 168, 128, 0.08);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.95) 0%, rgba(18, 18, 18, 0.3) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

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

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

.overlay-info {
    color: var(--white);
    transform: translateY(15px);
    transition: var(--transition);
    width: 100%;
    position: relative;
}

.gallery-item:hover .overlay-info {
    transform: translateY(0);
}

.overlay-info h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--accent-bronze);
    margin-bottom: 4px;
    font-weight: 600;
}

.overlay-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.view-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    color: var(--accent-bronze);
    font-size: 1.1rem;
    opacity: 0.7;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: var(--primary-dark);
    color: var(--white);
    position: relative;
}

.why-choose-us .section-title {
    color: var(--white);
}

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

.why-card {
    text-align: center;
    padding: 35px 24px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 2px;
    transition: var(--transition);
}

.why-card:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-bronze);
    transform: translateY(-4px);
}

.why-icon-box {
    width: 65px;
    height: 65px;
    margin: 0 auto 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--accent-bronze);
    border-radius: 50%;
    padding: 16px;
    background-color: rgba(197, 168, 128, 0.05);
    transition: var(--transition);
}

.why-card:hover .why-icon-box {
    background-color: var(--accent-bronze);
    box-shadow: var(--bronze-shadow);
}

.why-svg-icon {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.why-card:hover .why-svg-icon path,
.why-card:hover .why-svg-icon circle,
.why-card:hover .why-svg-icon rect,
.why-card:hover .why-svg-icon line {
    stroke: var(--primary-dark);
}

.why-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--accent-bronze);
    margin-bottom: 12px;
    font-weight: 600;
}

.why-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Contact & Location Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--linen-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    background-color: var(--white);
    border-radius: 2px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(197, 168, 128, 0.1);
    overflow: hidden;
}

.contact-info {
    padding: 50px;
}

.contact-heading {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.detail-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.detail-icon {
    width: 42px;
    height: 42px;
    background-color: var(--linen-alt);
    border: 1px solid var(--accent-bronze);
    color: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
}

.detail-text strong {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--primary-dark);
    display: block;
    margin-bottom: 3px;
}

.detail-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.detail-text a:hover {
    color: var(--accent-bronze);
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    font-family: var(--font-sans);
    padding: 12px 16px;
    border: 1px solid var(--linen-alt);
    background-color: #fafafa;
    border-radius: 2px;
    font-size: 0.85rem;
    color: var(--charcoal);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--accent-bronze);
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.08);
}

.btn-whatsapp-submit {
    background-color: #128c7e;
    color: var(--white);
    border: none;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(18, 140, 126, 0.15);
    transition: var(--transition);
}

.btn-whatsapp-submit:hover {
    background-color: #0b5e54;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 94, 84, 0.25);
}

/* Map Column */
.contact-map {
    height: 100%;
    min-height: 450px;
    border-left: 1px solid rgba(197, 168, 128, 0.1);
}

/* Footer styling */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 1px solid var(--accent-bronze);
}

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

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--accent-bronze);
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 24px;
    max-width: 350px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 168, 128, 0.2);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 0.85rem;
}

.footer-socials a:hover {
    background-color: var(--accent-bronze);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--bronze-shadow);
}

.footer-links h4, .footer-hours h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--accent-bronze);
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-links ul {
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-flow: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

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

.footer-hours p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.store-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    background-color: rgba(37, 211, 102, 0.1);
    color: #25d366;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulse 1.5s infinite;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

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

.action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.call-action {
    background-color: var(--accent-bronze);
    color: var(--primary-dark);
}

.call-action:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    transform: scale(1.08);
}

.wa-action {
    background-color: #25d366;
}

.wa-action:hover {
    background-color: #128c7e;
    transform: scale(1.08);
}

/* Lightbox Modal styling */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.98);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border: 1px solid var(--accent-bronze);
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: var(--accent-bronze);
    font-family: var(--font-serif);
    margin-top: 15px;
    font-size: 1.15rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent-bronze);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 168, 128, 0.2);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background-color: var(--accent-bronze);
    color: var(--primary-dark);
    box-shadow: var(--bronze-shadow);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/* Animations */
@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes scrollMouse {
    0% {
        top: 5px;
        opacity: 1;
    }
    50% {
        top: 16px;
        opacity: 0.3;
    }
    100% {
        top: 5px;
        opacity: 1;
    }
}

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

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

/* Reveal Animations on Scroll */
.animate-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Media Queries (Mobile Responsive Design) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
    }
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-img-container {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    .about-text-content .section-title {
        text-align: center;
    }
    .about-highlights {
        justify-content: center;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-map {
        min-height: 350px;
        border-left: none;
        border-top: 1px solid rgba(197, 168, 128, 0.1);
    }
    .footer-wrapper {
        grid-template-columns: 1.2fr 1fr;
    }
    .footer-hours {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    /* Navbar Hamburger */
    .menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--primary-dark);
        border-left: 1px solid var(--accent-bronze);
        padding: 100px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
    }
    .nav-link {
        font-size: 1rem;
    }
    /* Hamburger Transform to X */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    .hero-subtitle {
        font-size: 1.15rem;
    }
    .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 280px;
    }
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-hours {
        grid-column: span 1;
    }
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    .lightbox-prev {
        left: 15px;
    }
    .lightbox-next {
        right: 15px;
    }
    .lightbox-close {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-info {
        padding: 30px 20px;
    }
    .quick-actions {
        bottom: 20px;
        right: 20px;
    }
    .action-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}
