
:root {
    
    --bg-primary: #FEFAF5;    
    --accent-primary: #FF8FAB; 
    
    
    --text-dark: #1F2937;      
    --text-light: #FFFFFF;     
    --text-muted: #4B5563;     
    
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-slogan: 'Lora', serif;
    --font-signature: 'Great Vibes', cursive; 
    
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-pill: 9999px;
    --radius-organic: 40% 60% 70% 30% / 40% 50% 60% 50%; 
    
    
    --container-max-width: 1200px;
    --section-padding-y: 5rem;
    --transition-fast: 0.2s ease-in-out;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    
    --shadow-sm: 0 4px 6px -1px rgba(255, 143, 171, 0.1), 0 2px 4px -1px rgba(255, 143, 171, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(255, 143, 171, 0.15), 0 4px 6px -2px rgba(255, 143, 171, 0.05);
}


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

html {
    scroll-behavior: smooth;
    font-size: 16px; 
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-slogan);
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.01em;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover, a:focus {
    color: #e56b8c; 
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding-y) 0;
}

.page-content {
    padding-top: 100px; 
    min-height: calc(100vh - 250px); 
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #c4687e;
    font-weight: 400;
    letter-spacing: 0.02em;
}

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

.text-small {
    font-size: 0.875rem;
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}




.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1rem;
    line-height: 1;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
}


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

.btn-primary:hover, .btn-primary:focus {
    background-color: #f77093; 
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--text-dark);
}

.btn-block {
    display: block;
    width: 100%;
}


.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fbf9f4;
    z-index: 1000;
    transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
    border-bottom: 1px solid rgba(255, 143, 171, 0.1);
}

.site-header.scrolled {
    background-color: #fbf9f4;
    box-shadow: var(--shadow-sm);
}

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

.header-logo {
    height: 85px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.header-logo:hover {
    transform: scale(1.03);
}

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

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-primary);
    transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active-page::after {
    width: 100%;
}

.nav-link.active-page {
    color: var(--accent-primary);
}


.has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 320px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all var(--transition-smooth);
    z-index: 1000;
    list-style: none;
    margin-top: 1rem;
    border: 1px solid rgba(255, 143, 171, 0.15);
}


.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    height: 1rem;
    width: 100%;
}

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

.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    line-height: 1.4;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover, .dropdown-menu a:focus {
    background-color: rgba(255, 143, 171, 0.1);
    color: var(--accent-primary);
    border-left-color: var(--accent-primary);
}

.dropdown-icon {
    width: 24px;
    text-align: center;
    margin-right: 10px;
    color: var(--accent-primary);
    transition: transform var(--transition-fast), color var(--transition-fast);
    display: inline-block;
}

.dropdown-menu a:hover .dropdown-icon {
    transform: scale(1.15);
    color: #e56b8c;
}


.dropdown-category-label {
    display: block;
    padding: 0.6rem 1.5rem 0.3rem;
    font-family: var(--font-slogan);
    font-size: 0.85rem;
    font-weight: 600;
    font-style: italic;
    color: #c4687e;
    text-transform: none;
    letter-spacing: 0.02em;
    cursor: default;
}

.dropdown-category-label .dropdown-icon {
    font-size: 0.85rem;
}

.dropdown-divider {
    height: 1px;
    margin: 0.5rem 1.5rem;
    background-color: rgba(255, 143, 171, 0.15);
    border: none;
}


.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--text-dark);
    transition: all 0.3s ease-in-out;
}




.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px; 
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: var(--font-slogan);
    font-size: 3.5rem;
    font-weight: 400; 
    font-style: italic;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-organic); 
    box-shadow: var(--shadow-md);
    margin-top: -60px; 
    animation: floating 6s ease-in-out infinite;
    display: block;
}

