* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #333;
    --accent-color: #f39c12;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --gradient-start: #00d0ff;
    --gradient-end: #8997ff;
    --primary-blue: #3898ec;
}

body {
    font-family: 'Ubuntu', 'Varela Round', 'Droid Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Hero Section with Gradient */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.gradient-div {
    background: linear-gradient(254deg, #00d0ff 0%, #8997ff 100%);
    color: var(--white);
    padding: 8rem 2rem 4rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content-wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.hero-text-block {
    flex: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-main-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.hero-rating-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stars-container {
    display: flex;
    gap: 0.5rem;
    font-size: 2rem;
    color: #ffd700;
}

.rating-text {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

/* Navigation */
.nav-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-brand .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 183px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-call {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-call:hover {
    background: #555;
}

.btn-signup {
    background: linear-gradient(254deg, #00d0ff, #8997ff);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.btn-signup:hover {
    opacity: 0.9;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: 0.3s;
}

.service-buttons {
    display: flex;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.service-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.service-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.testimonials-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: linear-gradient(254deg, #00d0ff, #8997ff);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.testimonial-name {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--accent-color);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: #ffd700;
}

.testimonial-text {
    color: #666;
    line-height: 1.6;
}

/* Main Content Section */
.main-content-section {
    padding: 5rem 0;
    background: var(--white);
}

.content-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.content-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stars-badge {
    display: flex;
    gap: 0.25rem;
    color: #ffd700;
    font-size: 1.5rem;
}

.badge-text {
    font-weight: 600;
    color: var(--primary-color);
}

.content-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.content-heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn-view-plans {
    background: linear-gradient(254deg, #00d0ff, #8997ff);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: opacity 0.3s;
}

.btn-view-plans:hover {
    opacity: 0.9;
}

/* Services Grid Section */
.services-grid-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

.service-card-large {
    grid-column: span 2;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card-small {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
}

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

.service-card-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.service-card-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-card-description {
    color: #666;
    font-size: 0.9rem;
}

.service-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card-text {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-service {
    background: linear-gradient(254deg, #00d0ff, #8997ff);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: opacity 0.3s;
}

.btn-service:hover {
    opacity: 0.9;
}

/* Schedule Section */
.schedule-section {
    padding: 5rem 0;
    background: var(--white);
}

.schedule-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-form .form-group {
    margin-bottom: 1.5rem;
}

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

.schedule-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.schedule-form input,
.schedule-form select,
.schedule-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.schedule-form input:focus,
.schedule-form select:focus,
.schedule-form textarea:focus {
    outline: none;
    border-color: var(--gradient-start);
}

.schedule-form button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

/* Payment Section */
.payment-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.payment-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.payment-form .form-group {
    margin-bottom: 1.5rem;
}

.payment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.payment-form input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}

.card-element {
    padding: 1rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    margin: 1.5rem 0;
}

#card-errors {
    color: #dc3545;
    margin-bottom: 1rem;
    min-height: 20px;
}

/* Booking Summary */
.booking-summary {
    width: 100%;
}

.booking-summary h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.summary-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-section:last-of-type {
    border-bottom: none;
}

.summary-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.summary-label {
    font-weight: 600;
    color: #666;
    flex-shrink: 0;
}

.summary-value {
    color: var(--text-color);
    text-align: right;
    flex: 1;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 2px solid var(--primary-color);
    font-size: 1.3rem;
}

.total-label {
    font-weight: 700;
    color: var(--primary-color);
}

.total-value {
    font-weight: 700;
    color: var(--gradient-start);
    font-size: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 2rem;
    color: var(--gradient-start);
    margin-top: 0.5rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--gradient-start);
    text-decoration: none;
}

.contact-form {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

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

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

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

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Messages */
.message {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: var(--white);
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-section-title {
    text-align: center;
    margin: 3rem 0 2rem;
}

.pricing-section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.pricing-card-header {
    margin-bottom: 1.5rem;
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-plan-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-rooms {
    color: #666;
    font-size: 0.9rem;
}

.btn-pricing {
    background: linear-gradient(254deg, #00d0ff, #8997ff);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
    width: 100%;
    text-align: center;
    display: block;
}

.btn-pricing:hover {
    opacity: 0.9;
}

/* Selected Plan Card */
.selected-plan-card {
    background: linear-gradient(254deg, rgba(0, 208, 255, 0.1), rgba(137, 151, 255, 0.1));
    border: 2px solid var(--gradient-start);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.selected-plan-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.selected-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.selected-plan-details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.selected-plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gradient-start);
}

.selected-plan-rooms {
    color: #666;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        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;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-main-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .service-buttons {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .schedule-form-container,
    .payment-container {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-card-large {
        grid-column: span 1;
    }
    
    .content-heading {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .selected-plan-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .selected-plan-details {
        width: 100%;
        justify-content: space-between;
    }
}
