:root {
    --primary: #c59b5f;
    --primary-dark: #a87e45;
    --primary-light: #d6af75;
    --primary-subtle: #24221d;
    --secondary: #2b2b2b;
    --secondary-light: #3f3f3f;
    --secondary-subtle: #1c1c1c;
    --accent: #c59b5f;
    
    /* Luxury Dark Theme Palette */
    --bg-body: #141414;
    --bg-surface: #1d1d1d;
    --bg-surface-alt: #181818;
    --bg-surface-soft: #222222;
    
    --border-color: #2a2a2a;
    --border-light: rgba(197, 155, 95, 0.2);
    
    --text-main: #f5f5f5;
    --text-body: #d1cdc7;
    --text-muted: #b8b3ab;
    --text-subtle: #8a857b;
    
    --card-bg: #1c1c1c;
    --glass-nav: rgba(20, 20, 20, 0.95);
    --nav-border: rgba(255, 255, 255, 0.06);
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-hover: 0 22px 45px rgba(0, 0, 0, 0.7);
    
    --gradient-primary: linear-gradient(135deg, #c59b5f 0%, #a87e45 100%);
    --gradient-hero: linear-gradient(180deg, #141414 0%, #1a1a1a 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.google-map-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    display: block;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-body);
    overflow-x: hidden;
    line-height: 1.65;
}

/* Dark Fixed Header */
.glass-nav {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    background-color: rgba(20, 20, 20, 0.95) !important;
    background: rgba(20, 20, 20, 0.95) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
}

/* Navbar Brand Logo (Enlarged) */
.navbar-brand-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand:hover .navbar-brand-logo {
    transform: scale(1.05);
}

/* Navbar Brand Typography */
.brand-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-title {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
}

.brand-ozn {
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 1px;
}

.brand-luckycare {
    background: linear-gradient(135deg, #dfb476 0%, #c59b5f 60%, #a87e45 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.brand-badge-sub {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.2px;
    color: #9c978f;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Hero Slider Logolu Slogan Badge */
.hero-slogan-badge {
    background: rgba(20, 20, 20, 0.82);
    border: 1px solid rgba(197, 155, 95, 0.4);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(197, 155, 95, 0.15);
    padding: 10px 22px;
    border-radius: 50px;
    transition: all 0.35s ease;
}

.hero-slogan-badge:hover {
    border-color: #c59b5f;
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(197, 155, 95, 0.3);
}

.hero-slogan-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-slogan-brand {
    font-size: 0.95rem;
    font-weight: 800;
    color: #dfb476;
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero-slogan-tagline {
    font-size: 0.82rem;
    font-weight: 600;
    color: #d1cdc7;
    letter-spacing: 0.4px;
}

/* First Slide Circular Logo Box */
.hero-circle-logo-wrapper {
    position: relative;
    padding: 10px;
}

.hero-circle-logo-box {
    width: 320px;
    height: 320px;
    aspect-ratio: 1 / 1;
    border-radius: 50% !important;
    overflow: hidden !important;
    background: #212529 !important;
    border: 6px solid #212529 !important;
    outline: 2px solid #c59b5f !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    text-align: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatCircle 4s ease-in-out infinite alternate;
}

.hero-circle-logo-box:hover {
    transform: scale(1.05);
    border-color: #dfb476;
    box-shadow: none !important;
}

.hero-circle-logo-img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    display: block !important;
    margin: auto !important;
    filter: none !important;
}

@keyframes floatCircle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

@media (max-width: 576px) {
    .hero-circle-logo-box {
        width: 240px;
        height: 240px;
    }
}

/* Page Header Banner & Breadcrumbs */
.header-page-banner {
    padding-top: 120px !important;
    padding-bottom: 0px !important;
}

@media (max-width: 991.98px) {
    .header-page-banner {
        padding-top: 98px !important;
        padding-bottom: 0px !important;
    }
}

.breadcrumb {
    background: transparent !important;
    padding: 0 !important;
    margin-bottom: 12px !important;
}

.breadcrumb-item {
    font-size: 0.92rem !important;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #9c978f !important;
    content: "›" !important;
    font-size: 1.1rem !important;
    padding: 0 8px !important;
}

.breadcrumb-item a {
    color: #c59b5f !important;
    font-weight: 600;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

.breadcrumb-item.active {
    color: #d1cdc7 !important;
    font-weight: 500;
}

/* High Contrast Section Subtitles & Muted Text */
.section-subtitle, p.section-subtitle {
    color: #d1cdc7 !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
}

p.text-muted, span.text-muted {
    color: #d1cdc7 !important;
}

@media (min-width: 992px) {
    .glass-nav {
        padding: 10px 0;
    }
    .hero-slider-wrapper {
        padding-top: 108px !important;
    }
}

@media (max-width: 991.98px) {
    .navbar-brand-logo {
        height: 52px;
    }
    .navbar-collapse {
        background: #1c1c1c;
        border-radius: 16px;
        padding: 20px;
        margin-top: 12px;
        border: 1px solid #2a2a2a;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    }
}

.navbar .nav-link {
    color: #d1cdc7 !important;
    font-weight: 600;
    transition: var(--transition);
    padding: 8px 14px;
    border-radius: 8px;
}

.navbar .nav-link:hover, .navbar .nav-link.active {
    color: #c59b5f !important;
    background: rgba(197, 155, 95, 0.12);
}

/* Cards */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(197, 155, 95, 0.35);
}

/* Gradient Texts & Badges */
.text-gradient {
    background: linear-gradient(135deg, #dfb476 0%, #c59b5f 60%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-badge {
    background: rgba(197, 155, 95, 0.15);
    color: #dfb476;
    border: 1px solid rgba(197, 155, 95, 0.3);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.custom-badge-red {
    background: rgba(197, 155, 95, 0.1);
    color: #d6af75;
    border: 1px solid rgba(197, 155, 95, 0.25);
}

/* Buttons */
.btn-primary-custom {
    background: #c59b5f;
    color: #141414 !important;
    border: 1px solid #c59b5f;
    border-radius: 4px;
    padding: 12px 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.88rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    background: #dfb476;
    color: #141414 !important;
    border-color: #dfb476;
    box-shadow: 0 6px 20px rgba(197, 155, 95, 0.3);
}

.btn-outline-custom {
    background: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    padding: 12px 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.88rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-dark-custom {
    background: #141414;
    color: #ffffff !important;
    border: 1px solid #141414;
    border-radius: 4px;
    padding: 12px 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.88rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-dark-custom:hover {
    background: #2b2b2b;
    color: #ffffff !important;
    border-color: #2b2b2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Slider Styles */
.hero-slider-wrapper {
    position: relative;
    padding-top: 76px;
    margin-top: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    background-color: #141414;
}

#mainHeroCarousel .carousel-item {
    transition: transform 0.3s ease-in-out !important;
}

.hero-slide-item {
    min-height: calc(90vh - 76px);
    display: flex;
    align-items: center;
    padding: 40px 0 60px 0;
}

.carousel-indicators-custom {
    bottom: 25px;
}

.carousel-indicators-custom [data-bs-target] {
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    transition: all 0.3s;
}

.carousel-indicators-custom .active {
    background-color: #c59b5f;
    width: 50px;
}

.carousel-control-prev-custom, .carousel-control-next-custom {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1f1f1f;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #333333;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
    transition: all 0.3s;
    z-index: 5;
}

.carousel-control-prev-custom:hover, .carousel-control-next-custom:hover {
    background: #c59b5f;
    color: #141414;
    opacity: 1;
    border-color: #c59b5f;
}

.hero-card-featured {
    width: 360px;
    height: 360px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 50% !important;
    padding: 6px !important;
    background: #ffffff !important;
    border: 4px solid #ffffff !important;
    outline: 2px solid rgba(197, 155, 95, 0.4) !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden !important;
}

.slide-custom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 155, 95, 0.15) 0%, transparent 70%);
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
}

.hero-logo-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px;
}

.hero-logo-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 155, 95, 0.25) 0%, rgba(20, 20, 20, 0) 70%);
    filter: blur(30px);
    z-index: 0;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    100% { transform: scale(1.08); opacity: 1; }
}

.hero-logo-img {
    position: relative;
    z-index: 1;
    max-width: 380px;
    width: 100%;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Modern Dark Service Box (Matches screenshot) */
.service-box {
    padding: 0 !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: #1b1b1b;
    border: 1px solid #282828;
    border-radius: 14px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.service-box:hover {
    transform: translateY(-8px);
    border-color: #c59b5f;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.service-cover-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #111111;
}

.service-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-box:hover .service-cover-img {
    transform: scale(1.06);
}

.service-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(20, 20, 20, 0.7) 100%);
}

.service-badge-floating {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(8px);
    color: #e0dedb;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 4px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-content-body {
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    background: #1b1b1b;
}

.service-category-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #c59b5f;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.service-title-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.service-desc-text {
    color: #9c978f;
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Why Us Icon Wrap */
.why-us-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: #242424;
    color: #c59b5f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-us-card:hover .why-us-icon-wrap {
    transform: scale(1.08) rotate(4deg);
    background: #c59b5f;
    color: #141414;
    box-shadow: 0 12px 25px rgba(197, 155, 95, 0.3);
}

.why-us-icon-red {
    background: #242424;
    color: #dfb476;
    border-color: #383838;
}

.why-us-card:hover .why-us-icon-red {
    background: #c59b5f;
    color: #141414;
}

.why-us-card {
    background: #1b1b1b;
    border: 1px solid #282828;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    text-align: center;
    transition: all 0.35s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.why-us-card:hover {
    transform: translateY(-6px);
    border-color: #c59b5f;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px 0;
}

.service-features-list li {
    font-size: 0.88rem;
    color: #b5b0a8;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features-list li::before {
    content: "✓";
    color: #c59b5f;
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1;
}

.btn-service-detail {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px 0;
    background: transparent;
    color: #e5e5e5 !important;
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
}

.btn-service-detail i {
    color: #c59b5f;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.btn-service-detail:hover {
    color: #c59b5f !important;
}

.btn-service-detail:hover i {
    transform: translateX(5px);
}

/* Soft Full-Width Section Styles */
.about-section-soft {
    background: #171717;
    border-top: 1px solid #262626;
    border-bottom: 1px solid #262626;
}

.about-card-soft {
    background: #1b1b1b;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
}

.about-feature-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    background: #1f1f1f;
    border: 1px solid #2c2c2c;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-feature-row:hover {
    transform: translateX(8px);
    border-color: #c59b5f;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.about-icon-cube {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.icon-blue-cube {
    background: #262626;
    color: #c59b5f;
    border: 1px solid #383838;
}

.icon-red-cube {
    background: #262626;
    color: #dfb476;
    border: 1px solid #383838;
}

.icon-cyan-cube {
    background: #262626;
    color: #e5c188;
    border: 1px solid #383838;
}

.vision-mission-card {
    border-radius: 16px;
    padding: 26px 28px;
    height: 100%;
    background: #1b1b1b;
    border: 1px solid #282828;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-mission-card:hover {
    transform: translateY(-4px);
    border-color: #c59b5f;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.vision-card {
    background: #1b1b1b;
    border: 1px solid #282828;
}

.mission-card {
    background: #1b1b1b;
    border: 1px solid #282828;
}

.stat-pill {
    background: #1b1b1b;
    border: 1px solid #282828;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.stat-pill:hover {
    border-color: #c59b5f;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.stat-pill .num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #c59b5f;
    line-height: 1;
}

.stat-pill .lbl {
    font-size: 0.8rem;
    color: #9c978f;
    font-weight: 700;
    margin-top: 4px;
}

/* Feature Item */
.feature-item-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border-radius: 16px;
    background: #1b1b1b;
    border: 1px solid #282828;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item-card:hover {
    background: #1f1f1f;
    border-color: #c59b5f;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-item-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: #262626;
    color: #c59b5f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* References & Testimonials Section */
.ref-brand-box {
    background: #1b1b1b;
    border: 1px solid #282828;
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ref-brand-box:hover {
    transform: translateY(-5px);
    border-color: #c59b5f;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.ref-brand-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: #242424;
    color: #c59b5f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.ref-brand-box:hover .ref-brand-icon {
    background: var(--gradient-primary);
    color: #141414;
}

.testimonial-card {
    background: #1b1b1b;
    border: 1px solid #282828;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #c59b5f;
    box-shadow: var(--shadow-hover);
}

.star-rating {
    color: #c59b5f;
    font-size: 1rem;
    display: flex;
    gap: 3px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

/* Form Styles */
.custom-input {
    background: #191919;
    border: 1px solid #2d2d2d;
    border-radius: 8px;
    color: #ffffff;
    padding: 14px 18px;
    transition: var(--transition);
}

.custom-input:focus {
    background: #1f1f1f;
    border-color: #c59b5f;
    box-shadow: 0 0 0 3px rgba(197, 155, 95, 0.2);
    color: #ffffff;
}

.custom-input::placeholder {
    color: #6e6a62;
}

/* Footer */
.footer-main {
    background: #0f0f0f;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 70px 0 30px 0;
    color: #9c978f;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .hero-section {
        padding: 140px 0 60px 0;
        text-align: center;
    }
    .hero-logo-img {
        max-width: 280px;
        margin-top: 40px;
    }
}
