/* 
   AVIVA GLAM ROOM - PREMIUM LUXURY STYLE SHEET
   Theme: Matte Black & Metallic Gold
   Typography: Playfair Display & Montserrat
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- Custom Properties (Design Tokens) --- */
:root {
    --bg-matte-black: #080808;
    --bg-glossy-black: #121212;
    --bg-card-dark: #181818;
    --color-gold: #D4AF37;
    --color-gold-light: #F3E5AB;
    --color-gold-dark: #AA7C11;
    --color-champagne: #E5D3B3;
    --color-beige: #F5F2EB;
    --text-primary: #FFFFFF;
    --text-secondary: #E2E2E2;
    --text-muted: #CCCCCC;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA7C11 100%);
    --gold-glow: 0 0 20px rgba(212, 175, 55, 0.35);
    --box-gradient: linear-gradient(145deg, rgba(32, 27, 18, 0.88) 0%, rgba(18, 18, 18, 0.95) 50%, rgba(10, 10, 10, 0.98) 100%);
    --box-gradient-hover: linear-gradient(145deg, rgba(50, 42, 24, 0.96) 0%, rgba(26, 23, 17, 0.98) 50%, rgba(12, 12, 12, 1) 100%);
    --glass-bg: rgba(24, 24, 24, 0.7);
    --glass-border: 1px solid rgba(212, 175, 55, 0.15);
}

/* --- Base & Scrollbar --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--bg-matte-black);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

p {
    color: #E2E2E2;
}

/* Custom Gold Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-matte-black);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: 4px;
    border: 1px solid var(--bg-matte-black);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Selection */
::selection {
    background: var(--color-gold);
    color: var(--bg-matte-black);
}

/* --- Typography Utilities --- */
h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
}

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-gold);
}

.font-accent {
    font-family: var(--font-accent);
}

.text-beige {
    color: var(--color-champagne);
}

.text-secondary {
    color: #E2E2E2 !important;
}

.text-muted {
    color: #D4D4D4 !important;
}

.subtitle-accent {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title-wrapper {
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold-gradient);
    margin: 15px auto 0 auto;
}

.section-title-decor {
    font-family: var(--font-accent);
    font-size: 4rem;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(212, 175, 55, 0.04);
    width: 100%;
    z-index: -1;
    font-weight: 300;
    pointer-events: none;
    letter-spacing: 5px;
}

/* --- Mouse Follow Glow Effect --- */
.mouse-glow-orb {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0) 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    mix-blend-mode: screen;
}

/* --- Premium Logo Styling --- */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    background: rgba(8, 8, 8, 0.8);
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.logo-icon-wrap::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 175, 55, 0.4);
    animation: rotate-clockwise 20s linear infinite;
    pointer-events: none;
}

