:root {
    --primary: #331E46;    /* Dark purple */
    --secondary: #8561A5;  /* Light purple */
    --light-purple: #C9BAD7; /* Light purple background */
    --accent: #F0D87F;
    --white: #FFFFFF;
    --black: #000000;
}
.contact-info .social-link img[alt="Email"] {
 
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: white;  /* Added white background */
    margin: 0;
}

.site-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: white;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Add max-width container inside nav */
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* Shrink nav on scroll */
.nav-container.scrolled {
    padding: 0.5rem 2rem;
    background: rgba(255, 255, 255, 0.98);
}

.logo {
    transition: all 0.3s ease;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

/* Sleek underline effect */
.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
    transform-origin: left;
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

/* Add subtle hover glow */
.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 1px rgba(83, 39, 120, 0.2);
}

/* Add animation for menu items */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links li {
    animation: fadeInDown 0.4s ease forwards;
    opacity: 0;
}

.nav-links li:nth-child(1) { animation-delay: 0.1s; }
.nav-links li:nth-child(2) { animation-delay: 0.2s; }
.nav-links li:nth-child(3) { animation-delay: 0.3s; }
.nav-links li:nth-child(4) { animation-delay: 0.4s; }
.nav-links li:nth-child(5) { animation-delay: 0.5s; }

/* Enhanced Booking Button */
.booking-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(83, 39, 120, 0.2);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(83, 39, 120, 0.4);
}

.booking-btn:active {
    transform: translateY(-1px);
}

/* Add shine effect to booking button */
.booking-btn:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(30deg);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.booking-btn:hover:before {
    transform: translateX(100%) rotate(30deg);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 40% 60%;
    background: #F3F3F3;
    height: fit-content;  /* Changed from min-height: 80vh */
}

.hero-content {
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: #F3F3F3;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-image {
    background: #F3F3F3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.hero-image img {
    width: 100%;
    height: auto;  /* Changed from 100% */
    object-fit: contain;
    display: block;
}

.hero-content h1 {
    text-align: center;
    width: 100%;
}

/* Info Section */
.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 600px;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-content {
    background: var(--primary);
    color: var(--white);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Enhanced Service Button */
.service-btn {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    margin-top: 2rem;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(83, 39, 120, 0.2);
    text-transform: uppercase;
    font-size: 0.9rem;
    align-self: flex-start;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(83, 39, 120, 0.4);
}

.service-btn:active {
    transform: translateY(-1px);
}

/* Add shine effect to service button */
.service-btn:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(30deg);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.service-btn:hover:before {
    transform: translateX(100%) rotate(30deg);
}

/* Footer */
footer {
    background: var(--secondary);
    width: 100%;
    margin-top: auto;
    clear: both;
    position: relative;
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer-logo {
    text-align: center;  /* Centers the logo container */
}

.footer-logo img {
    height: 140px;  /* Increased from current size */
    width: auto;
}

.contact-info,
.social-link,
.hours h3,
.phone {
    color: var(--white);  /* Changed from var(--primary) to var(--white) */
}

.hours ul li {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: space-between;
    gap: 2rem;  /* Adds 2rem spacing between the day and time */
}

.address {
    color: rgba(255, 255, 255, 0.7);  /* Changed to semi-transparent white */
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        background: var(--light-purple);
    }

    .info-section {
        grid-template-columns: 1fr;
        height: auto;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .mobile-menu {
        display: block;
    }

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

    /* Optional: Add animation for active state */
    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .additional-services {
        background: #331E46;  /* Changed from white to #331E46 to match desktop */
    }

    .service-section h2,
    .service-item h3,
    .creative-services h3,
    .creative-services ul li {
        color: #BF70D4;  /* Removed service-list p from this group */
    }

    .service-list p {
        color: white;  /* Ensure it stays white on mobile */
    }

    .service-list span,
    .note {
        color: white;
    }
}

.social-link {
    text-decoration: none;
    display: inline-block;  /* This will also help with spacing */
}

.about-hero {
    position: relative;
    height: 500px;  /* Increased from 400px to 500px */
    margin-top: 160px;
    grid-template-columns: 1fr;  /* Override default grid */
}

.about-hero .hero-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    text-align: center;
    background: none;  /* Remove any background */
    padding: 0;  /* Remove padding to ensure no background shows */
}

.about-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-hero .hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);  /* 20% tint */
    z-index: 1;
}

.about-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero h1 {
    color: white;
    font-size: 3.5rem;
}

.dog-size-chart {
    padding: 4rem 2rem;
    text-align: center;
    background: #EFEAF3;  /* Changed from var(--light-purple) to #EFEAF3 */
}

.dog-size-chart h2 {
    color: var(--primary);
    margin-bottom: 3rem;
}

