:root {
    --primary-color: #c41e3a;
    --primary-dark: #9a1c2c;
    --primary-light: #e63946;
    --text-color: #333;
    --light-color: #fff;
    --gray-color: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 70px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar - Minimalist Design */
.elegant-header {
    background-color: var(--light-color);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 22px;
    margin-right: 10px;
    color: var(--primary-color);
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: #666;
}

.main-nav {
    display: flex;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.main-nav a:hover {
    color: var(--primary-color);

    transition: color 0.3s;
}

.nav-link:hover {
    color: #007bff;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 400;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-weight: 500;
    padding: 8px 15px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.main-nav a:hover::after {
    width: 80%;
    left: 10%;
}

.main-nav a:hover,
.main-nav a:not(.nav-btn):hover {
    color: var(--primary-color);
}

.nav-btn {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active {
    transform: rotate(90deg);
}

/* Fixed buttons */
.scroll-top,
.whatsapp-btn {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top {
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}
  


/* Mobile Styles */
@media (max-width: 768px) {
    .scroll-top,
    .whatsapp-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .whatsapp-btn {
        bottom: 90px;
        right: 20px;
        left: auto;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
    }
}

.whatsapp-btn {
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: var(--light-color);
    font-size: 1.8rem;
    text-decoration: none;
}



.scroll-top.stop-scroll {
    position: absolute;
}

.scroll-top:hover,
.whatsapp-btn:hover {
    transform: translateY(-5px);
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    position: relative;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(196, 30, 58, 0.8) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.hero .highlight {
    color: var(--primary-light);
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(196, 30, 58, 0.3);
    z-index: -1;
    transition: all 0.3s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn,
.hero-buttons a {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.btn-secondary:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* About Me Section */
.sobre-mi {
    padding: 100px 0;
    background-color: var(--light-color);
}

.sobre-mi .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.sobre-mi-img {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.sobre-mi-img img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sobre-mi-content {
    flex: 2;
    min-width: 300px;
}

.sobre-mi h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.sobre-mi h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.sobre-mi p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.sobre-mi-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
}

/* Enhanced Services Section */
.servicios {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.servicios h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.servicios-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Add these styles to prevent layout shifts */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 400px));
    gap: 30px;
    justify-content: center;
    align-items: start;
    margin: 0 auto;
    max-width: 900px;
}

.servicio-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    border-top: 3px solid var(--primary-color);
}

.servicio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.servicio-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.servicio-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.servicio-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.servicio-details {
    margin-top: auto;
    width: 100%;
}

.servicio-details .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 80%;
    margin: 0 auto;
}

.servicio-details .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.servicio-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.servicio-details ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.servicio-details li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.servicio-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .sobre-mi {
        padding: 60px 0;
    }

    .sobre-mi .container {
        flex-direction: column;
    }

    .sobre-mi-img {
        margin-bottom: 30px;
    }

    .sobre-mi h2 {
        font-size: 2rem;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .servicio-card {
        padding: 20px;
    }
}

/* Contact Form */
.contacto {
    padding: 80px 0;
    background-color: var(--gray-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.contacto .container {
    max-width: 600px;
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contacto .container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.contacto h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.contacto-info p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contacto-formulario {
    margin-top: 2rem;
}

.elegant-form .form-group {
    margin-bottom: 1.5rem;
}

.elegant-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #444;
    font-weight: 500;
    font-size: 0.95rem;
}

.elegant-form input[type="text"],
.elegant-form input[type="email"],
.elegant-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    background-color: #fff;
}

.elegant-form input[type="text"]:focus,
.elegant-form input[type="email"]:focus,
.elegant-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
    outline: none;
}

.elegant-form textarea {
    resize: vertical;
    min-height: 120px;
}

.elegant-form .btn-submit {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.elegant-form .btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
}

@media (max-width: 768px) {
    .contacto .container {
        padding: 30px 20px;
    }
    
    .contacto h2 {
        font-size: 1.8rem;
    }
    
    .elegant-form input[type="text"],
    .elegant-form input[type="email"],
    .elegant-form textarea {
        font-size: 16px;
    }

}

.contacto h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--primary-color);
}

.contacto-formulario {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 2rem auto;
}

.elegant-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9a1c2c;
    box-shadow: 0 0 0 2px rgba(154, 28, 44, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background-color: #9a1c2c;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #7a1623;
}

.g-recaptcha {
    margin: 1rem 0;
}

button[type="submit"] {
    display: block;
    margin: 0 auto;
    width: auto;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--light-color);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

button[type="submit"]:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--light-color);
    padding: 40px 0;
    color: var(--text-color);
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-info,
.footer-horario {
    max-width: 300px;
    margin: 0 auto;
}

.footer-info h3,
.footer-horario h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.footer-info p,
.footer-horario p {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Social icons in footer */
.social-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    justify-content: center;
}

.social-icon-tiny {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--light-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    text-decoration: none;
}

.social-icon-tiny:hover {
    transform: translateY(-5px);
}

.social-icons {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-label {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Styles for the laws container */
.leyes-container {
    background-color: var(--light-color);
    padding: 0;
    margin-top: 20px;
    border-top: 1px solid #eee;
    text-align: left;
    transition: all 0.5s ease;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.leyes-container.active {
    padding: 20px 0 0 0;
    max-height: 500px;
    opacity: 1;
}

.leyes-container h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: left;
}

.leyes-container ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.leyes-container li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.leyes-container li::before {
    content: '§';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.servicio-card.active {
    box-shadow: 0 0 15px rgba(200, 30, 60, 0.3);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Media queries for responsive design */
@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .hero .highlight::after {
        height: 4px;
        bottom: 2px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .btn, .hero-buttons a {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .elegant-header {
        padding: 10px 0;
    }
    
    .header-content {
        padding: 0 15px;
    }
    
    .logo-container {
        margin-left: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }
    
    .logo-icon {
        font-size: 1.8rem;
    }
    
    .logo-title {
        font-size: 1.1rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--light-color);
        padding: 80px 20px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo-link {
        text-decoration: none;
        color: inherit;
        transition: opacity 0.3s ease;
    }
    
    .logo-link:hover {
        opacity: 0.9;
    }
    
    .logo-icon {
        color: #2c3e50;
        font-size: 2.5rem;
        margin-right: 15px;
    }
    
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero h2 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero .highlight::after {
        height: 6px;
        bottom: 3px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .whatsapp-btn {
        bottom: 90px;
        right: 20px;
        left: auto;
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .sobre-mi {
        padding: 60px 0;
    }
    
    .sobre-mi .container {
        flex-direction: column;
    }
    
    .sobre-mi-img {
        margin-bottom: 30px;
    }
    
    .sobre-mi h2 {
        font-size: 2rem;
    }
    
    .servicios-grid {
        grid-template-columns: 1fr;
    }
    
    .servicio-card {
        padding: 20px;
    }
    
    .social-icons a {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    /* Menu open state for body */
body.menu-open {
    overflow: hidden;
}

/* Estilos para tarjetas de servicios */
.disabled-card {
opacity: 0.6;
cursor: default !important;
pointer-events: none;
user-select: none;
transition: opacity 0.3s ease;
}

/* Additional styles for interactive elements */
.interactive-element {
transition: all 0.3s ease;
}

.interactive-element:hover {
transform: scale(1.05);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .interactive-element {
        width: 100%;
        margin-bottom: 20px;
    }
}
.elegant-header {
    background-color: var(--light-color);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 24px;
    margin-right: 10px;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 400;
}

/* Responsive adjustments for laptops */
@media (min-width: 1024px) {
    .header-content {
        padding: 0 40px;
    }

    .nav-list {
        gap: 30px;
    }

    .logo-title {
        font-size: 1.8rem;
    }
}

.elegant-header {
    background-color: var(--light-color);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px; /* Increased padding for better spacing */
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 24px;
    margin-right: 10px;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px; /* Increased gap for better spacing */
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1.1rem; /* Slightly larger font for better readability */
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Navbar */
.elegant-header {
    background-color: var(--light-color);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 24px;
    margin-right: 10px;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hide mobile navbar on larger screens */
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }

    .main-nav {
        display: flex; /* Ensure the nav items are in a row */
    }
}

.elegant-header {
    background-color: var(--light-color);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 24px;
    margin-right: 10px;
}

.logo-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hide mobile menu toggle on larger screens */
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

    /* Floating buttons */
    .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #25D366;
    color: var(--light-color);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    }

}