@keyframes floating {
    0% { transform: translateY(0px); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50% { transform: translateY(-15px); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    100% { transform: translateY(0px); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}


.categories {
    padding-bottom: 2rem;
}

.categories-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.categories-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5rem;
    flex-wrap: wrap;
}

.category-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-circle:hover {
    transform: translateY(-8px);
    color: var(--text-dark);
}

.category-image-wrapper {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 30px -5px rgba(255, 143, 171, 0.2),
        0 0 0 4px rgba(255, 143, 171, 0.15),
        0 0 0 8px rgba(255, 143, 171, 0.06);
    transition: box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: categoryPulse 4s ease-in-out infinite;
}

.category-circle:nth-child(2) .category-image-wrapper {
    animation-delay: 2s;
}

@keyframes categoryPulse {
    0%, 100% {
        box-shadow:
            0 10px 30px -5px rgba(255, 143, 171, 0.2),
            0 0 0 4px rgba(255, 143, 171, 0.15),
            0 0 0 8px rgba(255, 143, 171, 0.06);
    }
    50% {
        box-shadow:
            0 15px 40px -5px rgba(255, 143, 171, 0.3),
            0 0 0 6px rgba(255, 143, 171, 0.2),
            0 0 0 12px rgba(255, 143, 171, 0.08);
    }
}

.category-circle:hover .category-image-wrapper {
    box-shadow:
        0 20px 50px -5px rgba(255, 143, 171, 0.35),
        0 0 0 4px var(--accent-primary),
        0 0 0 8px rgba(255, 143, 171, 0.15);
    animation: none;
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.4s ease;
}

.category-circle:hover .category-image-wrapper img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255, 143, 171, 0.85) 0%, rgba(229, 107, 140, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-circle:hover .category-overlay {
    opacity: 1;
}

.category-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-circle:hover .category-overlay-content {
    transform: translateY(0);
}

.category-overlay-content i {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s;
}

.category-circle:hover .category-overlay-content i {
    opacity: 1;
    transform: scale(1);
}

.category-label {
    font-family: var(--font-slogan);
    font-size: 1.3rem;
    font-weight: 500;
    font-style: italic;
    color: #fff;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.15s;
}

.category-circle:hover .category-label {
    opacity: 1;
    transform: translateY(0);
}

.category-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    max-width: 200px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.2s;
}

.category-circle:hover .category-desc {
    opacity: 1;
    transform: translateY(0);
}

.category-title {
    font-family: var(--font-slogan);
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: #c4687e;
    margin-top: 1.25rem;
    text-align: center;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
    letter-spacing: 0.02em;
}

.category-circle:hover .category-title {
    color: var(--accent-primary);
    letter-spacing: 0.04em;
}


@media (max-width: 768px) {
    .categories-grid {
        gap: 3rem;
    }
    .category-image-wrapper {
        width: 220px;
        height: 220px;
    }
    .category-overlay-content i {
        font-size: 2rem;
    }
    .category-label {
        font-size: 1.1rem;
    }
    .category-desc {
        font-size: 0.8rem;
        max-width: 160px;
    }
    .category-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 375px) {
    .category-image-wrapper {
        width: 180px;
        height: 180px;
    }
}




.service-category {
    margin-bottom: 4rem;
}

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

.service-category-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid rgba(255, 143, 171, 0.2);
}

.service-category-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #ffb3c6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px -4px rgba(255, 143, 171, 0.35);
    animation: categoryIconPulse 4s ease-in-out infinite;
}

.service-category-icon i {
    font-size: 1.6rem;
    color: #fff;
}

@keyframes categoryIconPulse {
    0%, 100% { box-shadow: 0 8px 20px -4px rgba(255, 143, 171, 0.35); }
    50% { box-shadow: 0 10px 28px -4px rgba(255, 143, 171, 0.5); }
}

.service-category-title {
    font-family: var(--font-slogan);
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    color: #c4687e;
    margin-bottom: 0;
    letter-spacing: 0.02em;
}


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


