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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    color: #e74c3c;
    margin: 0;
    font-size: 1.8rem;
}

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

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3cbae7;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3cbae7;
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fefefe 0%, #f8f6f0 50%, #f5f2e8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.8) opacity(0.9);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6), 1px 1px 3px rgba(0, 0, 0, 0.9);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    max-width: 400px;
    max-height: 130px;
margin: auto;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.cta-button {
    display: inline-block;
    background-color: #3cbae7;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    margin-top: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/cleanlivingroom.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px);
    opacity: 0.2;
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services h2 {
    position: relative;
    z-index: 2;
top: 3.75rem;
}

.services-top {
    margin-top: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.service-card-full {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.service-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(231, 76, 60, 0.4);
}

.service-card-full h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-card-full p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
    top: 1rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f8f6f0;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #fefefe 0%, #f8f6f0 50%, #f5f2e8 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-point {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.about-point h3 {
    color: #3cbae7;
    margin-bottom: 1rem;
}

.about-point p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

.image-placeholder {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/madebed.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px);
    opacity: 0.3;
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials h2 {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: #fefefe;
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f8f6f0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.quote-mark {
    font-size: 4rem;
    color: #3cbae7;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: 'Playfair Display', serif;
}

.testimonial-card p {
    margin-top: 2rem;
    font-style: italic;
    line-height: 1.7;
    color: #2c3e50;
    font-size: 1.1rem;
}

.testimonial-author {
    margin-top: 1.5rem;
    font-weight: 600;
    color: #3cbae7;
    text-align: right;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/laundry.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px);
    opacity: 0.2;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact h2 {
    color: white;
    position: relative;
    z-index: 2;
}

.contact-content {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.contact-form-section {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-section h3 {
    color: #ecf0f1;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-form-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #bdc3c7;
}

/* Contact Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #f8f6f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fefefe;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background-color: #3cbae7;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    width: 100%;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.contact-details {
    background: linear-gradient(45deg, black, transparent);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-item {
    margin: 1rem 0;
    font-size: 1.1rem;
}
.contact-item a {
  color: #33A8ff;  
}
.contact-item strong {
    color: #3cbae7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.services-offered {
    margin-top: 3rem;
    text-align: left;
}

.services-offered h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.services-offered ul {
    list-style: none;
    padding: 0;
}

.services-offered li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.services-offered li::before {
    content: '✨';
    position: absolute;
    left: 0;
}

/* Footer */
.footer {
    background: #1a252f;
    color: #ecf0f1;
    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 {
    color: #3cbae7;
    margin-bottom: 1rem;
}

.footer-text {
    text-align: center;
     max-width: 300px;
}

.footer-section p {
    margin: 0.5rem 0;
    color: #bdc3c7;
}

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

.service-column p {
    margin: 0.3rem 0;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.footer-bottom a {
    color: lightgray;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ff6b47;
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .services-header {
        padding: 80px 0 40px;
    }

    .logo-placeholder p {
        font-size: 1.5rem;
    }

    .contact-details h3 {
        font-size: 1.5rem;
    }

    .services-sections {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-section {
        padding: 1.5rem;
    }

    .service-section h3 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-img {
        max-width: 80%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    
    .services-grid {
        grid-template-columns: 1fr;
    }
.container h2 {
       margin-top: 2rem;
    }
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .availability-card {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-form-section {
        text-align: center;
    }

    .services-offered {
        text-align: center;
    }

    .contact-form {
        padding: 2rem;
    }

    .service-card-full {
        padding: 2rem;
    }

    .service-card-full h3 {
        font-size: 1.7rem;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 100px 10px 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .service-card,
    .testimonial-card,
    .about-point {
        padding: 1.5rem;
    }

    .contact-details {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .availability-card {
        padding: 1.5rem;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .day-slot {
        padding: 1rem;
    }

    .about-img {
        max-width: 90%;
    }

    .service-card-full {
        padding: 1.5rem;
    }

    .service-card-full h3 {
        font-size: 1.5rem;
    }

    .services-header {
        padding: 60px 0 30px;
    }

    .logo-section {
        padding: 1.5rem;
    }

    .logo-placeholder p {
        font-size: 1.3rem;
    }

    .contact-details h3 {
        font-size: 1.3rem;
    }

    .contact-details p {
        font-size: 1rem;
    }

    .service-section {
        padding: 1.2rem;
    }

    .service-section h3 {
        font-size: 1.3rem;
    }

    .service-section li {
        font-size: 1rem;
        padding: 0.6rem 0;
    }

    .services-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .services-categories {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .service-item {
        padding: 1rem;
    }

    .tagline {
        font-size: 1.1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for elements coming into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.service-card-full,
.testimonial-card,
.about-point {
    animation: fadeInUp 0.6s ease-out;
}

/* Availability Section */
.availability {
    padding: 80px 0;
    background: #fff;
}

.availability-content {
    margin-top: 3rem;
}

.availability-card {
    background: #fefefe;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #f8f6f0;
    max-width: 800px;
    margin: 0 auto;
}

.availability-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.availability-header h3 {
    color: #e74c3c;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.availability-header p {
    color: #5a6c7d;
    font-size: 1.1rem;
}

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

.day-slot {
    background: #f8f6f0;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.day-slot:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.day {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.time {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.time.available {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.time.limited {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

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

.time.unavailable {
    background: #e2e3e5;
    color: #6c757d;
    border: 1px solid #d6d8db;
}

.availability-note {
    background: rgba(231, 76, 60, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.availability-note p {
    margin: 0;
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Services Header Section */
.services-header {
    background: linear-gradient(135deg, #fefefe 0%, #f8f6f0 100%);
    padding: 100px 0 60px;
    margin-top: 70px;
}

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

.logo-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo-placeholder {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.logo-placeholder p {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.contact-details h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.contact-details p {
    color: #5a6c7d;
    font-size: 1.1rem;
    margin: 0.3rem 0;
    font-weight: 500;
}

.references {
    color: #2c3e50;
    font-style: italic;
    margin-top: 1rem;
    font-size: 1rem;
}

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

.service-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: all 0.3s ease;
}

.service-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-section h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    text-align: center;
}

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

.service-section li {
    color: #5a6c7d;
    font-size: 1.1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

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

.service-section li::before {
    content: '•';
    color: #e74c3c;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

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

.service-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-item span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.service-item p {
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    font-size: 1.1rem;
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 2.5rem 0;
}

.category {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.category:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.category h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.tagline {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e74c3c;
    margin-top: 2rem;
    font-family: 'Playfair Display', serif;
} 