/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* CSS Variables for Typography */
:root {
    /* Font Sizes */
    --fs-xxl: 6rem;     /* Hero title */
    --fs-xl: 2.5rem;    /* Section titles */
    --fs-lg: 1.5rem;    /* Subsection headings */
    --fs-md: 1rem;      /* Body text */
    --fs-sm: 0.9rem;    /* Small text */
    --fs-xs: 0.8rem;    /* Extra small text */

    /* Line Heights */
    --lh-tight: 1.2;
    --lh-normal: 1.6;
    --lh-loose: 1.8;

    /* Font Weights */
    --fw-regular: 400;
    --fw-semibold: 600;
    --fw-bold: 700;
}

/* Responsive Typography */
@media (max-width: 1024px) {
    :root {
        --fs-xxl: 5rem;
        --fs-xl: 2.2rem;
        --fs-lg: 1.4rem;
    }
}

@media (max-width: 768px) {
    :root {
        --fs-xxl: 3.5rem;
        --fs-xl: 2rem;
        --fs-lg: 1.3rem;
        --fs-md: 0.95rem;
        --fs-sm: 0.85rem;
        --fs-xs: 0.75rem;
    }
}

@media (max-width: 480px) {
    :root {
        --fs-xxl: 2.2rem;
        --fs-xl: 1.8rem;
        --fs-lg: 1.2rem;
        --fs-md: 0.9rem;
        --fs-sm: 0.8rem;
        --fs-xs: 0.7rem;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: var(--lh-normal);
    font-size: var(--fs-md);
    color: #ffffff;
    background-color: #000000;
}

/* Header Styles */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 5px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.nav-left {
    display: flex;
    justify-content: flex-start;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
}

.logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Move the logo to the right within the header grid */
.logo {
    justify-self: start;
}

.logo img {
    height: 80px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

/* Ensure mobile-only menu is hidden on desktop */
.nav-menu.mobile {
    display: none;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #FFB800;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 450px;
        height: calc(100vh - 70px); /* Account for header height */
    }
}

/* Slider Styles */
.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    opacity: 0;
    animation: slideShow 24s linear infinite;
}

@media (max-width: 768px) {
    .slide {
        background-position: center 20%;
    }
}

@media (max-width: 480px) {
    .slide {
        background-position: center 25%;
    }
}

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 6s;
}

.slide:nth-child(3) {
    animation-delay: 12s;
}

.slide:nth-child(4) {
    animation-delay: 18s;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Red Rose', cursive;
    font-size: var(--fs-xxl);
    font-weight: var(--fw-bold);
    margin-bottom: 20px;
    line-height: var(--lh-tight);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: transparent;
    -webkit-text-stroke: 2px #FFB800;
    text-shadow: 
        3px 3px 0 #ffffff,
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #ffffff;
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: var(--fs-lg);
    color: #FFB800;
    margin-bottom: 40px;
    font-weight: var(--fw-semibold);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFB800;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
}

/* Info Strip */
.info-strip {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 184, 0, 0.1);
}

@media (max-width: 768px) {
    .info-strip {
        display: none;
    }
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
        gap: 20px;
    }

    .info-card {
        width: 100%;
        max-width: 400px;
        background: rgba(255, 184, 0, 0.05);
        border-radius: 10px;
        padding: 15px;
        margin: 0 auto;
    }

    .info-divider {
        width: 80%;
        height: 1px;
        margin: 5px auto;
    }
}

@media (max-width: 480px) {
    .info-container {
        gap: 15px;
        padding: 0 15px;
    }

    .info-card {
        padding: 12px;
        max-width: 100%;
    }
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: #FFB800;
}

.info-icon i {
    font-size: 22px;
    color: #FFB800;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon i {
    color: #000000;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: var(--fs-xs);
    color: #FFB800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: var(--fw-semibold);
}

.info-value {
    font-size: var(--fs-sm);
    color: #ffffff;
    font-weight: var(--fw-regular);
}

.info-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #FFB800, transparent);
    opacity: 0.2;
}

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

