* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --gold: #B8860B;
    --gold-light: #D4AF37;
    --white: #ffffff;
    --gray: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    background: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 8px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.5);
    transition: all 0.4s ease;
    height: 90px;
    overflow: visible;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 2rem 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
    max-height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: auto;
    padding-right: 2rem;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 0.4s ease;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a:hover::before {
    width: 100%;
}

#hero, #services, #gallery, #contact {
    scroll-margin-top: 80px;
}

.nav-menu a:focus,
.nav-menu a:focus-visible {
    color: var(--gold);
    outline: none;
}

.nav-menu a:focus::before,
.nav-menu a:focus-visible::before {
    width: 100%;
}

/* Hero Section */
.hero {
    margin-top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.6) contrast(1.1);
    animation: videoFade 1s ease-in-out;
}

@keyframes videoFade {
    0% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-line {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 1rem auto;
    box-shadow: 0 0 10px var(--gold), 0 0 20px rgba(184, 134, 11, 0.5);
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--gold);
    margin: 0;
    line-height: 1;
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.hero-tagline {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--gold-light);
    text-transform: uppercase;
}

/* Hero CTA Button */
.hero-cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    transition: all 0.4s ease;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

.hero-cta:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.5);
    transform: translateY(-2px);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.12);
    border: 1px solid rgba(184, 134, 11, 0.2);
    color: var(--gold);
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.social-icon:hover,
.social-icon:focus-visible {
    transform: translateY(-2px);
    background: rgba(184, 134, 11, 0.25);
    color: var(--white);
}

.social-icon svg {
    width: 1.2rem;
    height: 1.2rem;
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    background: rgba(255, 215, 0, 0.18);
    color: var(--gold);
    border-radius: 40%;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.whatsapp-icon svg {
    stroke: currentColor;
    width: 1.2rem;
    height: 1.2rem;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: var(--gold);
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.45);
    border-radius: 999px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 0;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* Custom scrollbar */
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

body::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 999px;
    border: 2px solid rgba(10, 10, 10, 0.95);
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Quote Section */
.quote-section {
    padding: 4.5rem 2rem;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.98) 0%, rgba(10, 10, 10, 1) 100%);
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    box-shadow: 0 0 15px var(--gold);
}

