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

:root {
    --primary-color: #ff3131;
    --secondary-color: #002855;
    --accent-color: #ff3131;
    --dark-color: #1d1d1d;
    --light-color: #F8F9FA;
    --text-color: #1d1d1d;
    --text-light: #666;
    --white: #FFFFFF;
    --gradient-1: linear-gradient(135deg, #002855 0%, #1d1d1d 100%);
    --gradient-2: linear-gradient(135deg, #ff3131 0%, #002855 100%);
    --gradient-3: linear-gradient(135deg, #002855 0%, #ff3131 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

#about h2 {
    color: #0046eb;
    margin-bottom: 5px;
    font-size: 2.5rem;
	font-weight: 500;
	text-align: center;
}
#reviews h2 {
    color: #0046eb;
    margin-bottom: 5px;
    font-size: 2.5rem;
	font-weight: 500;
	text-align: center;
}
.reviews-text {
	text-align: center;
	}
#faq h2 {
    color: #0046eb;
    margin-bottom: 5px;
    font-size: 2.5rem;
	font-weight: 500;
	text-align: center;
}
.faq-text {
	text-align: center;
	}
#contact h2 {
    color: #0046eb;
    margin-bottom: 5px;
    font-size: 2.5rem;
	font-weight: 500;
	text-align: center;
}
.contact-text {
	text-align: center;
	}	

hr.title {
    max-width: 265px;
    margin: 0 auto 30px;
    height: 10px;
    background-color: #0046ed;
    border: 0;
}
	
	
	
	
.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100%;
}

