/* CSS Variables for Bottle Green and Sand Color Scheme */
:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2a;
    --light-green: #6b9b3f;
    --accent-green: #8bc34a;
    --sand-light: #f5f5dc;
    --sand-medium: #f0f0c8;
    --sand-dark: #e8e8b8;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-medium: #666666;
    --text-light: #999999;
    --shadow: rgba(45, 80, 22, 0.1);
    --shadow-hover: rgba(45, 80, 22, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--sand-light);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Service card titles use original styling */
.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.4;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 12px var(--shadow);
}

.btn-primary:hover {
    background-color: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--secondary-green);
    color: var(--white);
    box-shadow: 0 4px 12px var(--shadow);
}

.btn-secondary:hover {
    background-color: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent-green);
    color: var(--white);
    box-shadow: 0 4px 12px var(--shadow);
}

.btn-accent:hover {
    background-color: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    height: 60px; /* Smaller footer logo */
    width: auto;
}

.brand-name {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin: 0;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand-medium) 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-medium);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background-color: var(--sand-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-hover);
    border-color: var(--accent-green);
}

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

.service-icon img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--sand-medium);
    padding: 15px;
}

.service-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.service-features li {
    padding: 5px 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 20px;
}

.service-features li:before {
    content: "✓";
    color: var(--accent-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.services-cta {
    text-align: center;
    background-color: var(--sand-medium);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.services-cta h3 {
    margin-bottom: 10px;
    color: var(--primary-green);
}

.services-cta p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sand-medium) 0%, var(--sand-light) 100%);
}

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

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-green);
}

.about-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background-color: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow);
    transition: transform 0.3s ease;
}

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

.feature h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background-color: var(--sand-light);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-hover);
}

.pricing-card.featured {
    border-color: var(--accent-green);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.price {
    margin-bottom: 10px;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
}

.price .currency {
    font-size: 1.5rem;
    color: var(--secondary-green);
    margin-left: 5px;
}

.price .period {
    display: block;
    font-size: 1rem;
    color: var(--text-medium);
    margin-top: 5px;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--text-medium);
    border-bottom: 1px solid var(--sand-dark);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sand-medium) 0%, var(--sand-light) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-method {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-icon {
    margin-bottom: 20px;
}

.contact-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--sand-light);
    padding: 12px;
}

.contact-method h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.contact-info {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-green);
    margin: 15px 0 20px 0;
    text-decoration: none;
}

.contact-info:hover {
    color: var(--primary-green);
}

/* Contact Form */
.contact-form-section {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-section h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-green);
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-green);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--sand-dark);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--sand-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

/* Footer */
.footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 40px 0 20px 0;
}

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--sand-light);
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--secondary-green);
}

.footer-bottom p {
    color: var(--sand-light);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo {
        height: 80px;
    }
    
    .brand-name {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .services,
    .about,
    .pricing,
    .contact {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
}

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

.service-card,
.pricing-card,
.contact-method,
.feature {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
}


/* Calendar Booking Styles */
.calendar-booking-section {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
    margin-bottom: 40px;
}

.calendar-booking-section h3 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.calendar-booking-section p {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-medium);
}

.booking-container {
    display: grid;
    gap: 30px;
}

.calendar-section h4 {
    margin-bottom: 20px;
    color: var(--primary-green);
    text-align: center;
}

/* Calendar Styles */
.calendar-container {
    max-width: 400px;
    margin: 0 auto;
    background-color: var(--sand-light);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px var(--shadow);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h3 {
    margin: 0;
    color: var(--primary-green);
    font-size: 1.3rem;
}

.calendar-nav {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background-color: var(--secondary-green);
    transform: scale(1.1);
}

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

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: var(--primary-green);
    padding: 10px 5px;
    font-size: 0.9rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    color: var(--text-dark);
}

.calendar-day:not(.empty):not(.past):not(.weekend):hover {
    background-color: var(--accent-green);
    color: var(--white);
    transform: scale(1.05);
}

.calendar-day.today {
    background-color: var(--secondary-green);
    color: var(--white);
    font-weight: 700;
}

.calendar-day.selected {
    background-color: var(--primary-green) !important;
    color: var(--white) !important;
    transform: scale(1.1);
    box-shadow: 0 4px 12px var(--shadow-hover);
}

.calendar-day.past {
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.weekend {
    background-color: var(--sand-medium);
    color: var(--text-light);
    cursor: not-allowed;
}

.calendar-day.empty {
    background-color: transparent;
    cursor: default;
}

.availability-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-green);
    border-radius: 50%;
}

/* Time Slots Styles */
.time-slots-section {
    text-align: center;
}

.time-slots-section h4 {
    margin-bottom: 20px;
    color: var(--primary-green);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.time-slot {
    padding: 12px 16px;
    background-color: var(--sand-light);
    border: 2px solid var(--sand-dark);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
}

.time-slot:hover {
    background-color: var(--accent-green);
    color: var(--white);
    border-color: var(--accent-green);
    transform: translateY(-2px);
}

.time-slot.selected {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-hover);
}

/* Booking Form Styles */
.booking-form-section {
    background-color: var(--sand-light);
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
}

.booking-form-section h4 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-green);
}

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

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: var(--white);
    font-weight: 500;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background-color: var(--accent-green);
}

.notification.error {
    background-color: #e74c3c;
}

.notification.info {
    background-color: var(--secondary-green);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px var(--shadow);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Calendar */
@media (max-width: 768px) {
    .calendar-container {
        padding: 15px;
    }
    
    .calendar-day {
        font-size: 0.9rem;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 8px;
    }
    
    .time-slot {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .booking-container {
        gap: 20px;
    }
    
    .calendar-booking-section {
        padding: 25px 20px;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .calendar-header h3 {
        font-size: 1.1rem;
    }
    
    .calendar-nav {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .calendar-day {
        font-size: 0.8rem;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Simple Services Detail Page Styles */
.services-detail {
    padding: 2rem 0;
    background: #f5f5dc;
}

.page-header {
    text-align: center;
    margin-bottom: 2rem;
}

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

.service-section {
    background: white;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-section h3 {
    color: #2d5016;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f5f5dc;
    padding-bottom: 0.5rem;
}

.service-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-section li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.4;
}

.service-section li:last-child {
    border-bottom: none;
}

.service-section li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: bold;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .services-detail {
        padding: 1rem 0;
    }
    
    .service-section {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }
    
    .service-section h3 {
        font-size: 1.2rem;
    }
}


/* CTA Buttons Layout */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}


/* Footer logo specific styling */
.footer .logo {
    height: 50px; /* Even smaller for footer */
    width: auto;
}

.footer .logo-img {
    height: 50px;
    width: auto;
    max-width: 50px;
}


/* Premium Lux package styling */
.pricing-card.premium {
    border: 2px solid #d4af37; /* Gold border for luxury feel */
    background: linear-gradient(135deg, #f8f6f0 0%, #f5f2e8 100%);
    position: relative;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.pricing-card.premium .pricing-badge {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
}

.pricing-card.premium .btn-accent {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card.premium .btn-accent:hover {
    background: linear-gradient(135deg, #b8941f 0%, #9e7d1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.pricing-card.premium .price .amount {
    color: #d4af37;
    font-weight: 700;
}

.pricing-card.premium .price-note {
    color: #d4af37;
    font-weight: 600;
}

/* Adjust pricing grid for 5 cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-card {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.premium {
        transform: none;
    }
}