.service-item {
    background: linear-gradient(135deg, #ffffff 0%, #fff7f9 100%);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    border: 1px solid rgba(255, 143, 171, 0.12);
    box-shadow: 0 4px 15px -3px rgba(255, 143, 171, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255, 143, 171, 0.1) 0%, rgba(255, 143, 171, 0.03) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px -8px rgba(255, 143, 171, 0.2), 0 0 0 1px rgba(255, 143, 171, 0.15);
    border-color: rgba(255, 143, 171, 0.3);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #fff0f3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: inset 0 0 0 1px rgba(255, 143, 171, 0.15);
}

.service-item-icon i {
    font-size: 1.35rem;
    color: var(--accent-primary);
    transition: transform 0.4s ease, color 0.4s ease;
}

.service-item:hover .service-item-icon {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #ffb3c6 100%);
    box-shadow: 0 6px 16px -3px rgba(255, 143, 171, 0.4);
}

.service-item:hover .service-item-icon i {
    color: #fff;
    transform: scale(1.1);
}

.service-item-title {
    font-family: var(--font-slogan);
    font-size: 1.2rem;
    font-weight: 500;
    font-style: italic;
    color: #c4687e;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.service-item:hover .service-item-title {
    color: #e56b8c;
}

.service-item-desc {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}


@media (max-width: 768px) {
    .service-category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    .service-category-title {
        font-size: 1.6rem;
    }
    .service-category-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .service-item {
        padding: 1.5rem 1.25rem;
    }
}



.about {
    background-image: url('../Assets/BackgroundAboutMe.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-dark);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(254, 250, 245, 0.7);
    z-index: 0;
}

.about > .container {
    position: relative;
    z-index: 1;
}

.about .section-title {
    color: var(--text-dark);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    text-align: center;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-portrait {
    float: right;
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-organic);
    margin: 0.5rem 0 1.5rem 2.5rem;
    box-shadow: var(--shadow-md);
    -webkit-shape-outside: circle(45%);
    shape-outside: circle(45%);
}


.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    align-items: flex-start;
}


@media (min-width: 1024px) {
    .services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 2rem; 
        max-width: 1000px; 
        margin: 0 auto;
        justify-items: center;
        align-items: center;
    }
    
    
    .service-card:nth-child(1) { grid-column: 2; grid-row: 1; } 
    .service-card:nth-child(2) { grid-column: 3; grid-row: 2; } 
    .service-card:nth-child(3) { grid-column: 2; grid-row: 3; } 
    .service-card:nth-child(4) { grid-column: 1; grid-row: 2; } 
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff7f9 100%);
    width: 320px;
    height: 320px;
    border-radius: 50% !important; 
    padding: 2.5rem; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px -5px rgba(255, 143, 171, 0.15), inset 0 0 0 1px rgba(255, 143, 171, 0.05); 
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    text-align: center;
    border: 1px solid rgba(255, 143, 171, 0.15) !important;
    overflow: hidden;
    position: relative;
    cursor: default;
    margin: 0 auto;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-primary), var(--accent-primary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card .service-icon {
    font-size: 3rem; 
    color: var(--accent-primary);
    margin-bottom: 1rem;
    transition: transform 0.4s ease, margin 0.4s ease, color 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0 4px 6px rgba(255, 143, 171, 0.2));
}

.service-card h2, .service-card h3 {
    font-family: var(--font-slogan);
    font-size: 1.45rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 0;
    color: #c4687e;
    transition: all 0.4s ease;
    letter-spacing: 0.02em;
}

.service-card p {
    font-size: 0.95rem; 
    font-weight: 400;
    color: var(--text-muted);
    opacity: 0;
    max-height: 0;
    margin: 0;
    visibility: hidden;
    line-height: 1.5;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}


.service-card:hover {
    transform: translateY(-10px) scale(1.03) !important;
    box-shadow: 0 20px 40px -10px rgba(255, 143, 171, 0.3), inset 0 0 0 2px rgba(255, 255, 255, 0.5) !important;
    border-color: rgba(255, 143, 171, 0.4) !important;
}

.service-card:hover::before {
    opacity: 0.05; 
}

.service-card:hover .service-icon {
    transform: scale(1.1) translateY(-5px);
    margin-bottom: 0.5rem;
    color: #e56b8c; 
    filter: drop-shadow(0 6px 8px rgba(255, 143, 171, 0.4));
}

.service-card:hover h2, .service-card:hover h3 {
    margin-bottom: 0.75rem;
    transform: translateY(-2px);
    color: #e56b8c;
}

.service-card:hover p {
    opacity: 1;
    max-height: 200px; 
    visibility: visible;
    margin-top: 0.25rem;
}