.logo-monogram {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-top: -2px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.logo-brand {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.1;
    transition: var(--transition-smooth);
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 500;
    line-height: 1;
    margin-top: 3px;
}

.logo-container:hover .logo-icon-wrap {
    transform: scale(1.05);
    box-shadow: var(--gold-glow);
}

.logo-container:hover .logo-brand {
    color: var(--color-gold);
}

/* --- Premium Buttons --- */
.btn-gold {
    position: relative;
    background: var(--gold-gradient);
    color: #000000 !important;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    border-radius: 0;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
    transition: var(--transition-smooth);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
    z-index: 2;
}

@keyframes shimmer {
    0% { left: -150%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

.btn-gold:hover::before {
    animation: shimmer 1.5s infinite;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
}

.btn-gold-outline {
    background: transparent;
    color: var(--color-gold) !important;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 31px;
    border: 1px solid var(--color-gold);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
}

.btn-gold-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-gold-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-gold-outline:hover {
    color: #000000 !important;
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

/* --- Sticky Glassmorphism Header --- */
.navbar-luxury {
    background: transparent;
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
    padding: 20px 0;
    transition: var(--transition-smooth);
    z-index: 1000;
}

.navbar-luxury.scrolled {
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}


.nav-link-luxury {
    color: var(--text-primary) !important;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link-luxury::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 1px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

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

.nav-link-luxury:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Navbar Nav Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-nav-icon {
    font-size: 1.25rem;
    color: #FFFFFF !important;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.whatsapp-nav-icon:hover {
    transform: scale(1.1) rotate(12deg);
    background: linear-gradient(135deg, #2bf074 0%, #17a090 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.65);
    color: #FFFFFF !important;
}

/* Mobile Slide Menu */
.navbar-toggler-luxury {
    border: none;
    outline: none !important;
    padding: 5px;
    background: transparent;
}

.toggler-icon-bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

.navbar-toggler-luxury[aria-expanded="true"] .bar-1 {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler-luxury[aria-expanded="true"] .bar-2 {
    opacity: 0;
}

.navbar-toggler-luxury[aria-expanded="true"] .bar-3 {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Banner Section (Full Screen 3-Slide Swiper) --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    background-color: var(--bg-matte-black);
    z-index: 1;
}

.hero-swiper {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 6.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

/* Ken Burns subtle zoom effect on the active slide */
.swiper-slide-active .hero-slide-bg {
    transform: scale(1.08);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(8, 8, 8, 0.78) 0%, 
        rgba(8, 8, 8, 0.58) 45%, 
        rgba(8, 8, 8, 0.32) 75%, 
        rgba(8, 8, 8, 0.15) 100%);
    z-index: 2;
}

.hero-particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    padding-top: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--color-gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-size: 4.4rem;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 18px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.85);
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 2.1rem;
    font-style: italic;
    color: var(--color-champagne);
    margin-bottom: 22px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin-bottom: 38px;
    font-weight: 300;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-phone-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.hero-phone-link i {
    width: 42px;
    height: 42px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

.hero-phone-link:hover {
    color: var(--color-gold);
}

.hero-phone-link:hover i {
    background: var(--gold-gradient);
    color: #000;
    transform: rotate(15deg) scale(1.05);
}

.hero-wa-link i {
    background: rgba(37, 211, 102, 0.15) !important;
    border-color: #25D366 !important;
    color: #25D366 !important;
}

.hero-wa-link:hover i {
    background: #25D366 !important;
    color: #FFF !important;
}

/* Custom Swiper Controls for Hero Slider */
.hero-swiper-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(18, 18, 18, 0.65);
    border: 1px solid rgba(212, 175, 55, 0.35);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-swiper-btn-prev {
    left: 28px;
}

.hero-swiper-btn-next {
    right: 28px;
}

.hero-swiper-nav-btn:hover {
    background: var(--gold-gradient);
    color: #080808;
    border-color: var(--color-gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    transform: translateY(-50%) scale(1.08);
}

/* Custom Swiper Pagination Dots */
.hero-swiper-pagination {
    position: absolute;
    bottom: 35px;
    right: 50px;
    left: auto;
    width: auto;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(212, 175, 55, 0.4);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin: 0 !important;
    cursor: pointer;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    width: 36px;
    border-radius: 20px;
    background: var(--gold-gradient);
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.hero-scroll-indicator:hover {
    color: var(--color-gold);
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
    margin-bottom: 10px;
}

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

@keyframes scroll-wheel-anim {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}

/* --- About Us Section --- */
.about-section {
    padding: 60px 0;
    background-color: var(--bg-matte-black);
    position: relative;
    z-index: 1;
}

.about-section p {
    color: #F0F0F0 !important;
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-img-collage {
    position: relative;
    padding-bottom: 80px;
}

.about-img-wrapper {
    position: relative;
    width: 80%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.about-img-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px solid var(--color-gold);
    pointer-events: none;
    z-index: 3;
}

.about-img-overlap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 4;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9);
}

.about-img-overlap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.about-img-overlap::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid var(--color-gold);
    pointer-events: none;
    z-index: 5;
}

.about-img-wrapper:hover img {
    transform: scale(1.02);
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 6;
    color: #000000;
    box-shadow: var(--gold-glow);
}

.about-experience-badge span:first-child {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
}

.about-experience-badge span:last-child {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Services Section --- */
.services-section {
    padding: 60px 0;
    background-color: var(--bg-glossy-black);
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--box-gradient);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(212, 175, 55, 0.12);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.service-card-img-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: brightness(0.85);
}

.service-card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(18, 18, 18, 0.95) 100%);
    z-index: 1;
}

.service-icon-floating {
    position: absolute;
    bottom: 15px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.25rem;
    z-index: 3;
    box-shadow: var(--gold-glow);
    transition: var(--transition-smooth);
}

.service-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: transparent;
    z-index: 2;
    position: relative;
}

.service-card-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.service-card-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 300;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    padding-top: 20px;
}

.service-card-actions .btn-book-service {
    flex-grow: 1;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 10px 15px;
    text-align: center;
}

.service-card-actions .btn-whatsapp-service {
    width: 44px;
    height: 40px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF !important;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.35);
    transition: var(--transition-smooth);
    position: relative;
    flex-shrink: 0;
}

.service-card-actions .btn-whatsapp-service:hover {
    background: linear-gradient(135deg, #2bf074 0%, #17a090 100%);
    color: #FFFFFF !important;
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.65), 0 0 15px rgba(37, 211, 102, 0.5);
}

/* Service Card Hover Effect */
.service-card:hover {
    background: var(--box-gradient-hover);
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.15), inset 0 1px 2px rgba(212, 175, 55, 0.25);
}

.service-card:hover .service-card-img-wrap img {
    transform: scale(1.08);
    filter: brightness(0.95);
}

.service-card:hover .service-icon-floating {
    transform: translateY(-5px) rotate(360deg);
}

.service-card:hover .service-card-title {
    color: var(--color-gold);
}

/* --- Why Choose Us Section --- */
.why-section {
    padding: 60px 0;
    background-color: var(--bg-matte-black);
    position: relative;
    z-index: 1;
}

.why-feature-card {
    background: var(--box-gradient);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(212, 175, 55, 0.15);
    padding: 34px 28px;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.why-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0%;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.why-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.08);
}

