/* Navigation & Dropdowns */
.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dropdown-menu {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Drawer */
#mobile-drawer {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-drawer.open {
    transform: translateX(0);
}

.drawer-overlay {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.6);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* UI Elements */
.gradient-text {
    background: linear-gradient(45deg, #ff85b3, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-button-hero {
    background-color: var(--brand-pink);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(188, 38, 108, 0.4);
}

.cta-button-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(188, 38, 108, 0.5);
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    height: 100%;
}

.service-card:hover {
    border-color: var(--brand-pink);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -15px rgba(188, 38, 108, 0.15);
}

/* Add this to your existing CSS file */
.cta-maintenance {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: var(--brand-pink);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem; /* Matches your rounded-xl */
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-maintenance:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 40px;
}

.form-section {
    flex: 3;
    min-width: 320px;
}

.details-section {
    flex: 2;
    min-width: 280px;
}

.form-card {
    padding: 40px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-pink);
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e6dbe1;
    border-radius: 14px;
    box-sizing: border-box;
    font-size: 16px;
    transition: all 0.25s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brand-pink);
    outline: none;
    box-shadow: 0 0 0 4px rgba(188, 38, 108, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    background-color: var(--brand-pink);
    color: white;
    padding: 16px 20px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.25s ease;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
}

.pricing-note {
    background: #faf4f7;
    color: var(--brand-pink);
    padding: 18px 20px;
    border-radius: 20px;
    margin-top: 24px;
    font-weight: 500;
    line-height: 1.7;
    border: 1px solid #f2dce7;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 14px 0;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.contact-item:hover {
    transform: translateX(4px);
}

.contact-icon {
    font-size: 30px;
    color: var(--brand-pink);
    margin-right: 16px;
}

.map-iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

/* Luxury Contact Card */
.contact-card {
    background: var(--surface-white);
    border: 1px solid var(--border-soft);
    border-radius: 32px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

/* Contact Row */
.contact-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-soft);
    transition: all 0.3s ease;
}

.contact-row:hover {
    transform: translateX(4px);
}

.contact-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(188, 38, 108, 0.08);
    transition: all 0.3s ease;
}

.contact-row:hover .contact-icon-box {
    background: var(--brand-pink);
}

.contact-row:hover .contact-icon-box i {
    color: white;
}

.contact-icon-box i {
    color: var(--brand-pink);
    transition: all 0.3s ease;
}