.faq-hero {
    padding: 2.5rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 143, 171, 0.1) 0%, transparent 70%);
    top: -50px;
    left: -80px;
    border-radius: 50%;
    pointer-events: none;
    animation: contactBlobFloat 9s ease-in-out infinite;
}

.faq-hero::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 179, 198, 0.12) 0%, transparent 70%);
    bottom: -60px;
    right: -20px;
    border-radius: 50%;
    pointer-events: none;
    animation: contactBlobFloat 11s ease-in-out infinite reverse;
}

.faq-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #e56b8c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px -5px rgba(255, 143, 171, 0.35);
    animation: contactIconPulse 3s ease-in-out infinite 0.5s;
}

.faq-hero-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.faq-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}


.accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.accordion-item {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px -3px rgba(255, 143, 171, 0.08); 
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 143, 171, 0.12);
    position: relative;
    z-index: 1;
}

.accordion-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,229,236,0.3) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.accordion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -8px rgba(255, 143, 171, 0.18);
    border-color: rgba(255, 143, 171, 0.25);
}

.accordion-item:hover::before {
    opacity: 1;
}

.accordion-item:has(> .accordion-header[aria-expanded="true"]) {
    box-shadow: 0 15px 35px -5px rgba(255, 143, 171, 0.2);
    border-color: rgba(255, 143, 171, 0.35);
    transform: translateY(-2px);
}

.accordion-item:has(> .accordion-header[aria-expanded="true"])::before {
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,240,245,0.6) 100%);
    opacity: 1;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem 1.8rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.accordion-header-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    padding-right: 1.5rem;
}

.accordion-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff0f3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: inset 0 0 0 1px rgba(255, 143, 171, 0.15);
}

.accordion-item-icon i {
    font-size: 1.2rem;
    color: var(--accent-primary);
    transition: all 0.4s ease;
}

.accordion-header-content span {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.accordion-header:hover .accordion-item-icon,
.accordion-header:focus .accordion-item-icon {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #ffb3c6 100%);
    box-shadow: 0 6px 15px -3px rgba(255, 143, 171, 0.4);
    transform: scale(1.05);
}

.accordion-header:hover .accordion-item-icon i,
.accordion-header:focus .accordion-item-icon i {
    color: #fff;
}

.accordion-header[aria-expanded="true"] .accordion-item-icon {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #ffb3c6 100%);
    box-shadow: 0 6px 15px -3px rgba(255, 143, 171, 0.4);
}

.accordion-header[aria-expanded="true"] .accordion-item-icon i {
    color: #fff;
}

.accordion-header:hover .accordion-header-content span,
.accordion-header:focus .accordion-header-content span {
    color: #e56b8c;
}

.accordion-header[aria-expanded="true"] .accordion-header-content span {
    color: #e56b8c;
}

.accordion-header[aria-expanded="true"] {
    padding-bottom: 1rem;
}

.accordion-icon {
    color: var(--accent-primary);
    background-color: #fff0f3;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
    font-size: 1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 143, 171, 0.2);
}

.accordion-header:hover .accordion-icon {
    background-color: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 143, 171, 0.3);
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
    background-color: var(--accent-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 143, 171, 0.4);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content p {
    padding: 0 2rem 2rem 5rem; 
    color: var(--text-muted);
    margin: 0;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}




.contact-hero {
    padding: 2.5rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 143, 171, 0.12) 0%, transparent 70%);
    top: -80px;
    right: -60px;
    border-radius: 50%;
    pointer-events: none;
    animation: contactBlobFloat 8s ease-in-out infinite;
}

.contact-hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 179, 198, 0.1) 0%, transparent 70%);
    bottom: -40px;
    left: -40px;
    border-radius: 50%;
    pointer-events: none;
    animation: contactBlobFloat 10s ease-in-out infinite reverse;
}

@keyframes contactBlobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -10px) scale(1.05); }
    66% { transform: translate(-10px, 8px) scale(0.97); }
}

.contact-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #ffb3c6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px -5px rgba(255, 143, 171, 0.35);
    animation: contactIconPulse 3s ease-in-out infinite;
}

.contact-hero-icon i {
    font-size: 2rem;
    color: #fff;
}