.why-feature-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.why-feature-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 0;
}

/* Why Choose Us Hover */
.why-feature-card:hover {
    background: var(--box-gradient-hover);
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.18), inset 0 1px 2px rgba(212, 175, 55, 0.3);
}

.why-feature-card:hover::before {
    height: 100%;
}

.why-feature-card:hover .why-feature-icon {
    background: var(--gold-gradient);
    color: #000000;
    box-shadow: var(--gold-glow);
}

/* --- Counter / Stats Section --- */
.counter-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #121212 0%, #080808 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.counter-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--box-gradient);
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(212, 175, 55, 0.12);
    transition: var(--transition-smooth);
}

.counter-item:hover {
    background: var(--box-gradient-hover);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.15);
}

.counter-icon {
    font-size: 2.2rem;
    color: var(--color-gold);
    margin-bottom: 15px;
    display: block;
}

.counter-number-wrap {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

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

/* --- Interactive Gallery --- */
.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-glossy-black);
    position: relative;
    z-index: 1;
}

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

.gallery-filter-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 24px;
    transition: var(--transition-smooth);
}

.gallery-filter-btn.active, .gallery-filter-btn:hover {
    background: var(--gold-gradient);
    color: #000000;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

/* Gallery Masonry Layout */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.gallery-grid-item {
    padding: 10px;
    width: 33.333%;
    display: block;
    transition: var(--transition-smooth);
}

@media (max-width: 991px) {
    .gallery-grid-item {
        width: 50%;
    }
}
@media (max-width: 575px) {
    .gallery-grid-item {
        width: 100%;
    }
}

.gallery-img-box {
    position: relative;
    overflow: hidden;
    height: 320px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    background-color: #1a1a1a;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: brightness(0.85);
}

.gallery-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 25px;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-img-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    text-align: center;
}

.gallery-img-category {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.1rem;
    opacity: 0;
    z-index: 3;
    transition: var(--transition-smooth);
}

/* Hover effects */
.gallery-img-box:hover img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

.gallery-img-box:hover .gallery-img-overlay {
    opacity: 1;
}

.gallery-img-box:hover .gallery-img-title,
.gallery-img-box:hover .gallery-img-category {
    transform: translateY(0);
}

.gallery-img-box:hover .gallery-zoom-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: var(--gold-glow);
}

