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

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

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

/* Grand Opening Banner */
.grand-opening-banner {
    background: #60a5fa !important;
    background-color: #60a5fa !important;
    opacity: 1 !important;
    color: white;
    text-align: center;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.nav-container {
    width: 100%;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-logo {
    text-align: center;
}

.nav-logo h1 {
    color: #60a5fa;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.nav-info {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.nav-info-item i {
    color: #01fe02;
    font-size: 12px;
}

.nav-info-item a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-info-item a:hover {
    color: #60a5fa;
}

.nav-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.nav-contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.nav-contact-item i {
    color: rgb(60, 104, 158);
    font-size: 12px;
}

.nav-contact-item a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-contact-item a:hover {
    color: #60a5fa;
}

.nav-menu {
    display: flex !important;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
    margin-left: -20px !important;
    padding-left: 60px !important;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #60a5fa;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #60a5fa;
    transition: width 0.3s ease;
}

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

.instagram-link {
    font-size: 1.2rem;
    color: #60a5fa;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: #01fe02;
}

.instagram-link::after {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 150px 0 100px;
    display: flex;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

/* Hero Design Variants */
.hero-design-1 {
    /* Default centered layout */
    justify-content: center;
}

.hero-design-2 {
    /* Left-aligned with more space */
    justify-content: flex-start;
    padding-left: 8%;
}

.hero-design-3 {
    /* Right-aligned layout */
    justify-content: flex-end;
    padding-right: 8%;
}

.hero-design-4 {
    /* Split layout with content on left, rating card on right */
    justify-content: space-between;
    align-items: center;
    padding: 150px 5% 100px;
}

.hero-design-5 {
    /* Centered but with wider content area */
    justify-content: center;
    padding: 150px 10% 100px;
}

.hero-design-6 {
    /* Stacked layout - title and subtitle stacked, rating card below */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-design-7 {
    /* Minimalist layout - very clean and spacious */
    justify-content: center;
    padding: 150px 15% 100px;
}

.hero-design-8 {
    /* Asymmetric layout - content offset to left */
    justify-content: flex-start;
    padding-left: 15%;
}

.hero-design-9 {
    /* Full-width layout with content spanning most of screen */
    justify-content: center;
    padding: 150px 5% 100px;
}

.hero-design-10 {
    /* Compact layout - everything closer together */
    justify-content: center;
    align-items: flex-start;
    padding-top: 15vh;
}

/* Hero Content Design Variants */
.hero-design-1 .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-design-2 .hero-content {
    max-width: 700px;
    margin-right: 50px;
}

.hero-design-3 .hero-content {
    max-width: 700px;
    margin-left: 50px;
}

.hero-design-4 .hero-content {
    max-width: 600px;
    margin-right: 50px;
}

.hero-design-4 .overall-rating-card {
    margin: 0;
    max-width: 400px;
}

.hero-design-5 .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-design-6 .hero-content {
    max-width: 700px;
    margin-bottom: 40px;
}

.hero-design-6 .overall-rating-card {
    margin: 0 auto;
    max-width: 500px;
}

.hero-design-7 .hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-design-8 .hero-content {
    max-width: 650px;
    margin-right: 50px;
}

.hero-design-9 .hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-design-10 .hero-content {
    max-width: 750px;
    margin: 0 auto;
}

/* Special styling for design 6 (stacked) */
.hero-design-6 .hero-title {
    margin-bottom: 20px;
}

.hero-design-6 .hero-subtitle {
    margin-bottom: 30px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transform: scale(1.55);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    z-index: 2;
}

.hero-darkness {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1.5;
    transition: background 0.3s ease;
}

.hero-content {
    position: relative;
    z-index: 3;
    flex: 1;
    max-width: 800px;
    margin-right: 50px;
    padding-left: 60px;
    padding-top: 80px;
    overflow: visible;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: none;
    animation: gradientShift 3s ease-in-out infinite;
    letter-spacing: -0.02em;
    white-space: nowrap;
    min-width: max-content;
    width: max-content;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 45px;
    line-height: 1.7;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    letter-spacing: 0.01em;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(96, 165, 250, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    background: #60a5fa;
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.hero-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f0f9ff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(90deg, rgba(0, 210, 255, 0.28), rgba(58, 71, 213, 0.28));
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #60a5fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

/* LaundryCat App Section */
.app-section {
    padding: 100px 0;
    background: #f8fafc;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.app-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.app-description {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 500;
}

.app-feature i {
    color: #60a5fa;
    font-size: 1.2rem;
    width: 20px;
}

.app-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #333;
}

.app-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: white;
    background: #1a1a1a;
}

.app-store-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.apple-logo {
    width: 18px;
    height: 22px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.app-download-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-download-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.app-store-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.app-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-preview {
    width: 200px;
    height: 200px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.app-preview:hover {
    transform: scale(1.05);
}

/* Location Section */
.location {
    padding: 100px 0;
    background: linear-gradient(90deg, rgba(0, 210, 255, 0.28), rgba(58, 71, 213, 0.28));
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.location-right-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location .section-title {
    color: #3c689e;
    display: none;
}

.location-info h3 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 20px;
}

.location-info p {
    font-size: 1.1rem;
    color: #000000;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-info i {
    color: rgb(60, 104, 158);
    width: 20px;
}

.location-info .contact-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.location-info .contact-link:hover {
    color: #60a5fa;
    text-decoration: underline;
}

.location-features {
    margin-top: 30px;
}

.location-features h4 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 20px;
}

.location-features ul {
    list-style: none;
}

.location-features li {
    padding: 8px 0;
    color: #000000;
    position: relative;
    padding-left: 25px;
}

.location-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgb(60, 104, 158);
    font-weight: bold;
}

.map-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 400px;
    background: #60a5fa;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-placeholder small {
    font-size: 1rem;
    opacity: 0.8;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #f0f9ff;
}

.reviews-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.sticky-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.overall-rating-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    position: sticky;
    top: 80px;
    z-index: 10;
}

/* Hero section rating card - 10% wider */
.hero .overall-rating-card {
    width: 110%;
    max-width: none;
    margin: 0;
    padding-left: 60px;
}

/* Hero section rating card button - 20% larger */
.hero .overall-rating-card .review-button {
    padding: 14px 29px;
    font-size: 19px;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #60a5fa;
}

.stars {
    font-size: 1.5rem;
    color: #fbbf24;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
}

.google-logo {
    height: 20px;
    width: auto;
}

.review-button {
    background: #60a5fa;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    position: relative;
}

.ai-summary-card {
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
    align-self: start;
    position: sticky;
    top: 80px;
    z-index: 10;
}

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

.ai-icon {
    font-size: 1.5rem;
    background: linear-gradient(90deg, rgba(0, 210, 255, 0.28), rgba(58, 71, 213, 0.28));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-summary-card h3 {
    color: #60a5fa;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.ai-subtitle {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 10px;
}

.ai-stars {
    font-size: 1.2rem;
    color: #fbbf24;
    margin-bottom: 12px;
}

.ai-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #374151;
    line-height: 1.5;
}

.ai-points li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    font-size: 16px;
    margin-top: 2px;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#google-reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #60a5fa;
}

.footer-section p {
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #01fe02;
    text-decoration: underline;
}

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

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

.footer-section ul li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

.footer-section p a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #cbd5e1;
}