.size-categories {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.size-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.size-category img {
    width: 100px;
    height: auto;
}

.size-category h3 {
    color: var(--primary);
    margin: 0;
}

.size-category p {
    color: var(--secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .size-categories {
        flex-direction: column;
        align-items: center;
    }

    .size-category {
        width: 100%;
        max-width: 200px;
    }
}

.packages {
    padding: 4rem 2rem;
    background: var(--primary);
    max-width: 1440px;  /* Changed from 1400px to 1440px */
}

.package {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: white;  /* White background for each package */
    border-radius: 8px;  /* Optional: rounded corners */
}

.package h2 {
    color: #BF70D4;  /* Changed from var(--accent) */
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.package h2 img {
    width: 30px;
    height: auto;
}

.package-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.package-details {
    flex: 2;
}

.package-pricing {
    flex: 1;
    color: #BF70D4;  /* Changed from var(--accent) */
}

.package-details ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.package-details ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #BF70D4;
    font-weight: bold;
}

.package-pricing ul li {
    color: #BF70D4;  /* Ensure list items are purple */
    font-weight: bold;  /* Make pricing bold */
}

.package-pricing ul li::before {
    content: none;
}

.includes {
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--black);  /* Added black color */
}

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

.package-details ul {
    color: var(--black);  /* Keep list text black */
}

.package-pricing ul {
    color: #BF70D4;  /* Keep pricing purple */
}

.package-notes {
    margin-top: 2rem;
    font-size: 0.9em;
    color: #BF70D4;
}

.package-notes p {
    color: #BF70D4;  /* Ensure paragraphs in notes are purple */
}

.vip-package {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--accent);
    color: var(--primary);
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.vip-package img {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: auto;
}

@media (max-width: 768px) {
    .package-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .vip-package img {
        display: none;
    }

    .packages {
        background: white;  /* Remove purple background on mobile */
        padding: 2rem 1rem;  /* Adjust padding for mobile */
    }

    .package {
        padding: 1rem;  /* Adjust package padding for mobile */
    }
}

.additional-services {
    background: #331E46;  /* Changed from var(--primary) to #331E46 */
    padding: 4rem 2rem;
    color: white;
    max-width: 1440px;
    padding-top:0;
}

.service-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.service-section h2 {
    color: #BF70D4;
}

.service-items .service-item {
    margin-bottom: 2rem;
}
.service-items h2 {
    color: #BF70D4;
}

.service-item h3 {
    color: white;  /* Changed from #BF70D4 */
    margin-bottom: 0.5rem;
}

.service-list p {
    margin-bottom: 1rem;
    color: white;  /* Changed from #BF70D4 to white */
}

.service-list span {
    color: white;
    font-size: 0.9em;
}

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

.creative-services h3 {
    color: white;  /* Changed from #BF70D4 */
    margin-bottom: 1rem;
}

.creative-services ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.creative-services ul li {
    color: white;  /* Changed from #BF70D4 */
    margin-bottom: 0.5rem;
}

.note {
    font-style: italic;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .additional-services {
        background: #331E46;
    }

    .service-section h2,
    .service-item h3,
    .creative-services h3,
    .creative-services ul li {
        color: #BF70D4;  /* Removed service-list p from this group */
    }

    .service-list p {
        color: white;  /* Ensure it stays white on mobile */
    }

    .service-list span,
    .note {
        color: white;
    }

    .creative-services {
        grid-template-columns: 1fr;
    }
}

.daycare-section {
    max-width: 1440px;
    background: #694886;  /* Changed from var(--secondary) to #694886 */
    color: white;
}

.daycare-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.daycare-image {
    height: 100%;
}

.daycare-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.daycare-info {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.daycare-info h2 {
    color: white;
    margin-bottom: 1rem;
}

.daycare-rates {
    margin: 1rem 0;
}

.daycare-rates p {
    margin-bottom: 0.5rem;
}

.daycare-notes {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .daycare-content {
        grid-template-columns: 1fr;
    }

    .daycare-image {
        height: 300px;
    }

    .daycare-info {
        padding: 2rem;
    }
}

/* Pricing Cards Styling */
.price-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.dog-size {
    font-weight: 500;
    color: #555;
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.price {
    font-weight: 700;
    font-size: 1.4rem;
    color: #9c8067; /* Match your brand color */
}

/* VIP Package Styling - Premium Gold/Purple Theme */
.vip-package {
    background: linear-gradient(135deg, #f5f0e6 0%, #e8dcca 100%);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(156, 128, 103, 0.2);
    border: 1px solid rgba(156, 128, 103, 0.3);
}

.vip-package h2 {
    color: #9c8067;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.vip-package h2:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 25%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #9c8067, transparent);
}

.vip-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #9c8067;
    margin: 20px 0 5px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.vip-note {
    font-style: italic;
    color: #9c8067;
    opacity: 0.8;
    margin-bottom: 15px;
}

.vip-package p {
    color: white;
    font-weight: 500;
}

.vip-package img {
    margin-top: 15px;
    max-width: 100px;
    opacity: 0.8;
}

/* Add a subtle shine effect */
.vip-package:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(30deg);
    animation: shine 6s infinite linear;
    pointer-events: none;
}

@keyframes shine {
    from {
        transform: translateX(-100%) rotate(30deg);
    }
    to {
        transform: translateX(100%) rotate(30deg);
    }
}

/* Service Item Styling */
.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.service-price {
    font-weight: 700;
    color: #9c8067 !important; /* Using !important to override any conflicting styles */
    background-color: #f8f9fa;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 1rem;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.service-name {
    font-weight: 500;
    flex: 1;
}

.service-note {
    font-style: italic;
    color: #6c757d;
    font-size: 0.85rem;
    margin-left: 10px;
}

/* Creative Pricing Styling */
.creative-price-list {
    list-style: none;
    padding: 0;
}

.creative-price-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
}

.creative-price {
    font-weight: 700;
    color: #9c8067;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3px 12px;
    border-radius: 20px;
}

/* Daycare Rates Styling */
.daycare-rates {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.daycare-rate-card {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    flex: 1;
    min-width: 120px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.daycare-rate-card:hover {
    transform: translateY(-3px);
}

.rate-title {
    font-weight: 500;
    color: #495057;
    margin-bottom: 8px;
}

.rate-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #9c8067;
    margin-bottom: 5px;
}

.rate-unit {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .price-cards {
        justify-content: center;
    }
    
    .price-card {
        min-width: 80px;
    }
    
    .service-row {
        flex-wrap: wrap;
    }
    
    .service-price {
        margin: 5px 0;
    }
    
    .daycare-rate-card {
        min-width: 100%;
    }
}

/* Fix for service list pricing text color */
.service-list .service-row .service-price {
    color: #9c8067; /* Ensuring the text color matches other pricing elements */
    background-color: #f8f9fa;
    font-weight: 700;
}

/* Ensure all service prices have consistent styling */
.service-price {
    font-weight: 700;
    color: #9c8067 !important; /* Using !important to override any conflicting styles */
    background-color: #f8f9fa;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 1rem;
}

/* Updated Contact Form Styling */
.contact-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background-color: #331E44;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Add decorative elements */
.contact-section:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(151, 71, 255, 0.2) 0%, rgba(151, 71, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.contact-section:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(151, 71, 255, 0.15) 0%, rgba(151, 71, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem; /* Increased gap between label and input */
    position: relative;
    margin-bottom: 1.2rem; /* Add space between form groups */
}

.form-group label {
    font-weight: 500;
    color: white;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
    position: static; /* Keep label in place */
    opacity: 0.9;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(151, 71, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(151, 71, 255, 0.2);
}

/* Remove floating label effect */
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    transform: none;
    color: white;
}

/* Remove placeholder to avoid conflicts */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

/* Form intro message */
.form-intro {
    margin-bottom: 2rem;
    color: white;
    line-height: 1.6;
}

.form-intro h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.form-intro p {
    opacity: 0.9;
    font-size: 1.05rem;
}

.send-btn {
    background: linear-gradient(135deg, #9747FF 0%, #8035E8 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    font-size: 1rem;
}

.send-btn:hover {
    background: linear-gradient(135deg, #8035E8 0%, #6D2AC7 100%);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(151, 71, 255, 0.4);
}

.send-btn:active {
    transform: translateY(-1px);
}

/* Add shine effect to send button */
.send-btn:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(30deg);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.send-btn:hover:before {
    transform: translateX(100%) rotate(30deg);
}

/* Success and error messages */
.success-message,
.error-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: fadeIn 0.5s ease;
}

.success-message {
    background-color: rgba(25, 135, 84, 0.2);
    border: 1px solid rgba(25, 135, 84, 0.3);
    color: #d1e7dd;
}

.error-message {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #f8d7da;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contact info section styling */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.hours-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease;
}

.hours-section:hover {
    transform: translateY(-5px);
}

.hours-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.hours-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #9747FF, transparent);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.hours-list li:hover {
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 4px;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .contact-form,
    .hours-section {
        padding: 1.5rem;
    }

    .send-btn {
        width: 100%;
    }
}

/* Enhanced Select Styling with Descriptions */
.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.select-wrapper select:focus {
    outline: none;
    border-color: rgba(151, 71, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(151, 71, 255, 0.2);
}

.select-arrow {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Custom dropdown styling */
.custom-select-container {
    position: relative;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.custom-select-trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-select-trigger:after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.custom-select-trigger.active:after {
    transform: translateY(-50%) rotate(180deg);
}

.custom-options {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #331E44;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 0;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
}

.custom-options.open {
    display: block;
}

.option-group-label {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    font-weight: 600;
    color: white;
    background-color: rgba(151, 71, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.group-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.custom-option {
    display: flex;
    align-items: flex-start;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.custom-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.custom-option.selected {
    background-color: rgba(255, 255, 255, 0.2);
    border-left: 3px solid #9747FF;
}

.option-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    flex-shrink: 0;
}

.option-content {
    flex-grow: 1;
}

.option-title {
    display: block;
    font-weight: 500;
    color: white;
}

.option-price {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
    margin: 2px 0;
}

.option-description {
    display: block;
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.6);
}

.hidden-select {
    display: none;
}

/* Scrollbar styling for the dropdown */
.custom-options::-webkit-scrollbar {
    width: 8px;
}

.custom-options::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.custom-options::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.custom-options::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.5);
}