/* Ensure onlineform container doesn't override main container */
body > .container,
section .container,
.hero .container {
    max-width: 1200px !important;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
  
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
    opacity: 1;
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.navbar.scrolled {
    background: rgb(0 95 248 / 58%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    background: transparent;
    border-radius: 10px;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo-image {
    height: 90px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #032f86;
    opacity: 0.8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 130px;
    padding-bottom: 2rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-image: url('images/hero-banner-WashmeLoveme.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}

.hero-content {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 4rem;
    align-items: start;
    width: 100%;
    z-index: 1;
}

.hero-text {
    color: var(--white);
	margin-top: 0px;
}

.hero-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease;
    text-align: left;
}

.title-line.highlight {
    color: #ff6b6b;
    animation: slideInLeft 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeIn 1s ease 0.4s both;
}

.hero-contact-section {
    margin-top: 2rem;
    text-align: left;
}

.hero-contact-title {
    text-align: left;
    color: #fff !important;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-contact-section .footer-social-icons {
    margin-top: 1rem;
    justify-content: flex-start;
}

.hero-position {
    color: #fff;
}

.hero-position h1,
.hero-position h3,
.hero-position h4,
.hero-position p {
    color: #fff;
}

/* Booking Form Container */
.booking-iframe-container {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(3px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    animation: slideInRight 1s ease;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
	margin-top: 0px;
}

.booking-form-wrapper {
    width: 100%;
}

.booking-form-wrapper .container {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.booking-form-wrapper h1 {
    display: none;
}

.booking-form-wrapper h2 {
    color: #032f86;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.booking-form-wrapper .selection-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

/* Step 1 vehicle grid (embedded booking form) */
.booking-form-wrapper .selection-grid.selection-grid--vehicles {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
}

@media (max-width: 1000px) {
    .booking-form-wrapper .selection-grid.selection-grid--vehicles {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }

    .booking-form-wrapper .selection-grid.selection-grid--vehicles .selection-card:nth-child(5) {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc((100% - 1rem) / 2);
    }
}

@media (min-width: 1001px) {
    /* Desktop: 3 cards first row, 2 centered on second row */
    .booking-form-wrapper .selection-grid.selection-grid--vehicles {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .booking-form-wrapper .selection-grid.selection-grid--vehicles .selection-card {
        grid-column: span 2;
        width: auto;
        justify-self: stretch;
    }

    /* Place last 2 cards in the middle (leave 1 column margin each side) */
    .booking-form-wrapper .selection-grid.selection-grid--vehicles .selection-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .booking-form-wrapper .selection-grid.selection-grid--vehicles .selection-card:nth-child(5) {
        grid-column: 4 / span 2;
        width: auto;
        justify-self: stretch;
    }
}

.booking-form-wrapper .selection-card {
    background: white;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
}

.booking-form-wrapper .selection-card:hover {
    border-color: #032f86;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(196, 18, 23, 0.15);
}

.booking-form-wrapper .selection-card.selected {
    border-color: #032f86;
    background-color: rgb(245 240 240 / 60%);
}

.booking-form-wrapper .btn-primary {
    background-color: var(--primary-color);
}

.booking-form-wrapper .btn-primary:hover {
    background-color: #a00e12;
}

.booking-form-wrapper .time-slot.selected {
    background-color: var(--secondary-color);
    color: white;
}

.booking-form-wrapper .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 40, 85, 0.1);
}


/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--light-color);
}

.section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.services-section-header {
    display: grid;
    grid-template-columns: 20% 1fr;
    gap: 2rem;
    align-items: center;
    text-align: left;
    margin-bottom: 4rem;
}

.services-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-header-svg {
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.services-header-content .section-title {
    margin-bottom: 1rem;
}

.services-header-content .section-subtitle {
    margin-bottom: 0;
}

.section-title {
    font-size: 2.5rem;
    color: #032f86;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #010101;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.service-card-link:hover {
    transform: translateY(-5px);
}

.service-card-link:hover .service-card {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    
    opacity: 0.1;
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.service-icon-img {
    width: 12rem;
    height: 12rem;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #005ff9;
    margin-bottom: 1rem;
}

.service-card-moto h3,
.service-card-moto h5 {
    color: #00a2af;
}

.service-card-van h3,
.service-card-van h5 {
    color: #af41c5;
}

.service-card-car h5 {
    color: #005ff9;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.special-wash-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.special-wash-icon {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    flex-shrink: 0;
}

.service-card-line {
    display: block;
    margin: 0;
    width: 100%;
    height: 14px;
}

.service-card .service-card-line:first-of-type {
    height: 26px;
}

.service-card .service-card-line:nth-of-type(2) {
    height: 20px;
}

.service-card-line--car {
    color: #005ff9;
}

.service-card-line--moto {
    color: #00a2af;
}

.service-card-line--van {
    color: #af41c5;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.polish-service-fullwidth .service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
    position: relative;
    padding-left: 3.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 30px;
    color: #002855;
    font-weight: bold;
}

.service-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ff3131;
    margin-top: 1rem;
}

/* Delivery Banner Section */
.delivery-banner {
    padding: 4rem 0;
    background: #17bec9;
    position: relative;
    overflow: hidden;
    margin: 3rem 0;
}

.delivery-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.delivery-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.delivery-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-icon-img {
    width: 15rem;
    height: 15rem;
    object-fit: contain;
    animation: bounce 2s ease-in-out infinite;
}

.delivery-text {
    flex: 1;
    min-width: 300px;
    color: var(--white);
}

.delivery-title {
    font-size: 2rem;
    font-weight: 600;
    text-shadow: none;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.2;
}

.delivery-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #fff;
    text-align: center;
    margin: 0;
}

.delivery-description strong {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.delivery-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
}

.delivery-btn,
.delivery-btn-secondary {
    display: inline-block;
    text-decoration: none;
}

.delivery-btn-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Special Services Section */
.special-services {
    background: linear-gradient(135deg, rgba(196, 18, 23, 0.05) 0%, rgba(0, 40, 85, 0.05) 100%);
}

.special-services .service-card {
    border: 2px solid rgba(196, 18, 23, 0.1);
}

.special-services .service-card:hover {
    border-color: rgba(196, 18, 23, 0.3);
}

/* Detailing Services Section */
.detailing-services {
    background: var(--white);
}

.detailing-services .service-card {
    min-height: auto;
}

.detailing-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 2.25rem 2.25rem;
    max-width: 980px;
    margin: 0 auto;
    text-align: left;
}

/* Force left-alignment for detailing text */
.detailing-services .detailing-card h3,
.detailing-services .detailing-card h4,
.detailing-services .detailing-card p,
.detailing-services .detailing-card ul,
.detailing-services .detailing-card li,
.detailing-services .detailing-card strong,
.detailing-services .detailing-package-text {
    text-align: left;
}

/* Override for centered benefits block */
.detailing-services .detailing-benefits-title,
.detailing-services .detailing-benefits {
    text-align: center;
}

/* Keep prices aligned as designed */
.detailing-services .detailing-row-price,
.detailing-services .detailing-package-price,
.detailing-services .detailing-box-price {
    text-align: right;
}

.detailing-top {
    display: block;
    margin-bottom: 1.25rem;
}

.detailing-header-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    
}

.detailing-split {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 2rem;
    align-items: start;
}

.detailing-split-left {
    min-width: 0;
}

.detailing-split-right {
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

.detailing-illustration {
    width: 100%;
    max-width: 250px;
    height: auto;
    flex: 0 0 auto;
}

.detailing-intro {
    margin: 1.25rem 0 1.75rem 0;
    color: var(--text-color);
    font-weight: 500;
}

.detailing-row {
    margin: 1.5rem 0;
}

.detailing-row-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.detailing-row-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #032f86;
}

.detailing-row-price {
    color: #ff3131;
    font-weight: 700;
    white-space: nowrap;
}

.detailing-row p {
    margin: 0.75rem 0 0 0;
    color: var(--text-color);
}

.detailing-row-line {
    height: 5px;
    background: #005ff9;
    border-radius: 5px;
    margin-top: 1rem;
}

.detailing-row--compact .detailing-row-line {
    margin-top: 0.85rem;
}

.detailing-benefits-title {
    width: 900px;
    margin: 0 auto !important;
    text-align: center!important;
    padding-bottom: 20px;
    color: #032f86!important;
    font-size: 1.3rem;
}

.detailing-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
    margin: 0 auto;
    width: 670px;
    text-align: center;
    justify-items: center;
}

.detailing-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.5rem;
}