@keyframes contactIconPulse {
    0%, 100% { box-shadow: 0 10px 30px -5px rgba(255, 143, 171, 0.35); transform: scale(1); }
    50% { box-shadow: 0 14px 40px -5px rgba(255, 143, 171, 0.5); transform: scale(1.04); }
}

.contact-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}


.contact-cards-section {
    padding: 1.5rem 0 2rem;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff7f9 100%);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 143, 171, 0.12);
    box-shadow: 0 4px 15px -3px rgba(255, 143, 171, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255, 143, 171, 0.1) 0%, rgba(255, 143, 171, 0.03) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -8px rgba(255, 143, 171, 0.22);
    border-color: rgba(255, 143, 171, 0.3);
    color: var(--text-dark);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff0f3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: inset 0 0 0 1px rgba(255, 143, 171, 0.15);
}

.contact-card-icon i {
    font-size: 1.4rem;
    color: var(--accent-primary);
    transition: transform 0.4s ease, color 0.4s ease;
}

.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #ffb3c6 100%);
    box-shadow: 0 8px 20px -4px rgba(255, 143, 171, 0.4);
}

.contact-card:hover .contact-card-icon i {
    color: #fff;
    transform: scale(1.15);
}

.contact-card-label {
    font-family: var(--font-slogan);
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    color: #c4687e;
    margin-bottom: 0.4rem;
}

.contact-card-value {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.4;
}


.contact-form-section {
    padding-top: 1rem;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 2.5rem;
    align-items: stretch;
}


.contact-form-side {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #e56b8c 100%);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.contact-form-side::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    top: -60px;
    right: -50px;
    pointer-events: none;
}

.contact-form-side::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    bottom: -40px;
    left: -30px;
    pointer-events: none;
}

.contact-form-side-content {
    position: relative;
    z-index: 1;
}

.contact-form-side-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.contact-form-side-icon i {
    font-size: 1.4rem;
    color: #fff;
}

.contact-form-side-title {
    font-family: var(--font-slogan);
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.contact-form-side-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-form-side-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-side-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-side-feature i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}

.contact-side-feature span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}


.contact-form-wrapper {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px -5px rgba(255, 143, 171, 0.1);
    border: 1px solid rgba(255, 143, 171, 0.08);
}


@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .contact-form-layout {
        grid-template-columns: 1fr;
    }
    .contact-form-side {
        padding: 2rem 1.5rem;
    }
    .contact-form-side-title {
        font-size: 1.5rem;
    }
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    .contact-hero-subtitle,
    .faq-hero-subtitle {
        font-size: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .contact-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .contact-form-layout {
        grid-template-columns: 1fr 1.3fr;
        gap: 1.5rem;
    }
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-row .form-group {
    margin-bottom: 0;
}

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

.label-optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: #f3f4f6;
    transition: all var(--transition-fast);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%231F2937%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 0.65rem auto;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background-color: #fff;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(255, 143, 171, 0.2);
}


.radio-group {
    display: flex;
    background-color: #f3f4f6;
    border-radius: var(--radius-sm);
    padding: 4px;
    gap: 4px;
    height: 3.125rem; 
    align-items: center;
}

.radio-btn {
    flex: 1;
    text-align: center;
    cursor: pointer;
    display: block;
    height: 100%;
}

.radio-btn input {
    display: none;
}

.radio-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    border-radius: calc(var(--radius-sm) - 2px);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all var(--transition-fast);
    height: 100%;
}