@keyframes slideShow {
    0%, 20% {
        opacity: 1;
        transform: scale(1.1);
    }
    25%, 95% {
        opacity: 0;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

/* Services Section */
.services {
    background-color: #0a0a0a;
    padding: 100px 0;
    position: relative;
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 40px 0;
    }
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #FFB800, transparent);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: var(--fs-xl);
    color: #ffffff;
    margin-bottom: 60px;
    font-family: 'Red Rose', cursive;
    position: relative;
    padding-bottom: 20px;
    font-weight: var(--fw-bold);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 15px;
    background: #FFB800;
    filter: blur(10px);
    opacity: 0.3;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #FFB800;
}

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

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px;
        margin: 0 auto;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 184, 0, 0.1);
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
    .service-card {
        padding: 30px 15px;
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }

    .service-card .service-content {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 20px 15px;
        gap: 15px;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #FFB800;
    opacity: 0;
    transition: all 0.4s ease;
    transform: scale(1.1);
}

.service-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 184, 0, 0.05);
}

.service-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: rgba(255, 184, 0, 0.1);
    border: 2px solid rgba(255, 184, 0, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    transform: rotate(-45deg);
}

.service-card:hover .service-icon {
    background: rgba(255, 184, 0, 0.15);
    border-color: #FFB800;
    transform: rotate(0deg);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #FFB800;
    border-radius: 20px;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon::before {
    opacity: 1;
    transform: scale(1.1);
}

.service-icon-inner {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transform: rotate(45deg);
    transition: all 0.4s ease;
    filter: brightness(0) saturate(100%) invert(71%) sepia(60%) saturate(633%) hue-rotate(360deg) brightness(103%) contrast(102%);
}

.service-card:hover .service-icon-inner {
    transform: rotate(0deg) scale(1.1);
}

.service-content {
    flex: 1;
}

.service-card h3 {
    color: #FFB800;
    font-size: var(--fs-lg);
    margin-bottom: 15px;
    font-family: 'Red Rose', cursive;
    font-weight: var(--fw-bold);
    transition: all 0.3s ease;
}

.service-card p {
    color: #999;
    font-size: var(--fs-sm);
    line-height: var(--lh-normal);
    margin: 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .service-card h3 {
        font-size: var(--fs-lg);
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: var(--fs-sm);
    }
}

@media (max-width: 480px) {
    .service-card h3 {
        font-size: var(--fs-lg);
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: var(--fs-xs);
        line-height: var(--lh-normal);
    }
}

.service-card:hover p {
    color: #ffffff;
}

/* About Section */
.about-section {
    background-color: #0a0a0a;
    padding: 100px 0;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-header {
    text-align: left;
    margin-bottom: 50px;
    position: relative;
}

.about-title {
    font-family: 'Red Rose', cursive;
    font-size: 48px;
    color: #ffffff;
    margin: 0;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    left: calc(100% + 30px);
    top: 50%;
    width: 70%;
    height: 1px;
    background: linear-gradient(to right, #FFB800, transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-content {
        gap: 30px;
    }
}

.about-text {
    position: relative;
    padding: 30px;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #FFB800, transparent);
}

.about-text:first-child::before {
    right: -30px;
}

.about-text:last-child::before {
    left: -30px;
}

.story-left, .story-right {
    color: #999;
    font-size: var(--fs-md);
    line-height: var(--lh-loose);
    margin: 0;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .story-left, .story-right {
        font-size: var(--fs-md);
        line-height: var(--lh-normal);
        padding: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .story-left, .story-right {
        font-size: var(--fs-sm);
        line-height: var(--lh-normal);
        padding: 12px;
    }
}

.story-left:hover, .story-right:hover {
    color: #ffffff;
    transform: translateY(-5px);
}

.story-left::before, .story-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #FFB800, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-left::after, .story-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #FFB800, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-left:hover::before,
.story-left:hover::after,
.story-right:hover::before,
.story-right:hover::after {
    opacity: 1;
}

/* Gallery Section */
.gallery-section {
    background-color: #0a0a0a;
    padding: 100px 0;
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #FFB800, transparent);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-info {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    padding: 20px;
}

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

.gallery-info h3 {
    color: #FFB800;
    font-family: 'Red Rose', cursive;
    font-size: var(--fs-lg);
    margin-bottom: 10px;
    font-weight: var(--fw-bold);
}

.gallery-info p {
    color: #ffffff;
    font-size: var(--fs-sm);
}

/* Star Badge Styles */
.star-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    padding: 2px;
    background: linear-gradient(45deg, #FFB800, #FFC107, #FFD700);
    border-radius: 25px;
    box-shadow: 0 2px 15px rgba(255, 184, 0, 0.4);
    transition: all 0.4s ease;
}

.star-badge-inner {
    background: rgba(0, 0, 0, 0.85);
    padding: 6px 15px;
    border-radius: 23px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.star-badge i {
    color: #FFB800;
    font-size: 12px;
    animation: starPulse 2s infinite;
}

.star-badge span {
    color: #FFB800;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-item:hover .star-badge {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.5);
}

@keyframes starPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Media Queries for Gallery */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-grid {
        gap: 15px;
    }

    .gallery-info h3 {
        font-size: var(--fs-md);
    }

    .gallery-info p {
        font-size: var(--fs-xs);
    }

    .star-badge {
        padding: 1.5px;
    }

    .star-badge-inner {
        padding: 4px 12px;
    }

    .star-badge i {
        font-size: 10px;
    }

    .star-badge span {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 40px 0;
    }

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

    .gallery-item {
        aspect-ratio: 4/3;
    }

    .gallery-info h3 {
        font-size: var(--fs-sm);
    }

    .star-badge {
        padding: 1px;
        top: 10px;
        right: 10px;
    }

    .star-badge-inner {
        padding: 3px 10px;
    }

    .star-badge i {
        font-size: 9px;
    }

    .star-badge span {
        font-size: 9px;
        letter-spacing: 0.3px;
    }
}

/* Pricing Section */
.pricing-section {
    background-color: #ffffff;
    padding: 100px 0;
    color: #000000;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    gap: 15px;
}

.header-line {
    height: 2px;
    width: 100px;
    background: #FFB800;
}

.header-dot {
    width: 8px;
    height: 8px;
    background: #FFB800;
    border-radius: 50%;
}

.pricing-section .section-title {
    color: #000000;
    margin: 0;
    padding: 0;
    font-size: 2.5rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    font-family: 'Red Rose', cursive;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.service-col {
    flex: 1;
}

.service-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 5px;
}

.service-name {
    color: #000000;
    font-size: var(--fs-md);
    font-weight: var(--fw-semibold);
    white-space: nowrap;
}

.service-dots {
    flex: 1;
    border-bottom: 2px dotted #cccccc;
    margin: 0 10px;
}

.service-price {
    color: #000000;
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    white-space: nowrap;
}

.service-desc {
    color: #666666;
    font-size: var(--fs-sm);
    font-style: italic;
    margin-top: 5px;
}

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

/* Media Queries for Pricing Section */
@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-section .section-title {
        font-size: 2rem;
    }

    .header-line {
        width: 60px;
    }

    .services-list {
        padding: 0 20px;
    }

    .service-row {
        gap: 20px;
    }

    .service-name, .service-price {
        font-size: var(--fs-sm);
    }

    .service-desc {
        font-size: var(--fs-xs);
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 40px 0;
    }

    .pricing-section .section-title {
        font-size: 1.5rem;
    }

    .header-line {
        width: 40px;
    }

    .header-dot {
        width: 6px;
        height: 6px;
    }

    .service-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .service-item {
        margin-bottom: 3px;
    }

    .service-dots {
        margin: 0 5px;
    }
}

/* Reviews Section */
.reviews-section {
    background-color: #0a0a0a;
    padding: 100px 0;
    position: relative;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-subtitle {
    color: #999;
    font-size: var(--fs-md);
    margin-top: 10px;
}

/* Reviews Grid */
/* Testimonials Slider */
.testimonials {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonials-viewport {
    overflow: hidden;
    width: 100%;
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 184, 0, 0.4);
    background: rgba(255, 184, 0, 0.1);
    color: #FFB800;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #FFB800;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 184, 0, 0.25);
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 184, 0, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-width: calc((100% - 60px) / 3);
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 184, 0, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #FFB800;
}

.reviewer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info h3 {
    color: #ffffff;
    font-size: var(--fs-md);
    margin: 0;
}

.rating {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating i {
    color: #FFB800;
    font-size: var(--fs-lg);
}

.rating-number {
    color: #FFB800;
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    margin-left: 10px;
}

.review-text {
    color: #999;
    font-size: var(--fs-sm);
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
    flex-grow: 1;
}

.review-date {
    color: #666;
    font-size: var(--fs-xs);
    margin-top: auto;
}

/* Review Form */
.review-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 184, 0, 0.1);
    border-radius: 15px;
    padding: 40px;
}

.form-title {
    color: #ffffff;
    font-size: var(--fs-lg);
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Red Rose', cursive;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #FFB800;
    margin-bottom: 8px;
    font-size: var(--fs-sm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 5px;
    color: #ffffff;
    font-size: var(--fs-sm);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFB800;
    background: rgba(255, 255, 255, 0.1);
}

.star-rating {
    display: flex;
    gap: 5px;
    color: #666;
    font-size: var(--fs-md);
    cursor: pointer;
}

.star-rating i {
    transition: all 0.2s ease;
}

.star-rating i:hover {
    color: #FFB800;
    transform: scale(1.2);
}

.star-rating i.active {
    color: #FFB800;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #FFB800;
    color: #000000;
    border: none;
    border-radius: 5px;
    font-size: var(--fs-md);
    font-weight: var(--fw-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

/* Media Queries for Reviews Section */
@media (max-width: 1024px) {
    .review-card {
        min-width: calc((100% - 30px) / 2);
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }

    .testimonials {
        gap: 6px;
    }

    .review-card {
        min-width: 100%;
    }

    .rating i {
        font-size: var(--fs-md);
    }

    .rating-number {
        font-size: var(--fs-sm);
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 40px 0;
    }

    .review-card {
        padding: 20px;
    }

    .reviewer-image {
        width: 50px;
        height: 50px;
    }

    .review-text {
        font-size: var(--fs-xs);
    }

    .rating {
        margin: 10px 0;
    }

    .rating i {
        font-size: var(--fs-sm);
    }

    .rating-number {
        font-size: var(--fs-xs);
    }
}

/* Contact Section */
.contact-section {
    background-color: #ffffff;
    padding: 100px 0;
    color: #333333;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-title.dark {
    color: #333333;
}

.section-subtitle {
    color: #666666;
    font-size: var(--fs-md);
    margin-top: 10px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

/* Contact Image Styles */
.contact-image {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
}

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

.contact-wrapper:hover .contact-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
}

.contact-quote {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: #ffffff;
    text-align: center;
}

.contact-quote i {
    font-size: 30px;
    color: #FFB800;
    margin-bottom: 15px;
}

.contact-quote p {
    font-size: var(--fs-lg);
    font-family: 'Red Rose', cursive;
    line-height: 1.4;
    font-style: italic;
}

/* Contact Form Styles */
.contact-form {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    color: #333333;
    font-size: var(--fs-lg);
    margin-bottom: 10px;
    font-family: 'Red Rose', cursive;
}

.form-header p {
    color: #666666;
    font-size: var(--fs-sm);
}

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

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group.full {
    grid-column: span 2;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: var(--fs-sm);
    color: #333333;
    transition: all 0.3s ease;
    background: #ffffff;
}

.input-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333333' viewBox='0 0 16 16'%3E%3Cpath d='M8 11l-7-7h14l-7 7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.input-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 0 5px;
    color: #666666;
    font-size: var(--fs-sm);
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-group textarea {
    min-height: 120px;
    resize: vertical;
}

.input-group textarea + label {
    top: 20px;
    transform: none;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-color: #FFB800;
    outline: none;
}

.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:not(:placeholder-shown) + label {
    top: -12px;
    font-size: var(--fs-xs);
    color: #FFB800;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: #FFB800;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: var(--fs-md);
    font-weight: var(--fw-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #333333;
    transform: translateY(-3px);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

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

/* Media Queries for Contact Section */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .contact-image {
        height: 400px;
    }

    .contact-quote p {
        font-size: var(--fs-md);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }

    .contact-image {
        height: 300px;
    }

    .contact-quote {
        bottom: 30px;
        left: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-image {
        height: 250px;
    }

    .contact-quote i {
        font-size: 24px;
    }

    .contact-quote p {
        font-size: var(--fs-sm);
    }

    .submit-btn {
        padding: 12px 20px;
        font-size: var(--fs-sm);
    }

    .form-header h3 {
        font-size: var(--fs-md);
    }
}

/* Responsive Design */
/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #FFB800;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-container {
        grid-template-columns: 1fr auto 1fr;
        position: relative;
    }
    
    .nav-left,
    .nav-right {
        display: none;
    }
    
    /* Allow showing the left nav container when toggled */
    .nav-left.show {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu,
    .nav-menu.mobile {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        padding: 80px 20px;
        z-index: 999;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active,
    .nav-menu.mobile.active {
        display: flex;
    }

    .nav-menu a {
        font-size: 18px;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.4s forwards;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.4s forwards;
    }

    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu li:nth-child(6) { animation-delay: 0.6s; }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-title {
        font-size: 36px;
        text-align: center;
    }

    .about-title::after {
        display: none;
    }

    .about-text::before {
        display: none;
    }

    .about-text {
        padding: 20px 0;
    }

    .story-left, .story-right {
        font-size: 15px;
        padding: 15px;
        text-align: center;
    }
    
    .hero-content {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        letter-spacing: 1px;
        -webkit-text-stroke: 1px #FFB800;
        text-shadow: 
            2px 2px 0 #ffffff,
            -1px -1px 0 #000,  
            1px -1px 0 #000,
            -1px 1px 0 #000,
            1px 1px 0 #ffffff;
    }

    .hero-content h2 {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .info-container {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .info-card {
        width: 100%;
        justify-content: center;
        padding: 15px;
        background: rgba(255, 184, 0, 0.05);
        border-radius: 10px;
    }

    .info-divider {
        width: 80%;
        height: 1px;
        background: linear-gradient(to right, transparent, #FFB800, transparent);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .service-icon {
        width: 100px;
        height: 100px;
    }

    .service-icon-inner {
        width: 50px;
        height: 50px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

/* Additional Mobile Styles */
body.menu-open {
    overflow: hidden;
}

@media (max-width: 480px) {
    .header {
        padding: 15px 0;
    }

    .logo img {
        height: 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero-content h2 {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .service-icon-inner {
        width: 40px;
        height: 40px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .info-card {
        padding: 12px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .info-icon i {
        font-size: 18px;
    }

    .info-label {
        font-size: 11px;
    }

    .info-value {
        font-size: 13px;
    }

    .about-title {
        font-size: 28px;
    }

    .story-left, .story-right {
        font-size: 14px;
        line-height: 1.7;
        padding: 12px;
    }
}

/* Contact Info Section Styles */
.contact-info-section {
    background: #0a0a0a;
    padding: 80px 0;
    color: white;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info-header {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.contact-info-icon {
    width: 20px;
    height: 20px;
    background: #ffd700;
    transform: rotate(45deg);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon i {
    color: #2a2a2a;
    transform: rotate(-45deg);
    font-size: 10px;
}

.contact-info-title {
    color: #ffd700;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
}

.contact-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-left {
    display: flex;
    flex-direction: column;
}

.location-title {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 40px 0;
    color: white;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-icon {
    color: #ffd700;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-main {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.contact-sub {
    color: #999;
    font-size: 14px;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    border: 1px solid #ffd700;
    background: transparent;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffd700;
    color: #2a2a2a;
}

.contact-info-middle {
    display: flex;
    justify-content: center;
}

.hours-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 90px;

}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #444;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.time {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.contact-info-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 100px;
}

.map-container {
    width: 400px;
    height: 270px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    background-image: url('../images/7.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(0,0,0,0.3) 0%, 
        transparent 20%, 
        transparent 80%, 
        rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.map-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, 
        rgba(0,0,0,0.2) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(0,0,0,0.2) 100%);
    z-index: 2;
}


/* Responsive Design for Contact Info Section */
@media (max-width: 1024px) {
    .contact-info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-title {
        font-size: 36px;
    }
    
    .map-container {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 60px 0;
    }
    
    .location-title {
        font-size: 28px;
    }
    
    .contact-info-content {
        gap: 30px;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-info-section {
        padding: 40px 0;
    }
    
    .location-title {
        font-size: 24px;
    }
    
    .contact-main {
        font-size: 14px;
    }
    
    .contact-sub {
        font-size: 12px;
    }
    
    .social-link {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .map-container {
        width: 100%;
    }
    
    .map-pin {
        font-size: 20px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    padding: 80px 0 30px;
    color: white;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.footer-logo img {
    height: 100px;
    width: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-tagline {
    color: #ffd700;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
    position: relative;
}

.footer-tagline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #ffd700;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background: #ffd700;
    color: #0a0a0a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-main {
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .footer-logo img {
        height: 70px;
    }
    
    .footer-tagline {
        font-size: 16px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-main {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .footer-tagline {
        font-size: 14px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
	will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
	opacity: 1;
	transform: none;
}

/* Allow stagger via --reveal-delay injected from JS */
.reveal-on-scroll {
	transition-delay: var(--reveal-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
	.reveal-on-scroll {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    height: 120px;
    width: auto;
    filter: brightness(1.1) contrast(1.1);
}

.preloader-dots {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.preloader-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFB800;
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.6);
    animation: dotPulse 1.2s ease-in-out infinite;
}

.preloader-dot:nth-child(1) { animation-delay: 0s; }
.preloader-dot:nth-child(2) { animation-delay: 0.15s; }
.preloader-dot:nth-child(3) { animation-delay: 0.30s; }
.preloader-dot:nth-child(4) { animation-delay: 0.45s; }

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.6);
        opacity: 1;
    }
}