.detailing-benefits-list li {
    position: relative;
    padding-left: 34px;
    line-height: 1.45;
}

.detailing-benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.05rem;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #005ff9;
    color: #005ff9;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.9rem;
}

.detailing-spark {
    width: 140px;
    max-width: 100%;
    height: auto;
    justify-self: end;
}

.detailing-packages {
    margin: 0 auto;
    width: 700px;
}

.detailing-package {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.85rem 0 0.75rem 0;
    border-bottom: 5px solid #005ff9;
}

.detailing-package-text {
    color: var(--text-color);
    font-weight: 500;
}

.detailing-package-price {
    color: #ff3131;
    font-weight: 800;
    white-space: nowrap;
}

.detailing-boxes {
    display: grid;
    gap: 1.25rem;
    margin: 0 auto;
    width: 600px;
}

.detailing-box {
    border: 2px solid #005ff9;
    padding: 1.25rem 1.25rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: start;
}

.detailing-box-text strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #032f86;
}

.detailing-box-text p {
    margin: 0.5rem 0 0 0;
    color: var(--text-color);
}

.detailing-box-price {
    color: #ff3131;
    font-weight: 800;
    text-align: right;
    white-space: nowrap;
    padding-top: 0.15rem;
}

.detailing-box-price div + div {
    margin-top: 0.35rem;
}

.polish-service-fullwidth {
    margin-top: 2rem;
    width: 100%;
}

.polish-service-fullwidth .service-card-link {
    display: block;
    width: 100%;
}