/* Lightbox Utility Style */
.custom-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.lightbox-content-wrap {
    position: relative;
    max-width: 85%;
    max-height: 80%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid var(--color-gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.lightbox-caption {
    text-align: center;
    margin-top: 15px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-champagne);
}

.lightbox-category {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lightbox-close-btn {
    position: absolute;
    top: 25px;
    right: 35px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

/* --- Testimonial Section --- */
.testimonials-section {
    padding: 60px 0;
    background-color: var(--bg-matte-black);
    position: relative;
    z-index: 1;
}

.testimonial-slider {
    padding: 15px 0 40px 0;
}

.testimonial-card {
    background: var(--box-gradient);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 6px;
    backdrop-filter: blur(12px);
    padding: 35px 30px;
    margin: 15px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55), inset 0 1px 1px rgba(212, 175, 55, 0.15);
}

.testimonial-card:hover {
    background: var(--box-gradient-hover);
    border-color: rgba(212, 175, 55, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.15), inset 0 1px 2px rgba(212, 175, 55, 0.25);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-right: 3px;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-champagne);
    margin-bottom: 25px;
    font-weight: 300;
    font-style: italic;
}

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

.testimonial-client-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.testimonial-client-info h5 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.testimonial-client-info span {
    font-size: 0.75rem;
    color: var(--color-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Swiper styling overrides */
.swiper-pagination-bullet {
    background: var(--text-muted) !important;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: var(--color-gold) !important;
    opacity: 1 !important;
    box-shadow: 0 0 8px var(--color-gold);
}

/* --- Book Appointment CTA Section --- */
.booking-cta-section {
    padding: 70px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.booking-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 8, 8, 0.95) 0%, rgba(26, 26, 26, 0.85) 100%);
    z-index: 0;
}

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

.booking-cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.booking-cta-desc {
    font-size: 1.1rem;
    color: var(--color-champagne);
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-weight: 300;
}

.booking-cta-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* --- Contact Us Section --- */
.contact-section {
    padding: 60px 0;
    background-color: var(--bg-matte-black);
    position: relative;
    z-index: 1;
}

.contact-info-card {
    background: var(--box-gradient);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(212, 175, 55, 0.12);
    padding: 24px 22px;
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    background: var(--box-gradient-hover);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.65), 0 0 20px rgba(212, 175, 55, 0.18), inset 0 1px 2px rgba(212, 175, 55, 0.25);
    transform: translateY(-4px);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: inset 0 0 8px rgba(212, 175, 55, 0.08);
}

.contact-info-details h5 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-details p, .contact-info-details a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0;
    transition: var(--transition-smooth);
}

.contact-info-details a:hover {
    color: var(--color-gold);
}

/* Premium Form Elements */
.contact-form-wrap {
    background: var(--box-gradient);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), inset 0 1px 2px rgba(212, 175, 55, 0.15);
}

.contact-form-title {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 12px;
}

.form-group-luxury {
    position: relative;
    margin-bottom: 22px;
}

.form-control-luxury {
    background: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    color: var(--text-primary) !important;
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 10px 0 10px 0;
    box-shadow: none !important;
    transition: var(--transition-smooth);
}

.form-control-luxury::placeholder {
    color: var(--text-muted);
}

.form-control-luxury:focus {
    border-bottom: 1px solid var(--color-gold);
}

.form-label-luxury {
    position: absolute;
    top: -12px;
    left: 0;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold);
    pointer-events: none;
    transition: var(--transition-smooth);
}

/* Custom Styled Google Map iframe filter */
.map-container-luxury {
    border: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
    height: 250px;
    margin-top: 25px;
}

.map-container-luxury iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(0.92) contrast(1.2) saturate(0.5);
    transition: var(--transition-smooth);
}

.map-container-luxury iframe:hover {
    filter: grayscale(0.5) invert(0) contrast(1);
}

/* Form Interactivity Alerts */
.form-response-alert {
    display: none;
    margin-top: 20px;
    padding: 12px;
    font-size: 0.85rem;
    text-align: center;
    border: 1px solid transparent;
}