.quote-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quote-icon {
    font-size: 2.8rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.8rem;
    opacity: 0.9;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    letter-spacing: 1px;
    margin: 0 0 1.5rem 0;
    max-width: 100%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.quote-author-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.quote-line {
    width: 45px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.quote-line.right {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.quote-author {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--gold-light);
    font-weight: 400;
    text-transform: uppercase;
}

/* Services Section */
.services {
    padding: 3rem 0;
    background: var(--gray);
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 4rem;
}

.services-number {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.services-title {
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
}

.services-line {
    width: 100px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
}

.services-layout {
    max-width: 1600px;
    margin: 0 auto;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse > * {
    direction: ltr;
}

.service-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.6s;
}

.service-item:hover .service-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.6s;
}

.service-item:hover .service-overlay {
    background: rgba(10, 10, 10, 0.2);
}

.service-number {
    font-size: 3.5rem;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    opacity: 0.3;
}

.service-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    background: var(--black);
}

.service-info h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.service-info p {
    font-size: 0.85rem;
    color: var(--white);
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Gallery Section */
.gallery {
    padding: 3rem 4rem;
    background: var(--black);
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-number {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.gallery-title {
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
}

.gallery-line {
    width: 100px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
}

.gallery-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    grid-auto-rows: 240px;
    grid-auto-flow: dense;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 0;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.6s;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.owner-image-wrap {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 420px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.owner-image-wrap:hover {
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

.owner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease-in-out, transform 0.5s ease-in-out;
    display: block;
}

.owner-image-wrap:hover .owner-image,
.owner-image:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 3rem 0;
    background: var(--gray);
    border-top: 1px solid var(--gold);
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-left {
    padding: 2.5rem;
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-number {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.contact-title {
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
}

.contact-line {
    width: 100px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.contact-tagline {
    font-size: 1rem;
    color: var(--gold-light);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

.contact-right {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--white);
    line-height: 1.5;
    font-weight: 300;
}

.cta-button {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.9rem 2.5rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    align-self: flex-start;
}

.cta-button:hover {
    background: var(--gold);
    color: var(--black);
}

/* Footer */
.footer {
    background: var(--black);
    border-top: 1px solid var(--gold);
    padding: 2.5rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}

.footer-social a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.65rem;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--gold);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    letter-spacing: 1.5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title, .hero-subtitle {
        font-size: 3.5rem;
        letter-spacing: 10px;
    }

    .services-title, .gallery-title, .contact-title {
        font-size: 2.5rem;
        letter-spacing: 8px;
    }

    .service-item {
        grid-template-columns: 1fr;
    }

    .service-item.reverse {
        direction: ltr;
    }

    .service-image {
        height: 400px;
    }

    .contact-split {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-container {
        padding: 1rem 2rem;
    }

    .nav-menu {
        gap: 2rem;
    }

    .logo img {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .hero-title, .hero-subtitle {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }

    .services-title, .gallery-title, .contact-title {
        font-size: 2rem;
        letter-spacing: 5px;
    }

    .quote-text {
        font-size: 1.3rem;
    }

    .service-info h3 {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large, .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .logo img {
        height: 60px;
    }
}

/* Services Preview Link Hover */
.services-preview a:hover {
    background: var(--gold);
    color: var(--black);
}

/* Quote Decoration */
.quote-decoration {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 15px var(--gold), 0 0 30px rgba(184, 134, 11, 0.6), 0 0 45px rgba(184, 134, 11, 0.4);
}

.quote-decoration:last-child {
    margin: 1.5rem auto 0;
}

/* Gallery Preview */
.gallery-preview-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-preview-item img {
    transition: all 0.6s ease;
}

.gallery-preview-item:hover img {
    filter: grayscale(0%) !important;
    transform: scale(1.05);
}

.gallery-link:hover {
    background: var(--gold);
    color: var(--black) !important;
}

/* CTA Button Large */
.cta-button-large:hover {
    background: transparent !important;
    color: var(--gold) !important;
    border: 1px solid var(--gold);
    box-shadow: 0 0 30px rgba(184, 134, 11, 0.4);
    transform: translateY(-3px);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Footer Styles */
.footer-modern {
    background: var(--black);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    padding: 1.5rem 2rem 0.8rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.5fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-column h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.footer-column h4 {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 400;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    font-size: 0.7rem;
    margin-bottom: 0;
}

.footer-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.65rem;
    line-height: 1.5;
}

.footer-info p {
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.65rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.3rem;
    align-items: center;
}

.footer-social-icons a {
    color: var(--gold);
    transition: all 0.3s;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 34px !important;
    height: 34px !important;
    border-radius: 50%;
    text-decoration: none;
    padding: 0;
    box-sizing: border-box;
}

.footer-social-icons a:hover {
    color: var(--white);
    transform: translateY(-2px);
    background: rgba(184, 134, 11, 0.12);
}

.footer-social-icons svg,
.footer-social-icons img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.footer-social-icons img {
    filter: none;
}

.footer-social-icons a svg {
    display: block;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 0.8rem;
    text-align: center;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.6rem;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-modern {
        padding: 1.5rem 1rem 0.8rem;
    }
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100000 !important;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    border-radius: 2px;
    transition: all 0.35s ease-in-out;
}

/* Hamburger active transformation to X */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   COMPREHENSIVE MOBILE & TABLET RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 992px) {
    .menu-toggle {
        display: flex !important;
    }

    .navbar {
        height: 70px !important;
        padding: 0 !important;
        overflow: visible !important;
    }
    
    .nav-container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 70px !important;
        min-height: 70px !important;
        max-height: 70px !important;
        padding: 0.5rem 1.5rem !important;
    }

    .logo {
        margin-right: 0 !important;
        padding-right: 0 !important;
    }

    .logo img {
        height: 50px !important;
    }

    .nav-menu {
        display: none !important;
    }

    .nav-menu.active {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        width: 100vw !important;
        height: calc(100vh - 70px) !important;
        background: #0a0a0a !important;
        backdrop-filter: blur(20px) !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1.8rem !important;
        padding: 2rem 1rem !important;
        z-index: 99999 !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.4) !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        list-style: none !important;
    }

    .nav-menu.active li {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }

    .nav-menu.active a {
        display: inline-block !important;
        font-size: 1.15rem !important;
        letter-spacing: 4px !important;
        padding: 0.6rem 1.2rem !important;
        color: var(--white) !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
        transition: color 0.3s ease !important;
    }

    .nav-menu.active a:hover {
        color: var(--gold) !important;
    }

    /* Grids & Layouts */
    .about-content,
    .owner-section,
    .contact-split,
    .service-item,
    div[style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns: 1fr 1.2fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Sections Padding */
    .about-section,
    .services,
    .gallery,
    .contact,
    section[style*="padding: 8rem 4rem"],
    section[style*="padding: 4rem 3rem"] {
        padding: 3rem 1.5rem !important;
    }

    /* Owner Image */
    .owner-image-wrap {
        height: 380px !important;
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        height: 80vh !important;
        min-height: 480px;
    }

    .hero-title, .hero-subtitle {
        font-size: 2.2rem !important;
        letter-spacing: 4px !important;
    }

    .hero-tagline {
        font-size: 0.65rem !important;
        letter-spacing: 2px !important;
    }

    .hero-cta {
        padding: 0.8rem 1.8rem !important;
        font-size: 0.7rem !important;
    }

    /* Quote Section */
    .quote-section {
        padding: 3rem 1.2rem !important;
    }

    .quote-text {
        font-size: 1.35rem !important;
        line-height: 1.5 !important;
    }

    .quote-icon {
        font-size: 2.2rem !important;
    }

    .quote-author {
        font-size: 0.65rem !important;
        letter-spacing: 2px !important;
    }

    /* Headings */
    h1, h2, h3,
    .services-title, .gallery-title, .contact-title {
        font-size: 1.6rem !important;
        letter-spacing: 4px !important;
    }

    /* Statistics / Counter Grid */
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    div[style*="border-left: 1px solid"],
    div[style*="border-right: 1px solid"] {
        border-left: none !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
        padding-bottom: 1.5rem !important;
    }

    /* Values section flip cards */
    .values-section {
        padding: 2rem 1rem !important;
    }

    /* Form 2-Column Grids -> Stack on Mobile */
    form div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }

    /* Footer Grid */
    footer div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 1.5rem !important;
    }

    footer div[style*="display: flex"] {
        justify-content: center !important;
    }

    .footer-social-icons {
        justify-content: center !important;
    }

    /* Gallery Grid */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: 250px !important;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 0.9rem;
    }

    .navbar {
        padding: 0.4rem 0;
    }

    .logo img {
        height: 42px !important;
    }

    .nav-menu a {
        font-size: 0.58rem !important;
        letter-spacing: 0.8px !important;
        padding: 0.2rem 0.3rem !important;
    }

    .hero-title, .hero-subtitle {
        font-size: 1.8rem !important;
        letter-spacing: 3px !important;
    }

    .quote-text {
        font-size: 1.15rem !important;
    }

    .owner-image-wrap {
        height: 300px !important;
    }

    .about-section,
    .services,
    .gallery,
    .contact {
        padding: 2rem 1rem !important;
    }
}

/* ==========================================================================
   REVIEWS CAROUSEL & 3x2 ROTATING GRID STYLES
   ========================================================================== */
.reviews-wrapper {
    position: relative;
    max-width: 1140px;
    width: 90%;
    margin: 0 auto 2rem;
    overflow: hidden;
    box-sizing: border-box;
}

.reviews-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.reviews-page {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.2rem;
    box-sizing: border-box;
    padding: 0.5rem;
}

.review-card {
    box-sizing: border-box;
    width: 100%;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all 0.4s ease;
}

.carousel-dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold);
}

.carousel-arrow {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    user-select: none;
}

.carousel-arrow:hover {
    background: var(--gold);
    color: var(--black);
}

/* Mobile Responsive Mode (<=768px): Animated Slide Carousel Right to Left */
@media (max-width: 768px) {
    .reviews-wrapper {
        width: 95% !important;
        padding: 0 0.5rem !important;
    }

    .reviews-page {
        display: flex !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
        gap: 0 !important;
        padding: 0 !important;
    }

    .reviews-page .review-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .reviews-slider {
        transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
    }
}