.polish-service-fullwidth .service-card {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .detailing-card {
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
    }

    .detailing-header-img {
        max-width: 100%;
    }

    .detailing-split {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .detailing-split-right {
        justify-content: flex-start;
    }

    .detailing-illustration {
        width: 100%;
        max-width: 320px;
    }

    .detailing-benefits {
        grid-template-columns: 1fr;
        width: 100%;
        margin: 0;
    }

    .detailing-benefits-list {
        grid-template-columns: 1fr;
    }

    .detailing-package {
        flex-direction: column;
        align-items: flex-start;
    }

    .detailing-packages {
        width: 100%;
        margin: 0;
    }

    .detailing-box {
        grid-template-columns: 1fr;
    }

    .detailing-box-price {
        text-align: left;
    }

    .detailing-boxes {
        width: 100%;
        margin: 0;
    }
}

.detail-option {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 40, 85, 0.05);
    border-radius: 10px;
    border-left: 5px solid #005ff9;
}

.detail-option strong {
    display: block;
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.detail-option .service-price {
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

/* Video Section */
.videos {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 18, 23, 0.03) 0%, rgba(0, 40, 85, 0.03) 100%);
    z-index: 0;
}

.videos .container {
    position: relative;
    z-index: 1;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: url('images/VIDEO-BOX.svg') center / cover no-repeat;
    cursor: pointer;
    animation: fadeInUp 0.6s ease both;
}

.video-card:nth-child(1) {
    animation-delay: 0.1s;
}

.video-card:nth-child(2) {
    animation-delay: 0.2s;
}