.form-response-alert.success {
    display: block;
    background: rgba(37, 211, 102, 0.05);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.form-response-alert.error {
    display: block;
    background: rgba(220, 53, 69, 0.05);
    border-color: rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

/* --- Footer Section --- */
.footer-luxury {
    background-color: #030303;
    color: #E2E2E2;
    padding: 50px 0 25px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 1;
}

.footer-luxury p, 
.footer-luxury .text-muted, 
.footer-hours-row span:first-child {
    color: #E8E8E8 !important;
}

.footer-col h5 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
}

.footer-col h5::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--color-gold);
    margin-top: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

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

.footer-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 5px;
}

.footer-hours-row span:first-child {
    font-weight: 500;
}

.footer-hours-row span:last-child {
    color: var(--color-champagne);
}

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

.footer-social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social-btn:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    box-shadow: var(--gold-glow);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

/* --- Floating Sticky Elements --- */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFF !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.whatsapp-float-btn:hover {
    transform: scale(1.12) rotate(10deg);
    color: #FFF !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
}

/* Sticky Mobile Quick Action Bar (Bottom Screen) */
.mobile-sticky-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    z-index: 998;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.5);
}

.mobile-sticky-action-bar .btn-mobile-action {
    flex-grow: 1;
    margin: 0 5px;
    padding: 12px 10px;
    font-size: 0.78rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Hide desktop floating whatsapp when mobile bar is visible, or adjust positions */
@media (max-width: 767px) {
    .mobile-sticky-action-bar {
        display: flex;
    }
    .whatsapp-float-btn {
        bottom: 80px; /* shift up to not overlap bottom action bar */
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
    }
    body {
        padding-bottom: 70px; /* add spacing so content isn't blocked by action bar */
    }
}

/* --- SVG Keyframes / Animations --- */
@keyframes rotate-clockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- GSAP CSS Specific Hooks --- */
.gsap-reveal-char {
    display: inline-block;
}

/* Mobile responsive fixes */
@media (max-width: 991px) {
    .hero-content {
        text-align: center;
    }
    .hero-content .row {
        justify-content: center;
    }
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-title {
        font-size: 3.2rem;
        text-align: center;
    }
    .hero-subtitle {
        font-size: 1.7rem;
        text-align: center;
    }
    .hero-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-phone-link {
        justify-content: center;
    }
    .hero-slide-overlay {
        background: linear-gradient(180deg, 
            rgba(8, 8, 8, 0.58) 0%, 
            rgba(8, 8, 8, 0.75) 55%, 
            rgba(8, 8, 8, 0.90) 100%);
    }
    .hero-swiper-btn-prev {
        left: 12px;
    }
    .hero-swiper-btn-next {
        right: 12px;
    }
    .hero-swiper-pagination {
        right: 50%;
        transform: translateX(50%);
        bottom: 80px;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .booking-cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .navbar-luxury {
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(10px);
    }
    .navbar-collapse {
        background: rgba(8, 8, 8, 0.98);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 20px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    }
    .hero-section {
        min-height: 100vh;
        height: 100vh;
    }
    .hero-content {
        padding-top: 80px;
        text-align: center;
    }
    .hero-content .row {
        justify-content: center;
    }
    .hero-badge {
        font-size: 0.68rem;
        letter-spacing: 2px;
        padding: 6px 12px;
        margin-bottom: 15px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-title {
        font-size: 2.3rem;
        line-height: 1.2;
        text-align: center;
    }
    .hero-subtitle {
        font-size: 1.35rem;
        margin-bottom: 16px;
        text-align: center;
    }
    .hero-desc {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.6;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group {
        justify-content: center;
        align-items: center;
        gap: 14px;
    }
    .hero-phone-link {
        justify-content: center;
    }
    .hero-swiper-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    .hero-swiper-pagination {
        bottom: 75px;
    }
    .hero-scroll-indicator {
        display: none;
    }
    .about-img-overlap {
        position: relative;
        width: 100%;
        margin-top: 15px;
    }
    .about-img-wrapper {
        width: 100%;
    }
    .about-img-collage {
        padding-bottom: 0;
    }
    .contact-form-wrap {
        padding: 25px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .hero-cta-group .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    .hero-phone-link {
        justify-content: center;
        width: 100%;
    }
}