.radio-btn input:checked + span {
    background-color: #fff;
    color: var(--text-dark);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.form-submit-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.submit-btn {
    padding: 0.875rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.support-link {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.support-link:hover {
    text-decoration: underline;
}

.form-privacy-notice {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.form-privacy-notice a {
    color: var(--accent-primary);
    text-decoration: underline;
}


.cta-box {
    background: linear-gradient(135deg, var(--bg-primary) 0%, #fff7f9 100%);
    border-radius: 24px;
    padding: 4rem 2rem;
    box-shadow: 0 15px 35px rgba(255, 143, 171, 0.15), inset 0 0 0 1px rgba(255, 143, 171, 0.2);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-box::before {
    content: '\f2b6'; 
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 14rem;
    color: rgba(255, 143, 171, 0.08); 
    z-index: -1;
    transform: rotate(-15deg);
    pointer-events: none;
}

.cta-question {
    font-family: var(--font-slogan);
    font-size: 2.2rem;
    font-weight: 400;
    font-style: italic;
    color: #c4687e;
    margin-bottom: 2rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.cta-btn {
    font-size: 1.25rem;
    padding: 1.25rem 3.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 15px rgba(255, 143, 171, 0.3);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 143, 171, 0.4);
}

.cta-note {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    margin: 0;
}

.cta-note em {
    font-style: italic;
    color: var(--text-dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .cta-box {
        padding: 3rem 1.5rem;
    }
    .cta-question {
        font-size: 1.8rem;
    }
    .cta-box::before {
        font-size: 10rem;
        right: -30px;
    }
}


.site-footer {
    background-color: #fff;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 143, 171, 0.2);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    color: var(--accent-primary);
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--accent-primary);
    color: var(--text-dark); 
    transform: translateY(-3px);
}

.footer-links {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
    width: 100%;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-links a {
    color: var(--text-muted);
}


.service-detail-hero {
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #fff7f9 100%);
}

.service-detail-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #ffb3c6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px -5px rgba(255, 143, 171, 0.4);
}

.service-detail-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.service-detail-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-detail-category {
    font-family: var(--font-slogan);
    font-size: 1.25rem;
    font-style: italic;
    color: #c4687e;
}

.service-detail-content {
    padding: 4rem 0 6rem;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-detail-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-muted);
}

.service-detail-text p {
    margin-bottom: 1.5rem;
}

.service-detail-sidebar {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 143, 171, 0.15);
    box-shadow: 0 15px 35px -5px rgba(255, 143, 171, 0.12);
    text-align: center;
    position: sticky;
    top: 100px;
}

.service-detail-sidebar h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-detail-sidebar p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}





@media (max-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-container {
        gap: 2rem;
    }
}


@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .about-portrait {
        float: none;
        display: block;
        margin: 0 auto 2rem;
        width: 220px;
        height: 220px;
    }

    .hero-image-wrapper {
        order: -1; 
    }

    .hero-image {
        margin-top: -15px; 
    }



    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-submit-row {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .header-container {
        justify-content: center;
        position: relative;
    }

    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 1.5rem;
    }

    .main-nav {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background-color: #fbf9f4;
        transition: left 0.3s ease-in-out;
        box-shadow: var(--shadow-md);
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-detail-title {
        font-size: 2rem;
    }

    
    .has-dropdown {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .has-dropdown > .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        padding: 0;
        margin-top: 0;
        border: none;
        min-width: unset;
        width: 85%;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.6);
        border-radius: 16px;
        transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease, padding 0.3s ease;
    }
    
    .has-dropdown.active-dropdown .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 800px;
        margin-top: 1rem;
        padding: 0.5rem 0;
    }

    .has-dropdown:hover .dropdown-menu {
        opacity: 0;
        max-height: 0;
        visibility: hidden;
    }
    
    .has-dropdown.active-dropdown:hover .dropdown-menu {
        opacity: 1;
        max-height: 800px;
        visibility: visible;
    }
    
    .dropdown-menu li {
        width: 100%;
    }

    .dropdown-menu a {
        font-size: 0.95rem;
        padding: 0.75rem 1.25rem;
        border-left: none;
        border-bottom: 1px solid rgba(255, 143, 171, 0.1);
        color: var(--text-dark);
    }

    .dropdown-menu li:last-child a {
        border-bottom: none;
    }

    
    .dropdown-icon {
        display: none !important;
    }

    
    .mobile-menu-btn.active .hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-menu-btn.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active .hamburger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}


@media (max-width: 375px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-image {
        max-width: 300px;
    }
}


.signature-text {
    font-family: var(--font-slogan);
    font-size: 2rem;
    font-style: italic;
    color: var(--accent-primary);
    margin-top: 2rem;
    text-align: right;
    font-weight: 600;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
}

@media (min-width: 769px) { 
    
    
}


@media (max-width: 768px) {
    #home-whatsapp {
        display: none !important;
    }
}
