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

:root {
    /* Zulu-inspired Color Palette */
    --primary-color: #1b5e20;
    --primary-dark: #0d3312;
    --secondary-color: #ffc107;
    --accent-color: #d32f2f;
    --zulu-white: #fafafa;
    --zulu-black: #1a1a1a;
    --zulu-red: #c62828;
    --zulu-blue: #1565c0;
    --zulu-green: #2e7d32;
    --zulu-yellow: #f9a825;
    --text-dark: #2c3e50;
    --text-light: #5d6d7e;
    --bg-light: #f5f5dc;
    --bg-cream: #faf8f0;
    --bg-dark: #1a1a2e;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--zulu-green), var(--primary-color));
    color: var(--white);
    font-size: 16px;
    padding: 15px 30px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--zulu-green));
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--zulu-yellow), var(--secondary-color));
    color: var(--zulu-black);
    border: none;
    font-size: 18px;
    padding: 18px 36px;
    font-weight: 700;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--zulu-yellow));
    color: var(--zulu-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(249, 168, 37, 0.4);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 30px;
    font-size: 16px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

/* Top Bar */
.top-bar {
    background: var(--bg-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left .location {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-center .company-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-right a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-right a:hover {
    color: var(--secondary-color);
}

.top-bar-right .live-chat {
    background: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.top-bar-right .live-chat:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* Header */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 32px;
    color: var(--secondary-color);
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Navigation */
.main-nav .nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu > li > a {
    font-weight: 600;
    font-size: 14px;
    padding: 25px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary-color);
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-hover);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    position: relative;
    font-size: 18px;
    color: var(--text-dark);
}

.cart-btn:hover {
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.slide {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.slide-content {
    flex: 1;
    color: var(--white);
}

.slide-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
}

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

.slide-image {
    flex: 0 0 400px;
}

.placeholder-image {
    width: min(280px, 100%);
    height: 430px;
    background: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.hero-logo-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    object-position: top center;
    display: block;
    box-shadow: var(--shadow-hover);
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary-color);
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: var(--bg-light);
    transition: var(--transition);
}

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

.feature-icon {
    width: 86px;
    height: 86px;
    background: var(--white);
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid rgba(27, 94, 32, 0.14);
    box-shadow: var(--shadow);
}

.feature-icon img,
.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-box h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-box p {
    font-size: 13px;
    color: var(--text-light);
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--primary-color);
}

.category-icon {
    width: 96px;
    height: 96px;
    background: var(--bg-cream);
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
    border: 3px solid rgba(249, 168, 37, 0.28);
    box-shadow: var(--shadow);
}

.category-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.category-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.category-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.category-link:hover {
    gap: 10px;
}

/* Services & Pricing Section */
.services-pricing-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.sale-badge {
    background: linear-gradient(135deg, var(--accent-color), #e74c3c);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    animation: pulse 2s infinite;
}

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

.service-category {
    margin-bottom: 60px;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.category-title i {
    color: var(--primary-color);
    font-size: 28px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-item {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-item:hover::before {
    transform: scaleX(1);
}

.service-image {
    width: calc(100% + 50px);
    height: 155px;
    margin: -25px -25px 18px;
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0;
    background: var(--bg-light);
}

.service-info {
    flex: 1;
}

.service-info h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.service-info p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.service-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.current-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-item .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* Calendar Section */
.calendar-section {
    padding: 80px 0;
    background: var(--white);
}

.calendar-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.calendar-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

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

.calendar-date {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
    padding: 20px;
}

.calendar-date .month {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.calendar-date .day {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.calendar-content {
    padding: 25px;
    text-align: center;
}

.calendar-content h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.calendar-content p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.testimonial-rating {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

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

/* Footer */
.main-footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-list i {
    color: var(--secondary-color);
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Payment Methods Section */
.payment-methods {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.payment-methods h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    transition: var(--transition);
}

.payment-icon:hover {
    transform: translateY(-3px);
    color: var(--secondary-color);
}

.payment-icon i {
    font-size: 32px;
    color: var(--secondary-color);
}

.payment-icon span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Cart Styles */
.cart-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 10px;
    margin-right: 10px;
}

.cart-icon-btn i {
    font-size: 20px;
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: flex-end;
}

.cart-modal.active {
    display: flex;
}

.cart-content {
    background: var(--white);
    width: 100%;
    max-width: 450px;
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.cart-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--zulu-green), var(--primary-color));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    font-size: 20px;
}

.cart-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

.cart-empty i {
    font-size: 60px;
    margin-bottom: 20px;
    color: var(--bg-light);
}

.cart-items {
    display: none;
}

.cart-items.has-items {
    display: block;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    background: var(--bg-cream);
    border-radius: 8px;
    margin-bottom: 10px;
}

.cart-item-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.cart-item-remove {
    background: var(--accent-color);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-footer {
    padding: 20px;
    border-top: 2px solid var(--bg-light);
    background: var(--bg-cream);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-dark);
}

#cartTotal {
    color: var(--primary-color);
}

.btn-clear {
    background: #e0e0e0;
    color: var(--text-dark);
    width: 100%;
    margin-top: 10px;
}

.btn-clear:hover {
    background: #d0d0d0;
}

/* Add to Cart Button Animation */
.add-to-cart {
    transition: all 0.3s ease;
}

.add-to-cart.added {
    background: var(--zulu-green);
}

.add-to-cart.added i {
    animation: bounce 0.5s ease;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calendar-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .top-bar-left .location,
    .top-bar-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-bar-right {
        gap: 12px;
    }

    .main-header .container {
        height: auto;
        min-height: 66px;
        position: relative;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .logo a {
        max-width: 210px;
        gap: 8px;
        font-size: 16px;
        line-height: 1.15;
    }

    .logo-img {
        height: 44px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        background: var(--white);
        border-radius: 8px;
        box-shadow: var(--shadow-hover);
        padding: 8px 0;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        z-index: 1001;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu > li > a {
        padding: 12px 16px;
        justify-content: space-between;
    }

    .nav-menu > li > a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        min-width: 0;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 8px;
        background: var(--bg-cream);
        display: block;
    }

    .dropdown-menu li a {
        padding: 9px 28px;
    }

    .header-actions {
        gap: 8px;
    }

    .cart-icon-btn,
    .cart-btn {
        margin-right: 0;
        padding: 8px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-section {
        padding: 44px 0 36px;
    }

    .slide {
        flex-direction: column-reverse;
        text-align: center;
        gap: 28px;
    }

    .slide-content h1 {
        font-size: 32px;
    }

    .slide-image {
        flex: none;
    }

    .placeholder-image {
        width: 190px;
        height: 290px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .features-grid,
    .categories-grid,
    .calendar-slider,
    .testimonials-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-category {
        margin-bottom: 42px;
    }

    .category-title {
        align-items: flex-start;
        font-size: 20px;
        line-height: 1.25;
    }

    .service-item {
        padding: 18px;
    }

    .service-image {
        width: calc(100% + 36px);
        height: 190px;
        margin: -18px -18px 16px;
    }

    .cart-modal {
        align-items: stretch;
        justify-content: center;
    }

    .cart-content {
        max-width: none;
        height: 100dvh;
    }

    .cart-header,
    .cart-body,
    .cart-footer {
        padding: 16px;
    }

    .cart-item {
        align-items: flex-start;
        gap: 12px;
    }

    .cart-item-info {
        min-width: 0;
    }

    .cart-item-info h4 {
        line-height: 1.25;
    }

    .cart-footer .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .main-header .container {
        gap: 8px;
    }

    .logo a {
        max-width: 170px;
        font-size: 14px;
    }

    .logo-img {
        height: 38px;
    }

    .header-actions {
        gap: 4px;
    }

    .cart-icon-btn i,
    .cart-btn,
    .mobile-menu-btn {
        font-size: 18px;
    }

    .cart-icon-btn,
    .cart-btn,
    .mobile-menu-btn {
        padding: 6px;
    }

    .slide-content h1 {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 24px;
    }
}