/* A/B Test Widget */
.ab-test-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 350px;
    transition: all 0.3s ease;
}

.switcher-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
    background: #60a5fa;
    color: white;
    border-radius: 15px 15px 0 0;
}

.switcher-header span {
    font-weight: 600;
    font-size: 14px;
}

.switcher-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.switcher-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.switcher-options {
    padding: 15px;
    display: none;
    flex-direction: column;
    gap: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.switcher-options.show {
    display: flex;
}

.switcher-section {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.switcher-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.switcher-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.switcher-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.switcher-option:hover {
    border-color: #01fe02;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.switcher-option.active {
    border-color: #60a5fa;
    background: #f0f9ff;
}

.darkness-slider-container {
    padding: 15px 0;
}

.darkness-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.darkness-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #60a5fa;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.darkness-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #60a5fa;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: #64748b;
}

#darknessValue {
    color: #60a5fa;
    font-weight: 600;
}

.brightness-slider-container {
    padding: 15px 0;
}

.alpha-slider-container {
    padding: 15px 0;
}

.brightness-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.brightness-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #01fe02;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.brightness-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #01fe02;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#brightnessValue {
    color: #01fe02;
    font-weight: 600;
}

.alpha-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.alpha-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(90deg, #00d2ff, #3a47d5);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.alpha-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(90deg, #00d2ff, #3a47d5);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#alphaValue {
    color: #8b5cf6;
    font-weight: 600;
}

