:root {
    --primary: #F28C38;
    --primary-hover: #D77A2B;
    --dark: #0F172A;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --muted: #64748B;
    --glass: rgba(255, 255, 255, 0.85);
    --shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--muted);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

/* Utility Classes */
.section-padding {
    padding: 80px 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--muted);
}

.grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-cols-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.heading-xl {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.heading-lg {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.heading-md {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}


/* Top Bar */
.top-bar {
    background: var(--dark);
    color: white;
    padding: 8px 5%;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.top-bar-info {
    display: flex;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    opacity: 0.8;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--primary);
}

/* Header */
header {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
}

.logo img {
    display: block;
    max-width: 100%;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.phone-num {
    font-weight: 600;
}

.btn-book {
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-book:hover {
    background: var(--primary-hover);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 6rem 5%;
    align-items: center;
    gap: 4rem;
    min-height: 85vh;
    background: radial-gradient(circle at top right, rgba(242, 140, 56, 0.05), transparent),
        radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.02), transparent);
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -10px;
}

.avatars img:first-child {
    margin-left: 0;
}

/* Form Container */
.quote-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.quote-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.quote-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full {
    grid-column: span 2;
}

label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input,
select {
    padding: 1rem;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1rem;
    transition: 0.3s;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-submit {
    grid-column: span 2;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1.25rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 5rem 5%;
}

.feature-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    transition: 0.3s;
}

.feature-box.orange {
    background: var(--primary);
    color: var(--white);
}

.feature-box.dark {
    background: var(--dark);
    color: var(--white);
}

/* Brands Section */
.brands-section {
    padding: 3rem 5%;
    text-align: center;
    background: var(--white);
    border-bottom: 1px solid #eee;
}

.brands-section p {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 2rem;
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    filter: grayscale(1);
    opacity: 0.6;
}

.brand-logos span {
    font-size: 1.5rem;
    font-weight: 800;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 5%;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-section .subtitle {
    color: var(--muted);
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: left;
    border: 1px solid #eee;
    transition: 0.3s;
    position: relative;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
}

.pricing-card.popular::before {
    content: "POPULAR";
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
}

.pricing-card h4 {
    color: var(--muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--muted);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-card li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-card li::before {
    content: "✓";
    color: #10B981;
    font-weight: 800;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    color: var(--dark);
    transition: 0.3s;
}

.pricing-card.popular .btn-pricing {
    background: var(--primary);
    color: white;
    border: none;
}

.btn-pricing:hover {
    background: #f3f4f6;
}

.pricing-card.popular .btn-pricing:hover {
    background: var(--primary-hover);
}

/* Enhanced Footer */
.main-footer {
    background: var(--dark);
    color: white;
    padding: 5rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h5 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: #9CA3AF;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #1F2937;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #6B7280;
}

/* Responsive updates */
@media (max-width: 1024px) {
    .section-padding {
        padding: 60px 5%;
    }

    .heading-xl {
        font-size: 2.5rem;
    }

    .heading-lg {
        font-size: 2rem;
    }

    .grid-cols-4,
    .grid-cols-3,
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 3rem;
        gap: 3rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        margin: 0 auto 2.5rem;
    }

    .reviews-summary {
        justify-content: center;
    }

    .pricing-grid,
    .footer-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        padding: 80px 5%;
        transition: 0.4s;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 2rem;
    }

    .top-bar-info {
        display: none;
    }

    .top-bar-content {
        justify-content: center;
    }

    .header-actions .phone-num {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .quote-card {
        padding: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full,
    .btn-submit {
        grid-column: span 1;
    }
}

/* Floating Contact Icons */
.floating-contact {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    font-size: 1.8rem;
}

.float-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.float-wa {
    background-color: #25D366;
    color: white;
}

.float-call {
    background-color: var(--primary);
    color: white;
}

@media (max-width: 768px) {
    .floating-contact {
        right: 15px;
        gap: 10px;
    }

    .float-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .float-icon svg {
        width: 24px;
        height: 24px;
    }
}