.video-card:nth-child(3) {
    animation-delay: 0.3s;
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 18, 23, 0.1) 0%, rgba(0, 40, 85, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.video-card:hover::before {
    opacity: 1;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: transparent;
    overflow: hidden;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-player {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease, background 0.3s ease;
    z-index: 2;
}

.video-card.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: none;
    margin-bottom: 1.5rem;
    box-shadow: none;
    position: relative;
    animation: none;
}

.video-play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    animation: none;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.video-play-btn:hover {
    transform: scale(1.15);
    background: rgb(18 77 134);
    box-shadow: none;
    animation: none;
}

.video-play-btn .play-icon {
    width: 35px;
    height: 35px;
    fill: white;
    margin-left: 5px;
}

.video-info {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.video-title {
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-duration {
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.video-card:hover .video-controls,
.video-card.playing .video-controls {
    opacity: 1;
}

.control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.control-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.video-progress {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.progress-bar {
    width: 100%;
    height: 100%;
    position: relative;
}

.progress-filled {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 2px;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: var(--shadow);
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-icon {
    font-size: 3rem;
    color: var(--white);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    margin: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    line-height: 1;
}

.lightbox-close:hover {
    color: #ff6b6b;
    transform: scale(1.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    padding: 20px;
    user-select: none;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #ff6b6b;
    transform: translateY(-50%) scale(1.2);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-text {
    font-size: 1.3rem;
    color: #032f86;
    font-weight: 600;
    margin-bottom: 1rem;
}

.features-list {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 2rem;
}

.feature-item, .feature-item1, .feature-item2, .feature-item3, .feature-item4 {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
    align-items: flex-start;
}

.feature-icon {
    width: 80px;
    min-width: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.feature-icon img {
    width: 80px;
    min-width: 80px;
    height: auto;
    display: block;
}

.feature-item1 h4 {
    color: #ac17bc;
    margin-bottom: 0.5rem;
}
.feature-item2 h4 {
    color: #00929f;
    margin-bottom: 0.5rem;
}
.feature-item3 h4 {
    color: #005ff9;
    margin-bottom: 0.5rem;
}
.feature-item4 h4 {
    color: #032f86;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .features-list {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.about-image {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.about-facility-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
    border-radius: 0px;
}

/* Reviews Section */
.reviews {
    padding: 6rem 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--white);
    border: 2px solid rgba(56, 82, 133, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #005ff9;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.review-avatar-link:hover {
    transform: scale(1.1);
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #005ff9 0%, #005ff954 100%);
    
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
}

.review-name-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: color 0.3s ease;
}

.review-name-link:hover {
    color: #ff3131;
}

.review-author h4 {
    margin: 0;
    color: #005ff9;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.review-name-link h4 {
    margin: 0;
    color: #010101;
    font-size: 1.1rem;
}

.review-rating {
    margin-top: 0.3rem;
}

.review-rating .star {
    color: #ac17bc;
    font-size: 1rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0 0 1rem 0;
    font-style: italic;
}

.review-link {
    display: inline-flex;
    align-items: center;
    color: #010101;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.review-link:hover {
    color: #005ff9;
    transform: translateX(5px);
}

.review-link::after {
    content: '→';
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.review-link:hover::after {
    transform: translateX(3px);
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.reviews-cta a {
    color: #005ff9;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.reviews-cta a:hover {
    color: #ff3131;
    text-decoration: underline;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--light-color);
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(56, 82, 133, 0.05);
}

.faq-question h3 {
    margin: 0;
    color: #005ff9;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: #005ff9;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.7;
    padding-top: 1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--light-color);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-card-link:focus,
.contact-card-link:active,
.contact-card-link:hover {
    text-decoration: none;
    outline: none;
}

.contact-card-link * {
    text-decoration: none !important;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card-link:hover .contact-card {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: #f8f9fa;
}

.contact-icon {
    font-size: 3rem;
    
}

.contact-card h3 {
    color: #005ff9;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}


.contact-map {
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* Footer */
.footer {
    background: #0046ed;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo {
    width: 360px;
    height: auto;
    max-width: 100%;
    display: block;
}

.footer-contact-title {
    text-align: center;
    color: #005ff9;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.footer-social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    align-items: center;
    justify-content: center;
}

.footer-social-icons .social-icon {
    display: inline-block;
    text-decoration: none;
}

.footer-social-icons .social-icon img {
    width: 60px;
    height: 60px;
    display: block;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgb(239 234 234 / 70%);
    opacity: 1;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

.fade-in-up {
    animation: fadeInUp 1s ease both;
}

.delay-1 {
    animation-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: flex-start;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .booking-iframe-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 1.5rem;
    }
    
    .booking-form-wrapper .selection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .booking-form-wrapper .selection-card {
        padding: 1rem 0.75rem;
    }
    
    .booking-form-wrapper .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        color: #1D1D1D;
        text-shadow: none;
    }
    
    .nav-menu .nav-link:hover {
        color: #ff3131;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 140px 0 8rem;
    }

    .hero-text {
        margin-top: -10px;
		
    }
    
    .hero-title {
        font-size: 24px;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-contact-section {
        margin-top: 1.5rem;
    }
    
    .hero-contact-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-contact-section .footer-social-icons .social-icon img {
        width: 28px;
        height: 28px;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .booking-iframe-container {
        width: 100%;
        max-width: 100%;
    }
    
    .booking-iframe {
        height: 540px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

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

@media (max-width: 768px) {
    
    .services-section-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-header-icon {
        order: -1;
    }
    
    .services-header-svg {
        max-width: 120px;
    }
    
    .services-header-content {
        text-align: center;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .detail-option {
        padding: 0.8rem;
        margin-top: 1rem;
    }
    
    .detail-option strong {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .detail-option .service-price {
        font-size: 1rem;
        margin-top: 0.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .polish-service-fullwidth .service-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    /* Delivery Banner Responsive */
    .delivery-banner {
        padding: 2.5rem 0;
        margin: 2rem 0;
    }
    
    .delivery-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .delivery-icon-img {
        width: 16rem;
        height: 16rem;
    }
    
    .delivery-text {
        min-width: auto;
    }
    
    .delivery-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .delivery-description {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .delivery-description strong {
        font-size: 1.1rem;
    }
    
    .delivery-cta {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .about-facility-image {
        min-height: 300px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-map {
        margin-top: 2rem;
    }
    
    .contact-map iframe {
        height: 300px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        padding: 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 2.5rem;
    }
    
    .lightbox-image {
        max-width: 95%;
        max-height: 85%;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-play-btn {
        width: 70px;
        height: 70px;
    }
    
    .video-play-btn .play-icon {
        width: 30px;
        height: 30px;
    }
    
    .video-title {
        font-size: 1.1rem;
    }
    
    /* Reviews Section Responsive */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    /* FAQ Section Responsive */
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }
}