/* Font Size Slider Styles */
.font-size-slider-container {
    padding: 15px 0;
}

.font-size-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.font-size-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.font-size-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#fontSizeValue {
    color: #60a5fa;
    font-weight: 600;
}

/* Design Variant Buttons */
.design-variant-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.variant-btn {
    padding: 8px 12px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.variant-btn:hover {
    border-color: #60a5fa;
    color: #60a5fa;
}

.variant-btn.active {
    background: #60a5fa;
    border-color: #60a5fa;
    color: white;
}

/* New Design Widget Styles */
.design-widget {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 300px;
    max-width: 400px;
    font-family: 'Inter', sans-serif;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    border-radius: 12px 12px 0 0;
}

.widget-header span {
    font-weight: 600;
    font-size: 16px;
}

.widget-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.widget-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

.widget-content {
    padding: 20px;
    max-height: 500px;
    overflow-y: auto;
}

.design-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.design-btn {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
}

.design-btn:hover {
    border-color: #60a5fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.2);
}

.design-btn.active {
    background: #60a5fa;
    border-color: #60a5fa;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

.design-preview {
    width: 100%;
    height: 40px;
    border-radius: 4px;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f0f9ff, #e0f2fe);
    border: 1px solid #e2e8f0;
}

.design-btn span {
    display: block;
    line-height: 1.3;
}

.design-btn small {
    color: inherit;
    opacity: 0.8;
    font-size: 10px;
}

/* Widget toggle functionality */
.widget-content {
    display: block;
}

.design-widget.collapsed .widget-content {
    display: none;
}

.switcher-option img {
    width: 40px;
    height: 30px;
    object-fit: cover;
    border-radius: 4px;
}

.switcher-option span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overall-rating-card {
        padding: 25px;
        margin: 0 15px;
    }
    
    .hero .overall-rating-card {
        width: calc(100% - 30px);
        padding: 25px;
        margin: 0 15px;
    }
    
    .rating-number {
        font-size: 2.8rem;
    }
    
    .review-button {
        padding: 14px 24px;
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal scrolling */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .grand-opening-banner {
        padding: 8px 0;
    }
    
    .banner-content {
        font-size: 14px;
        flex-direction: column;
        gap: 5px;
    }
    
    .banner-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
        text-align: center;
    }
    
    .banner-line-1 {
        display: block;
        font-weight: 600;
    }
    
    .banner-line-2 {
        display: block;
        font-weight: 500;
    }
    
    .navbar {
        top: 60px;
    }
    
    .nav-container {
        padding: 15px 20px;
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .nav-menu a {
        padding: 8px 12px;
        border-radius: 6px;
        transition: background-color 0.3s ease;
    }
    
    .nav-menu a:hover {
        background-color: rgba(96, 165, 250, 0.1);
    }
    
    .nav-contact {
        align-items: center;
        gap: 8px;
        flex-direction: column;
        justify-content: center;
    }
    
    /* Hide phone number on mobile */
    .nav-contact-item:last-child {
        display: none;
    }
    
    .nav-contact-item {
        font-size: 17px;
        justify-content: center;
        text-align: center;
    }
    
    .nav-contact-item a {
        font-size: 17px;
        word-break: break-word;
        line-height: 1.3;
    }
    
    .hero {
        padding: 220px 0 80px;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 40px;
        padding-left: 0;
        padding-top: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
        white-space: normal;
        width: 100%;
        min-width: auto;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix elements that commonly cause horizontal overflow */
    .hero-content {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .overall-rating-card {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    .app-content {
        max-width: 100%;
    }
    
    .location-content {
        max-width: 100%;
    }
    
    .reviews-content {
        max-width: 100%;
    }
    
    /* Fix review avatar aspect ratio on mobile */
    .reviewer-avatar {
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        aspect-ratio: 1 / 1 !important;
    }
    
    .reviewer-avatar img {
        width: 100% !important;
        height: 100% !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        aspect-ratio: 1 / 1 !important;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .location-content,
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .app-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .app-title {
        font-size: 2rem;
    }
    
    .app-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .app-feature {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .reviews-content {
        grid-template-columns: 1fr;
    }
    
    .sticky-column {
        position: static;
    }
    
    .overall-rating-card,
    .ai-summary-card {
        position: static;
    }
    
    .overall-rating-card {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px;
        margin: 0 10px;
        width: calc(100% - 20px);
        max-width: none;
    }
    
    /* Hide overall rating card in reviews section on mobile */
    .reviews .overall-rating-card {
        display: none;
    }
    
    .hero .overall-rating-card {
        width: calc(100% - 20px);
        padding: 20px;
        margin: 0 10px;
    }
    
    .rating-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .rating-number {
        font-size: 2.5rem;
    }
    
    .review-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* Navigation Layout Options */
.nav-layout-2 .nav-container {
    background: linear-gradient(90deg, rgba(0, 210, 255, 0.28), rgba(58, 71, 213, 0.28));
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-layout-2 .nav-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 15px 0;
}

.nav-layout-2 .nav-info-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.nav-layout-3 .nav-container {
    background: linear-gradient(90deg, rgba(0, 210, 255, 0.28), rgba(58, 71, 213, 0.28));
    padding: 15px 0;
    border-radius: 0;
}

.nav-layout-3 .nav-info {
    flex-direction: row;
    justify-content: space-around;
    margin: 10px 0;
}

.nav-layout-3 .nav-info-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    color: white;
}

.nav-layout-4 .nav-container {
    background: #0f172a;
    padding: 25px;
    border-radius: 20px;
    border: 2px solid #60a5fa;
}

.nav-layout-4 .nav-logo {
    text-align: center;
    margin-bottom: 20px;
}

.nav-layout-4 .nav-info {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 15px;
    background: rgba(2, 2, 239, 0.1);
    border-radius: 10px;
}

.nav-layout-5 .nav-container {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 0;
    border-bottom: 3px solid #01fe02;
}

.nav-layout-5 .nav-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 15px 0;
}

.nav-layout-5 .nav-info-item {
    color: #e2e8f0;
    font-size: 14px;
}

.nav-layout-6 .nav-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-layout-6 .nav-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.nav-layout-6 .nav-info-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.nav-layout-7 .nav-container {
    background: linear-gradient(90deg, rgba(0, 210, 255, 0.28), rgba(58, 71, 213, 0.28));
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(2, 2, 239, 0.3);
}

.nav-layout-7 .nav-info {
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
}

.nav-layout-7 .nav-info-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 25px;
    color: white;
    font-weight: 500;
}

.nav-layout-8 .nav-container {
    background: #0f172a;
    padding: 25px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.nav-layout-8 .nav-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 210, 255, var(--gradient-alpha, 0.28)), rgba(58, 71, 213, var(--gradient-alpha, 0.28)));
    opacity: 0.1;
    z-index: -1;
}

.nav-layout-8 .nav-info {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.nav-layout-8 .nav-info-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    color: white;
    text-align: center;
    flex: 1;
    margin: 0 5px;
}

.nav-layout-9 .nav-container {
    background: #1e293b;
    padding: 20px;
    border-radius: 0;
    border-left: 5px solid #01fe02;
}

.nav-layout-9 .nav-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}

.nav-layout-9 .nav-info-item {
    background: rgba(1, 254, 2, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    color: #e2e8f0;
    border-left: 3px solid #01fe02;
}

.nav-layout-10 .nav-container {
    background: linear-gradient(90deg, rgba(0, 210, 255, 0.28), rgba(58, 71, 213, 0.28));
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(2, 2, 239, 0.3);
}

.nav-layout-10 .nav-logo {
    text-align: center;
    margin-bottom: 25px;
}

.nav-layout-10 .nav-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(2, 2, 239, 0.05);
    border-radius: 15px;
}

.nav-layout-10 .nav-info-item {
    background: linear-gradient(90deg, rgba(0, 210, 255, 0.28), rgba(58, 71, 213, 0.28));
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-layout-10 .nav-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 2, 239, 0.3);
}

@media (max-width: 480px) {
    /* Additional mobile fixes for smaller screens */
    .container {
        padding: 0 10px;
    }
    
    .hero-content {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
        white-space: normal;
        width: 100%;
        min-width: auto;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .nav-container {
        padding: 10px 15px;
        gap: 10px;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .nav-menu a {
        padding: 6px 10px;
    }
    
    .nav-contact {
        flex-direction: column;
        justify-content: center;
        gap: 6px;
    }
    
    .nav-contact-item {
        font-size: 14px;
    }
    
    .nav-contact-item a {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
}
