/* 
* Noble Brand Ambassadors - Main Stylesheet
* https://noblebrandambassadors.com/
* 
* Contains all styling for the website, optimized for cross-browser compatibility
*/

/* =======================================
   Base Variables & Settings
   ======================================= */
:root {
    /* Color palette inspired by floral bouquet images */
    --daisy-white: #FDFBF6;
    --soft-pink: #F9BCBC;
    --peach: #F8C4A9;
    --light-blue: #C9D5EA;
    --pale-lavender: #D2D6EF;
    --sage-green: #B8C7A4;
    --leaf-green: #7E9170;
    --warm-cream: #FCF7F0;
    --golden-yellow: #F7CA6E;
    --earthy-brown: #78604D;
    --cosmos-pink: #F7B9C0;
    --ranunculus-peach: #F7C1A0;
}

/* =======================================
   Slide-in Contact Form Styles
   ======================================= */
.slide-in-contact {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: white;
    z-index: 1000;
    -webkit-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    -o-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    -webkit-transition: right 0.3s ease-in-out;
    -moz-transition: right 0.3s ease-in-out;
    -ms-transition: right 0.3s ease-in-out;
    -o-transition: right 0.3s ease-in-out;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    padding: 30px;
}

.slide-in-contact.active {
    right: 0;
}

.slide-in-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--earthy-brown);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.slide-in-close:hover {
    color: var(--cosmos-pink);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.slide-in-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.slide-in-overlay.active {
    opacity: 1;
    visibility: visible;
}

.slide-in-contact h2 {
    margin-bottom: 15px;
    color: var(--earthy-brown);
    font-size: 1.8rem;
}

.slide-in-contact p {
    margin-bottom: 20px;
    color: #555;
}

.slide-in-contact label {
    display: block;
    margin-bottom: 5px;
    color: var(--earthy-brown);
    font-weight: 500;
}

/* Mobile adjustments for slide-in form */
@media (max-width: 576px) {
    .slide-in-contact {
        max-width: 100%;
        padding: 20px;
    }
}

/* =======================================
   Reset & Global Styles
   ======================================= */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--warm-cream);
    color: #333;
    line-height: 1.6;
    margin-top: -10px;
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: var(--earthy-brown);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img, svg, video {
    max-width: 100%;
    height: auto;
}

/* =======================================
   Container & Layout
   ======================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Background with floral pattern */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cdefs%3E%3Cpattern id='floral' x='0' y='0' width='180' height='180' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='90' cy='90' r='30' fill='none' stroke='%23F9BCBC' stroke-width='1' stroke-opacity='0.2'/%3E%3Ccircle cx='90' cy='90' r='15' fill='%23F9BCBC' fill-opacity='0.1'/%3E%3Ccircle cx='120' cy='90' r='15' fill='%23F8C4A9' fill-opacity='0.1'/%3E%3Ccircle cx='90' cy='120' r='15' fill='%23C9D5EA' fill-opacity='0.1'/%3E%3Ccircle cx='60' cy='90' r='15' fill='%23B8C7A4' fill-opacity='0.1'/%3E%3Ccircle cx='90' cy='60' r='15' fill='%23F7CA6E' fill-opacity='0.1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23floral)'/%3E%3C/svg%3E");
    z-index: -2;
    opacity: 0.25;
}

/* =======================================
   Custom Cursor Styling
   ======================================= */
html {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8' fill='%23F8C4C0' fill-opacity='0.6'/%3E%3Ccircle cx='12' cy='12' r='4' fill='%23F0C061' fill-opacity='0.8'/%3E%3C/svg%3E"), auto;
}

a, button, .btn, input, textarea, .service-card, .badge, .social-links a {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23F8C4C0' stroke-width='2' fill='white' fill-opacity='0.6'/%3E%3Ccircle cx='12' cy='12' r='4' fill='%23F0C061'/%3E%3C/svg%3E"), pointer;
}

/* =======================================
   Header & Navigation
   ======================================= */
header {
    background-color: rgba(252, 247, 240, 0.9);
    -webkit-box-shadow: 0 2px 10px rgba(120, 96, 77, 0.1);
    -moz-box-shadow: 0 2px 10px rgba(120, 96, 77, 0.1);
    -ms-box-shadow: 0 2px 10px rgba(120, 96, 77, 0.1);
    -o-box-shadow: 0 2px 10px rgba(120, 96, 77, 0.1);
    box-shadow: 0 2px 10px rgba(120, 96, 77, 0.1);
    position: fixed;
    width: 100%;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
    border: 2px solid var(--soft-pink);
}

.logo-text {
    margin-left: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--earthy-brown);
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 25px;
    min-width: 110px !important;
}

.nav-links a {
    font-weight: 500;
    padding: 5px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--cosmos-pink);
    background-color: rgba(249, 188, 188, 0.1);
    padding: 5px 10px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--earthy-brown);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header-social-links {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.header-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--earthy-brown);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: rgba(248, 196, 192, 0.2);
}

.header-social-links a:hover {
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
    color: var(--soft-pink);
    background-color: rgba(248, 196, 192, 0.3);
}

.header-social-mobile {
    display: none;
    justify-content: center;
    padding: 10px 0;
    gap: 15px;
    background-color: rgba(252, 247, 240, 0.9);
    z-index: 99;
}

.header-social-mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--earthy-brown);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: rgba(248, 196, 192, 0.2);
}

.header-social-mobile a:hover {
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
    color: var(--soft-pink);
    background-color: rgba(248, 196, 192, 0.3);
}

/* =======================================
   Hero Section
   ======================================= */
.hero {
    padding: 250px 0 180px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.container.hero-content {
    background: linear-gradient(to right, transparent, transparent, transparent, rgba(252, 247, 240, 0.25), rgba(252, 247, 240, 0.50), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.75), rgba(252, 247, 240, 0.50), rgba(252, 247, 240, 0.25), transparent, transparent, transparent) !important;
    padding: 15px !important;
    -webkit-border-radius: 40px !important;
    -moz-border-radius: 40px !important;
    -ms-border-radius: 40px !important;
    -o-border-radius: 40px !important;
    border-radius: 40px !important;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--earthy-brown);
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555;
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.business-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.business-badges span {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--soft-pink);
    padding: 8px 15px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--earthy-brown);
    display: flex;
    align-items: center;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    -ms-box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    -o-box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: bold;
}

.business-badges span:hover {
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    -ms-box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    -o-box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, var(--daisy-white), var(--soft-pink));
}

.business-badges i {
    margin-right: 8px;
    color: var(--peach);
}

/* =======================================
   Button Styles
   ======================================= */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--pale-lavender), var(--cosmos-pink));
    color: #333;
    padding: 12px 30px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    font-weight: 500;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.7);
    -webkit-box-shadow: 0 4px 10px rgba(249, 188, 188, 0.2);
    -moz-box-shadow: 0 4px 10px rgba(249, 188, 188, 0.2);
    -ms-box-shadow: 0 4px 10px rgba(249, 188, 188, 0.2);
    -o-box-shadow: 0 4px 10px rgba(249, 188, 188, 0.2);
    box-shadow: 0 4px 10px rgba(249, 188, 188, 0.2);
}

.btn:hover {
    background: linear-gradient(135deg, var(--cosmos-pink), var(--pale-lavender));
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 8px 20px rgba(249, 188, 188, 0.3);
    -moz-box-shadow: 0 8px 20px rgba(249, 188, 188, 0.3);
    -ms-box-shadow: 0 8px 20px rgba(249, 188, 188, 0.3);
    -o-box-shadow: 0 8px 20px rgba(249, 188, 188, 0.3);
    box-shadow: 0 8px 20px rgba(249, 188, 188, 0.3);
}

/* =======================================
   Section Styles
   ======================================= */
.services, .about, .contact {
    padding: 80px 0;
    position: relative;
}

.services::before, .about::before, .contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='15' viewBox='0 0 400 15'%3E%3Cpath d='M0,10 C10,5 15,0 20,0 C25,0 30,5 40,10 C50,5 55,0 60,0 C65,0 70,5 80,10 C90,5 95,0 100,0 C105,0 110,5 120,10 C130,5 135,0 140,0 C145,0 150,5 160,10 C170,5 175,0 180,0 C185,0 190,5 200,10 C210,5 215,0 220,0 C225,0 230,5 240,10 C250,5 255,0 260,0 C265,0 270,5 280,10 C290,5 295,0 300,0 C305,0 310,5 320,10 C330,5 335,0 340,0 C345,0 350,5 360,10 C370,5 375,0 380,0 C385,0 390,5 400,10' fill='none' stroke='%23F9BCBC' stroke-width='1' stroke-opacity='0.5'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='15' viewBox='0 0 40 15'%3E%3Ccircle cx='20' cy='5' r='3' fill='%23FDFBF6'/%3E%3Ccircle cx='20' cy='5' r='1' fill='%23F7CA6E'/%3E%3C/svg%3E");
    background-repeat: repeat-x, repeat-x;
    background-position: center, center;
    z-index: 10;
}

.services::after, .about::after, .contact::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='15' viewBox='0 0 400 15'%3E%3Cpath d='M0,5 C10,10 15,15 20,15 C25,15 30,10 40,5 C50,10 55,15 60,15 C65,15 70,10 80,5 C90,10 95,15 100,15 C105,15 110,10 120,5 C130,10 135,15 140,15 C145,15 150,10 160,5 C170,10 175,15 180,15 C185,15 190,10 200,5 C210,10 215,15 220,15 C225,15 230,10 240,5 C250,10 255,15 260,15 C265,15 270,10 280,5 C290,10 295,15 300,15 C305,15 310,10 320,5 C330,10 335,15 340,15 C345,15 350,10 360,5 C370,10 375,15 380,15 C385,15 390,10 400,5' fill='none' stroke='%23C9D5EA' stroke-width='1' stroke-opacity='0.5'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    z-index: 10;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--earthy-brown);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--peach);
}

.floral-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    position: relative;
}

.floral-icon {
    font-size: 1.5rem;
}

.floral-line {
    height: 1px;
    width: 30px;
    background: linear-gradient(to right, transparent, var(--cosmos-pink), transparent);
    margin: 0 10px;
    position: relative;
}

.floral-line::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Ccircle cx='4' cy='4' r='3' fill='%23F7CA6E' fill-opacity='0.5'/%3E%3C/svg%3E");
    background-size: contain;
    top: -3px;
}

.floral-line:first-child::before {
    right: 0;
}

.floral-line:last-child::before {
    left: 0;
}

.floral-divider::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='5' fill='white'/%3E%3Ccircle cx='10' cy='10' r='2' fill='%23F7CA6E'/%3E%3Cpath d='M10,2 Q13,6 18,10 Q13,14 10,18 Q7,14 2,10 Q7,6 10,2 Z' fill='white' fill-opacity='0.7' stroke='%23F9BCBC' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: contain;
    top: -10px;
}

/* =======================================
   Services Section
   ======================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(to bottom, white, var(--daisy-white));
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
    overflow: hidden;
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    -ms-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    -o-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(248, 196, 192, 0.3);
}

.service-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: transparent;
    border: 2px solid transparent;
    -webkit-border-radius: 17px;
    -moz-border-radius: 17px;
    -ms-border-radius: 17px;
    -o-border-radius: 17px;
    border-radius: 17px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

.service-card:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 15px 35px rgba(248, 196, 192, 0.3);
    -moz-box-shadow: 0 15px 35px rgba(248, 196, 192, 0.3);
    -ms-box-shadow: 0 15px 35px rgba(248, 196, 192, 0.3);
    -o-box-shadow: 0 15px 35px rgba(248, 196, 192, 0.3);
    box-shadow: 0 15px 35px rgba(248, 196, 192, 0.3);
}

.service-card:hover::before {
    border-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cdefs%3E%3ClinearGradient id='border-gradient' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23F8C4C0'/%3E%3Cstop offset='25%25' stop-color='%23C7D5EA'/%3E%3Cstop offset='50%25' stop-color='%23F0B697'/%3E%3Cstop offset='75%25' stop-color='%23B6C7A4'/%3E%3Cstop offset='100%25' stop-color='%23F0C061'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='0' y='0' width='100' height='100' fill='none' stroke='url(%23border-gradient)' stroke-width='4'/%3E%3Ccircle cx='0' cy='0' r='5' fill='%23F8C4C0'/%3E%3Ccircle cx='100' cy='0' r='5' fill='%23C7D5EA'/%3E%3Ccircle cx='0' cy='100' r='5' fill='%23F0B697'/%3E%3Ccircle cx='100' cy='100' r='5' fill='%23B6C7A4'/%3E%3C/svg%3E") 1;
}

/* Enhanced styling for catering and event cards */
.catering-card, .event-card {
    position: relative;
    overflow: visible;
}

.catering-card::after, .event-card::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

.catering-card::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50'%3E%3Ccircle cx='25' cy='25' r='20' fill='%23F7CA6E' fill-opacity='0.8'/%3E%3Cpath d='M15,25 Q25,15 35,25 Q25,35 15,25 Z' fill='white' stroke='white' stroke-width='2'/%3E%3Ccircle cx='25' cy='25' r='5' fill='white'/%3E%3C/svg%3E");
}

.event-card::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50'%3E%3Ccircle cx='25' cy='25' r='20' fill='%23F7B9C0' fill-opacity='0.8'/%3E%3Cpath d='M15,25 L22,32 L35,18' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.service-icon-decoration {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.service-title-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.service-badge {
    background: linear-gradient(135deg, var(--soft-pink), var(--peach));
    -webkit-box-shadow: 0 3px 8px rgba(240, 182, 151, 0.3);
    -moz-box-shadow: 0 3px 8px rgba(240, 182, 151, 0.3);
    -ms-box-shadow: 0 3px 8px rgba(240, 182, 151, 0.3);
    -o-box-shadow: 0 3px 8px rgba(240, 182, 151, 0.3);
    box-shadow: 0 3px 8px rgba(240, 182, 151, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 4px 10px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-left: 10px;
    color: white;
    white-space: nowrap;
}

.service-features {
    margin: 15px 0;
    padding-left: 5px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.service-features li i {
    color: var(--leaf-green);
    margin-right: 8px;
    background-color: rgba(248, 196, 169, 0.15);
    padding: 5px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.service-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    border-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='10' cy='10' r='8' fill='%23F8C4C0' fill-opacity='0.5'/%3E%3Ccircle cx='90' cy='10' r='8' fill='%23C7D5EA' fill-opacity='0.5'/%3E%3Ccircle cx='10' cy='90' r='8' fill='%23F0B697' fill-opacity='0.5'/%3E%3Ccircle cx='90' cy='90' r='8' fill='%23B6C7A4' fill-opacity='0.5'/%3E%3Cpath d='M20,0 L80,0 M0,20 L0,80 M20,100 L80,100 M100,20 L100,80' stroke='%23F0C061' stroke-width='1' stroke-opacity='0.3' stroke-dasharray='2 4'/%3E%3C/svg%3E") 20;
}

.service-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3C!-- Background circles --%3E%3Ccircle cx='100' cy='100' r='45' stroke='white' stroke-width='2' fill='none' stroke-opacity='0.2'/%3E%3Ccircle cx='100' cy='100' r='30' stroke='white' stroke-width='2' fill='none' stroke-opacity='0.2'/%3E%3C!-- Stylized flowers --%3E%3Cg opacity='0.3'%3E%3Ccircle cx='40' cy='40' r='12' fill='white'/%3E%3Ccircle cx='44' cy='36' r='4' fill='%23F0C061'/%3E%3Ccircle cx='36' cy='36' r='4' fill='%23F0C061'/%3E%3Ccircle cx='36' cy='44' r='4' fill='%23F0C061'/%3E%3Ccircle cx='44' cy='44' r='4' fill='%23F0C061'/%3E%3C/g%3E%3Cg opacity='0.3'%3E%3Ccircle cx='160' cy='40' r='12' fill='white'/%3E%3Ccircle cx='164' cy='36' r='4' fill='%23F0C061'/%3E%3Ccircle cx='156' cy='36' r='4' fill='%23F0C061'/%3E%3Ccircle cx='156' cy='44' r='4' fill='%23F0C061'/%3E%3Ccircle cx='164' cy='44' r='4' fill='%23F0C061'/%3E%3C/g%3E%3Cg opacity='0.3'%3E%3Ccircle cx='160' cy='160' r='12' fill='white'/%3E%3Ccircle cx='164' cy='156' r='4' fill='%23F0C061'/%3E%3Ccircle cx='156' cy='156' r='4' fill='%23F0C061'/%3E%3Ccircle cx='156' cy='164' r='4' fill='%23F0C061'/%3E%3Ccircle cx='164' cy='164' r='4' fill='%23F0C061'/%3E%3C/g%3E%3Cg opacity='0.3'%3E%3Ccircle cx='40' cy='160' r='12' fill='white'/%3E%3Ccircle cx='44' cy='156' r='4' fill='%23F0C061'/%3E%3Ccircle cx='36' cy='156' r='4' fill='%23F0C061'/%3E%3Ccircle cx='36' cy='164' r='4' fill='%23F0C061'/%3E%3Ccircle cx='44' cy='164' r='4' fill='%23F0C061'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100% 100%;
    opacity: 0.4;
    z-index: 0;
}

.service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to top, white, transparent);
    z-index: 1;
}

.service-img i {
    position: relative;
    z-index: 1;
}

/* Service card image backgrounds - inspired by floral arrangements */
.service-card:nth-child(1) {
    border-top: 3px solid var(--cosmos-pink);
    -webkit-box-shadow: 0 10px 25px rgba(249, 188, 188, 0.15);
    -moz-box-shadow: 0 10px 25px rgba(249, 188, 188, 0.15);
    -ms-box-shadow: 0 10px 25px rgba(249, 188, 188, 0.15);
    -o-box-shadow: 0 10px 25px rgba(249, 188, 188, 0.15);
    box-shadow: 0 10px 25px rgba(249, 188, 188, 0.15);
}

.service-card:nth-child(1) .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='80' cy='20' r='10' fill='%23F8C4C0' fill-opacity='0.3'/%3E%3Ccircle cx='20' cy='80' r='15' fill='%23F8C4C0' fill-opacity='0.3'/%3E%3Ccircle cx='50' cy='50' r='20' fill='%23F8C4C0' fill-opacity='0.1'/%3E%3C/svg%3E");
    background-size: 100px;
    opacity: 0.5;
    z-index: 0;
}

.service-card:nth-child(2) {
    border-top: 3px solid var(--ranunculus-peach);
    -webkit-box-shadow: 0 10px 25px rgba(248, 196, 169, 0.15);
    -moz-box-shadow: 0 10px 25px rgba(248, 196, 169, 0.15);
    -ms-box-shadow: 0 10px 25px rgba(248, 196, 169, 0.15);
    -o-box-shadow: 0 10px 25px rgba(248, 196, 169, 0.15);
    box-shadow: 0 10px 25px rgba(248, 196, 169, 0.15);
}

.service-card:nth-child(2) .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='80' cy='20' r='10' fill='%23C7D5EA' fill-opacity='0.3'/%3E%3Ccircle cx='20' cy='80' r='15' fill='%23C7D5EA' fill-opacity='0.3'/%3E%3Ccircle cx='50' cy='50' r='20' fill='%23C7D5EA' fill-opacity='0.1'/%3E%3C/svg%3E");
    background-size: 100px;
    opacity: 0.5;
    z-index: 0;
}

.service-card:nth-child(3) {
    border-top: 3px solid var(--pale-lavender);
    -webkit-box-shadow: 0 10px 25px rgba(210, 214, 239, 0.15);
    -moz-box-shadow: 0 10px 25px rgba(210, 214, 239, 0.15);
    -ms-box-shadow: 0 10px 25px rgba(210, 214, 239, 0.15);
    -o-box-shadow: 0 10px 25px rgba(210, 214, 239, 0.15);
    box-shadow: 0 10px 25px rgba(210, 214, 239, 0.15);
}

.service-card:nth-child(3) .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='80' cy='20' r='10' fill='%23F0B697' fill-opacity='0.3'/%3E%3Ccircle cx='20' cy='80' r='15' fill='%23F0B697' fill-opacity='0.3'/%3E%3Ccircle cx='50' cy='50' r='20' fill='%23F0B697' fill-opacity='0.1'/%3E%3C/svg%3E");
    background-size: 100px;
    opacity: 0.5;
    z-index: 0;
}

.service-card:nth-child(4) {
    border-top: 3px solid var(--light-blue);
    -webkit-box-shadow: 0 10px 25px rgba(201, 213, 234, 0.15);
    -moz-box-shadow: 0 10px 25px rgba(201, 213, 234, 0.15);
    -ms-box-shadow: 0 10px 25px rgba(201, 213, 234, 0.15);
    -o-box-shadow: 0 10px 25px rgba(201, 213, 234, 0.15);
    box-shadow: 0 10px 25px rgba(201, 213, 234, 0.15);
}

.service-card:nth-child(4) .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='80' cy='20' r='10' fill='%23F0C061' fill-opacity='0.3'/%3E%3Ccircle cx='20' cy='80' r='15' fill='%23F0C061' fill-opacity='0.3'/%3E%3Ccircle cx='50' cy='50' r='20' fill='%23F0C061' fill-opacity='0.1'/%3E%3C/svg%3E");
    background-size: 100px;
    opacity: 0.5;
    z-index: 0;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--earthy-brown);
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
}

.learn-more {
    color: var(--peach);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.learn-more i {
    margin-left: 5px;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
    transform: translateX(5px);
}

/* =======================================
   About Section
   ======================================= */
.about {
    padding: 80px 0;
    background-color: var(--warm-cream);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200' fill-opacity='0.03'%3E%3Ccircle cx='100' cy='100' r='80' fill='none' stroke='%23F8C4C0' stroke-width='1'/%3E%3Ccircle cx='100' cy='100' r='60' fill='none' stroke='%23C7D5EA' stroke-width='1'/%3E%3Ccircle cx='100' cy='100' r='40' fill='none' stroke='%23F0B697' stroke-width='1'/%3E%3Ccircle cx='100' cy='100' r='20' fill='none' stroke='%23B6C7A4' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 200px;
    opacity: 0.2;
    z-index: 0;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-img {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    position: relative;
    border: 10px solid white;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.about-img::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Cpath d='M20,0 C100,15 200,5 280,0 C300,100 280,200 280,280 C150,300 50,280 20,280 C0,200 0,100 20,0 Z' fill='none' stroke='%23F8C4C0' stroke-width='3' stroke-dasharray='5,5' opacity='0.3'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    z-index: -1;
    pointer-events: none;
}

.about-img img {
    width: 100%;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.about-img img:hover {
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    transform: scale(1.02);
}

.floral-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 2;
}

.top-left {
    top: 10px;
    left: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='10' cy='10' r='8' fill='none' stroke='%23F9BCBC' stroke-width='1'/%3E%3Ccircle cx='10' cy='10' r='4' fill='%23F9BCBC' fill-opacity='0.3'/%3E%3C/svg%3E");
}

.top-right {
    top: 10px;
    right: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='30' cy='10' r='8' fill='none' stroke='%23C9D5EA' stroke-width='1'/%3E%3Ccircle cx='30' cy='10' r='4' fill='%23C9D5EA' fill-opacity='0.3'/%3E%3C/svg%3E");
}

.bottom-left {
    bottom: 10px;
    left: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='10' cy='30' r='8' fill='none' stroke='%23F8C4A9' stroke-width='1'/%3E%3Ccircle cx='10' cy='30' r='4' fill='%23F8C4A9' fill-opacity='0.3'/%3E%3C/svg%3E");
}

.bottom-right {
    bottom: 10px;
    right: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='30' cy='30' r='8' fill='none' stroke='%23B8C7A4' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='4' fill='%23B8C7A4' fill-opacity='0.3'/%3E%3C/svg%3E");
}

/* Delicate flower decorative elements for corners */
.floral-corner::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 3;
}

.top-left::after {
    top: -5px;
    left: -5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25'%3E%3Ccircle cx='12.5' cy='12.5' r='5' fill='%23FDFBF6'/%3E%3Ccircle cx='12.5' cy='12.5' r='2' fill='%23F7CA6E'/%3E%3Cpath d='M12.5,5 L12.5,8 M7,12.5 L10,12.5 M12.5,17 L12.5,20 M15,12.5 L18,12.5' stroke='%23FDFBF6' stroke-width='2'/%3E%3C/svg%3E");
}

.top-right::after {
    top: -5px;
    right: -5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25'%3E%3Ccircle cx='12.5' cy='12.5' r='5' fill='%23D2D6EF'/%3E%3Ccircle cx='12.5' cy='12.5' r='2' fill='%23F9BCBC'/%3E%3C/svg%3E");
}

.about-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--earthy-brown);
}

.about-content p {
    margin-bottom: 15px;
    color: #555;
}

.michigan-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--daisy-white);
    padding: 5px 15px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px dashed var(--soft-pink);
}

.michigan-badge span {
    margin-left: 10px;
    font-size: 0.9rem;
    color: var(--earthy-brown);
    font-weight: 500;
}

.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--daisy-white), var(--pale-lavender));
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(249, 188, 188, 0.2);
}

.badge::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cpath d='M30,30 Q60,0 90,30 Q120,60 90,90 Q60,120 30,90 Q0,60 30,30 Z' fill='none' stroke='%23F9BCBC' stroke-width='1' stroke-opacity='0.2' stroke-dasharray='3,3'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    z-index: 0;
}

.badge:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 8px 20px rgba(249, 188, 188, 0.2);
    -moz-box-shadow: 0 8px 20px rgba(249, 188, 188, 0.2);
    -ms-box-shadow: 0 8px 20px rgba(249, 188, 188, 0.2);
    -o-box-shadow: 0 8px 20px rgba(249, 188, 188, 0.2);
    box-shadow: 0 8px 20px rgba(249, 188, 188, 0.2);
}

.badge i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--cosmos-pink);
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.7);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 3px 10px rgba(249, 188, 188, 0.1);
    -moz-box-shadow: 0 3px 10px rgba(249, 188, 188, 0.1);
    -ms-box-shadow: 0 3px 10px rgba(249, 188, 188, 0.1);
    -o-box-shadow: 0 3px 10px rgba(249, 188, 188, 0.1);
    box-shadow: 0 3px 10px rgba(249, 188, 188, 0.1);
}

.badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--earthy-brown);
    text-align: center;
    white-space: pre-line;
}

/* =======================================
   Contact Section
   ======================================= */
.contact {
    padding: 80px 0;
    position: relative;
}

.contact::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cpath d='M190,150 C160,180,120,190,100,170 C80,190,40,180,10,150 C-20,120,-10,70,50,50 C30,30,40,0,70,0 C100,0,110,30,90,50 C150,70,160,120,130,150 Z' fill='none' stroke='%23F8C4C0' stroke-width='1' stroke-opacity='0.3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--earthy-brown);
}

.info-item {
    display: flex;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--peach);
    margin-right: 15px;
}

.info-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--earthy-brown);
}

.info-details p {
    color: #666;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--earthy-brown);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    font-size: 1rem;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.submit-btn {
    background: linear-gradient(135deg, var(--pale-lavender), var(--cosmos-pink));
    color: #333;
    border: none;
    padding: 12px 30px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.7);
    -webkit-box-shadow: 0 4px 10px rgba(249, 188, 188, 0.2);
    -moz-box-shadow: 0 4px 10px rgba(249, 188, 188, 0.2);
    -ms-box-shadow: 0 4px 10px rgba(249, 188, 188, 0.2);
    -o-box-shadow: 0 4px 10px rgba(249, 188, 188, 0.2);
    box-shadow: 0 4px 10px rgba(249, 188, 188, 0.2);
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--cosmos-pink), var(--pale-lavender));
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 8px 20px rgba(249, 188, 188, 0.3);
    -moz-box-shadow: 0 8px 20px rgba(249, 188, 188, 0.3);
    -ms-box-shadow: 0 8px 20px rgba(249, 188, 188, 0.3);
    -o-box-shadow: 0 8px 20px rgba(249, 188, 188, 0.3);
    box-shadow: 0 8px 20px rgba(249, 188, 188, 0.3);
}

/* =======================================
   Footer
   ======================================= */
footer {
    background-color: var(--earthy-brown);
    color: white;
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--soft-pink), var(--light-blue), var(--peach), var(--golden-yellow));
}

footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1000 100'%3E%3Cpath d='M0,50 C250,0 750,100 1000,50 L1000,100 L0,100 Z' fill='%23F8C4C0' opacity='0.05'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
    pointer-events: none;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--peach);
}

.footer-col p {
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    color: white;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--peach);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--peach);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 50px;
}

.business-attributes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.business-attributes span {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.business-attributes i {
    margin-right: 5px;
    color: var(--peach);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 5px 15px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-badge i {
    margin-right: 10px;
    color: var(--soft-pink);
}

/* =======================================
   Animations
   ======================================= */
/* Floating flowers */
@-webkit-keyframes float {
    0% { 
        -webkit-transform: translateY(0) rotate(0deg); 
    }
    50% { 
        -webkit-transform: translateY(-20px) rotate(5deg); 
    }
    100% { 
        -webkit-transform: translateY(0) rotate(0deg); 
    }
}

@-moz-keyframes float {
    0% { 
        -moz-transform: translateY(0) rotate(0deg); 
    }
    50% { 
        -moz-transform: translateY(-20px) rotate(5deg); 
    }
    100% { 
        -moz-transform: translateY(0) rotate(0deg); 
    }
}

@-ms-keyframes float {
    0% { 
        -ms-transform: translateY(0) rotate(0deg); 
    }
    50% { 
        -ms-transform: translateY(-20px) rotate(5deg); 
    }
    100% { 
        -ms-transform: translateY(0) rotate(0deg); 
    }
}

@-o-keyframes float {
    0% { 
        -o-transform: translateY(0) rotate(0deg); 
    }
    50% { 
        -o-transform: translateY(-20px) rotate(5deg); 
    }
    100% { 
        -o-transform: translateY(0) rotate(0deg); 
    }
}

@keyframes float {
    0% { 
        -webkit-transform: translateY(0) rotate(0deg); 
        -moz-transform: translateY(0) rotate(0deg); 
        -ms-transform: translateY(0) rotate(0deg); 
        -o-transform: translateY(0) rotate(0deg); 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        -webkit-transform: translateY(-20px) rotate(5deg); 
        -moz-transform: translateY(-20px) rotate(5deg); 
        -ms-transform: translateY(-20px) rotate(5deg); 
        -o-transform: translateY(-20px) rotate(5deg); 
        transform: translateY(-20px) rotate(5deg); 
    }
    100% { 
        -webkit-transform: translateY(0) rotate(0deg); 
        -moz-transform: translateY(0) rotate(0deg); 
        -ms-transform: translateY(0) rotate(0deg); 
        -o-transform: translateY(0) rotate(0deg); 
        transform: translateY(0) rotate(0deg); 
    }
}

.floating-flower {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 0;
    opacity: 0.1;
    -webkit-animation: float 15s ease-in-out infinite;
    -moz-animation: float 15s ease-in-out infinite;
    -ms-animation: float 15s ease-in-out infinite;
    -o-animation: float 15s ease-in-out infinite;
    animation: float 15s ease-in-out infinite;
}

/* Daisy flower */
.flower-1 {
    top: 10%;
    left: 5%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='20' fill='%23F7CA6E'/%3E%3Cpath d='M50,10 Q60,30 80,30 Q60,40 60,60 Q50,50 30,60 Q40,40 20,30 Q40,30 50,10 Z' fill='%23FDFBF6' stroke='%23FDFBF6' stroke-width='1'/%3E%3Cpath d='M45,5 Q70,25 95,30 Q70,40 80,65 Q50,55 20,65 Q30,40 5,30 Q30,25 45,5 Z' fill='%23FDFBF6' fill-opacity='0.6' stroke='none'/%3E%3C/svg%3E");
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -ms-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
}

/* Lavender/blue delphinium */
.flower-2 {
    top: 30%;
    right: 8%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,90 L50,30' stroke='%237E9170' stroke-width='2'/%3E%3Ccircle cx='42' cy='25' r='8' fill='%23C9D5EA'/%3E%3Ccircle cx='58' cy='20' r='8' fill='%23D2D6EF'/%3E%3Ccircle cx='38' cy='15' r='8' fill='%23C9D5EA'/%3E%3Ccircle cx='50' cy='10' r='8' fill='%23D2D6EF'/%3E%3Ccircle cx='62' cy='15' r='8' fill='%23C9D5EA'/%3E%3C/svg%3E");
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    -ms-animation-delay: 2s;
    -o-animation-delay: 2s;
    animation-delay: 2s;
}

/* Peachy-pink rose */
.flower-3 {
    bottom: 15%;
    left: 10%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,90 C45,80 45,75 50,70' stroke='%237E9170' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M35,35 C25,25 30,15 40,15 C50,15 60,25 60,40 C60,55 45,65 30,55 C15,45 25,35 35,35' fill='%23F9BCBC' stroke='%23F7B9C0' stroke-width='1'/%3E%3Cpath d='M30,30 C20,20 25,10 40,12 C55,15 62,30 55,45 C48,60 30,60 20,45 C10,30 20,25 30,30' fill='%23F9BCBC' fill-opacity='0.5' stroke='none'/%3E%3C/svg%3E");
    -webkit-animation-delay: 4s;
    -moz-animation-delay: 4s;
    -ms-animation-delay: 4s;
    -o-animation-delay: 4s;
    animation-delay: 4s;
}

/* Orange ranunculus */
.flower-4 {
    bottom: 25%;
    right: 15%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,90 C55,80 55,75 50,70' stroke='%237E9170' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M50,30 C40,20 42,10 50,10 C58,10 60,20 50,30 M30,50 C20,40 10,42 10,50 C10,58 20,60 30,50 M50,70 C60,80 58,90 50,90 C42,90 40,80 50,70 M70,50 C80,60 90,58 90,50 C90,42 80,40 70,50' fill='%23F7C1A0' stroke='%23F8C4A9' stroke-width='1'/%3E%3Ccircle cx='50' cy='50' r='20' fill='%23F8C4A9'/%3E%3Ccircle cx='50' cy='50' r='10' fill='%23F7CA6E'/%3E%3C/svg%3E");
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -ms-animation-delay: 6s;
    -o-animation-delay: 6s;
    animation-delay: 6s;
}

/* Floating elements */
.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 0;
    opacity: 0.05;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.blossom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='5' fill='%23F8C4C0'/%3E%3Cpath d='M20,10 Q25,15 30,10 Q25,20 30,30 Q20,25 10,30 Q15,20 10,10 Q15,15 20,10 Z' fill='%23F8C4C0'/%3E%3C/svg%3E");
}

.cosmos {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='6' fill='%23F7B9C0'/%3E%3Cpath d='M15,10 Q20,15 25,10 M10,15 Q15,20 10,25 M15,30 Q20,25 25,30 M30,15 Q25,20 30,25' stroke='%23F7B9C0' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}

.delphinium {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M20,35 L20,15' stroke='%237E9170' stroke-width='1'/%3E%3Ccircle cx='17' cy='12' r='3' fill='%23C9D5EA'/%3E%3Ccircle cx='23' cy='10' r='3' fill='%23D2D6EF'/%3E%3Ccircle cx='15' cy='8' r='3' fill='%23C9D5EA'/%3E%3Ccircle cx='20' cy='5' r='3' fill='%23D2D6EF'/%3E%3Ccircle cx='25' cy='8' r='3' fill='%23C9D5EA'/%3E%3C/svg%3E");
}

.ranunculus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M20,35 L20,25' stroke='%237E9170' stroke-width='1'/%3E%3Cpath d='M20,15 Q15,10 20,5 Q25,10 20,15 M10,20 Q15,15 10,10 Q15,20 10,20 M20,25 Q25,30 20,35 Q15,30 20,25 M30,20 Q25,15 30,10 Q25,20 30,20' fill='%23F7C1A0'/%3E%3Ccircle cx='20' cy='20' r='6' fill='%23F7CA6E'/%3E%3C/svg%3E");
}

/* Petal animation */
.petal {
    position: fixed;
    width: 15px;
    height: 15px;
    -webkit-border-radius: 50% 50% 0 50%;
    -moz-border-radius: 50% 50% 0 50%;
    -ms-border-radius: 50% 50% 0 50%;
    -o-border-radius: 50% 50% 0 50%;
    border-radius: 50% 50% 0 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 999;
    -webkit-animation: fall 8s linear forwards;
}

@keyframes fall {
    0% { 
        -webkit-transform: translateY(-5vh) rotate(45deg); 
        -moz-transform: translateY(-5vh) rotate(45deg); 
        -ms-transform: translateY(-5vh) rotate(45deg); 
        -o-transform: translateY(-5vh) rotate(45deg); 
        transform: translateY(-5vh) rotate(45deg); 
        opacity: 0.2; 
    }
    50% { 
        -webkit-transform: translateY(50vh) rotate(90deg) translateX(20px); 
        -moz-transform: translateY(50vh) rotate(90deg) translateX(20px); 
        -ms-transform: translateY(50vh) rotate(90deg) translateX(20px); 
        -o-transform: translateY(50vh) rotate(90deg) translateX(20px); 
        transform: translateY(50vh) rotate(90deg) translateX(20px); 
        opacity: 0.15; 
    }
    100% { 
        -webkit-transform: translateY(105vh) rotate(180deg) translateX(-20px); 
        -moz-transform: translateY(105vh) rotate(180deg) translateX(-20px); 
        -ms-transform: translateY(105vh) rotate(180deg) translateX(-20px); 
        -o-transform: translateY(105vh) rotate(180deg) translateX(-20px); 
        transform: translateY(105vh) rotate(180deg) translateX(-20px); 
        opacity: 0; 
    }
}

/* =======================================
   Accessibility Styles
   ======================================= */
/* Skip links */
.skip-to-content {
    position: absolute;
    top: -50px;
    left: 10px;
    padding: 10px 15px;
    background: #0066CC;
    color: white;
    z-index: 10000;
    -webkit-transition: top 0.3s;
    -moz-transition: top 0.3s;
    -ms-transition: top 0.3s;
    -o-transition: top 0.3s;
    transition: top 0.3s;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -ms-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    text-decoration: none;
    font-weight: bold;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    -ms-box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    -o-box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.skip-to-content:focus {
    top: 0;
    outline: 3px solid white;
}

/* Focus indicators */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
[role="button"]:focus,
[tabindex]:focus {
    outline: 3px solid #0066CC;
    outline-offset: 2px;
}

/* Font size adjustments for specific elements */
.text-size-110 h1 { font-size: calc(2.5rem * 1.1); }
.text-size-120 h1 { font-size: calc(2.5rem * 1.2); }
.text-size-130 h1 { font-size: calc(2.5rem * 1.3); }
.text-size-140 h1 { font-size: calc(2.5rem * 1.4); }
.text-size-150 h1 { font-size: calc(2.5rem * 1.5); }
.text-size-160 h1 { font-size: calc(2.5rem * 1.6); }
.text-size-170 h1 { font-size: calc(2.5rem * 1.7); }
.text-size-180 h1 { font-size: calc(2.5rem * 1.8); }
.text-size-190 h1 { font-size: calc(2.5rem * 1.9); }
.text-size-200 h1 { font-size: calc(2.5rem * 2.0); }

/* Keyboard focus visible on links and interactive elements */
.keyboard-user a:focus,
.keyboard-user button:focus,
.keyboard-user [tabindex]:focus {
    outline: 3px solid #0066CC !important;
    outline-offset: 3px !important;
    -webkit-box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.4) !important;
    -moz-box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.4) !important;
    -ms-box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.4) !important;
    -o-box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.4) !important;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.4) !important;
}

/* Better form field accessibility */
input:focus::placeholder,
textarea:focus::placeholder {
    opacity: 0.5;
}

label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Image accessibility */
.announce-images img {
    position: relative;
}

.announce-images img[alt]:not([alt=""]):after {
    content: attr(alt);
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 102, 204, 0.8);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    text-align: center;
}

/* Color scheme adjustments */
.color-dark {
    -webkit-filter: invert(90%) hue-rotate(180deg);
    -moz-filter: invert(90%) hue-rotate(180deg);
    -ms-filter: invert(90%) hue-rotate(180deg);
    -o-filter: invert(90%) hue-rotate(180deg);
    filter: invert(90%) hue-rotate(180deg);
}

.color-dark img,
.color-dark video {
    -webkit-filter: invert(100%) hue-rotate(180deg);
    -moz-filter: invert(100%) hue-rotate(180deg);
    -ms-filter: invert(100%) hue-rotate(180deg);
    -o-filter: invert(100%) hue-rotate(180deg);
    filter: invert(100%) hue-rotate(180deg);
}

.color-light {
    background-color: #ffffff !important;
    -webkit-filter: brightness(1.1);
    -moz-filter: brightness(1.1);
    -ms-filter: brightness(1.1);
    -o-filter: brightness(1.1);
    filter: brightness(1.1);
}

.color-blue {
    -webkit-filter: sepia(20%) hue-rotate(190deg) saturate(0.9);
    -moz-filter: sepia(20%) hue-rotate(190deg) saturate(0.9);
    -ms-filter: sepia(20%) hue-rotate(190deg) saturate(0.9);
    -o-filter: sepia(20%) hue-rotate(190deg) saturate(0.9);
    filter: sepia(20%) hue-rotate(190deg) saturate(0.9);
}

.color-warm {
    -webkit-filter: sepia(20%) hue-rotate(-20deg) saturate(1.1);
    -moz-filter: sepia(20%) hue-rotate(-20deg) saturate(1.1);
    -ms-filter: sepia(20%) hue-rotate(-20deg) saturate(1.1);
    -o-filter: sepia(20%) hue-rotate(-20deg) saturate(1.1);
    filter: sepia(20%) hue-rotate(-20deg) saturate(1.1);
}

/* Pause animations when reduced motion is enabled */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        -webkit-animation-duration: 0.01ms !important;
        -moz-animation-duration: 0.01ms !important;
        -ms-animation-duration: 0.01ms !important;
        -o-animation-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        -moz-animation-iteration-count: 1 !important;
        -ms-animation-iteration-count: 1 !important;
        -o-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        -webkit-transition-duration: 0.01ms !important;
        -moz-transition-duration: 0.01ms !important;
        -ms-transition-duration: 0.01ms !important;
        -o-transition-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.reduced-motion video,
.reduced-motion .floating-flower,
.reduced-motion .hero-video-container {
    display: none !important;
}

.reduced-motion .floating-element {
    display: none !important;
}

/* Larger touch targets for mobile accessibility */
.larger-targets a,
.larger-targets button,
.larger-targets .nav-links a,
.larger-targets .social-links a,
.larger-targets .btn,
.larger-targets .form-control,
.larger-targets .submit-btn {
    min-height: 44px !important;
    min-width: 44px !important;
    padding: 12px !important;
    line-height: 1.5 !important;
}

.larger-targets .service-card {
    padding: 20px !important;
}

.larger-targets .nav-links li {
    margin: 10px 0 !important;
}

/* Accessibility panel styling */
#accessibility-controls {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
}

#toggle-access:focus {
    outline: 3px solid white;
    -webkit-box-shadow: 0 0 0 5px rgba(0, 102, 204, 0.5);
    -moz-box-shadow: 0 0 0 5px rgba(0, 102, 204, 0.5);
    -ms-box-shadow: 0 0 0 5px rgba(0, 102, 204, 0.5);
    -o-box-shadow: 0 0 0 5px rgba(0, 102, 204, 0.5);
    box-shadow: 0 0 0 5px rgba(0, 102, 204, 0.5);
}

/* Add aria-current styling for navigation */
[aria-current="page"] {
    font-weight: bold;
    text-decoration: underline;
    background-color: rgba(0, 102, 204, 0.1) !important;
}

/* Standard cursor class */
.standard-cursor * {
    cursor: auto !important;
}

.standard-cursor a, 
.standard-cursor button, 
.standard-cursor .btn, 
.standard-cursor input, 
.standard-cursor textarea, 
.standard-cursor .service-card, 
.standard-cursor .badge, 
.standard-cursor .social-links a {
    cursor: pointer !important;
}

/* High contrast mode */
.high-contrast {
    --daisy-white: #FFFFFF;
    --soft-pink: #D90B55;
    --peach: #D44000;
    --light-blue: #0066CC;
    --pale-lavender: #7755CC;
    --sage-green: #006600;
    --leaf-green: #004D00;
    --warm-cream: #FFFFFF;
    --golden-yellow: #CC7700;
    --earthy-brown: #000000;
    --cosmos-pink: #D90B55;
    --ranunculus-peach: #D44000;
}

.high-contrast p, 
.high-contrast h1, 
.high-contrast h2, 
.high-contrast h3, 
.high-contrast h4, 
.high-contrast h5, 
.high-contrast h6, 
.high-contrast a, 
.high-contrast span, 
.high-contrast li {
    color: #000000 !important;
}

.high-contrast a, 
.high-contrast button, 
.high-contrast .btn {
    background: #0066CC !important;
    color: white !important;
    border: 2px solid black !important;
}

/* Reduced motion */
.reduced-motion * {
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -ms-animation: none !important;
    -o-animation: none !important;
    animation: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

/* Font options */
.font-opendyslexic * {
    font-family: 'OpenDyslexic', sans-serif !important;
}

.font-arial * {
    font-family: Arial, sans-serif !important;
}

.font-verdana * {
    font-family: Verdana, sans-serif !important;
}

/* Text size adjustments */
.text-size-110 * { font-size: 110% !important; }
.text-size-120 * { font-size: 120% !important; }
.text-size-130 * { font-size: 130% !important; }
.text-size-140 * { font-size: 140% !important; }
.text-size-150 * { font-size: 150% !important; }
.text-size-160 * { font-size: 160% !important; }
.text-size-170 * { font-size: 170% !important; }
.text-size-180 * { font-size: 180% !important; }
.text-size-190 * { font-size: 190% !important; }
.text-size-200 * { font-size: 200% !important; }

/* =======================================
   Slide-in Contact Form
   ======================================= */
.slide-in-contact {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: white;
    z-index: 1000;
    -webkit-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    -o-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    -webkit-transition: right 0.3s ease-in-out;
    -moz-transition: right 0.3s ease-in-out;
    -ms-transition: right 0.3s ease-in-out;
    -o-transition: right 0.3s ease-in-out;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    padding: 30px;
}

.slide-in-contact.active {
    right: 0;
}

.slide-in-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--earthy-brown);
}

.slide-in-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.slide-in-overlay.active {
    opacity: 1;
    visibility: visible;
}
/* Mobile-friendly adjustments for slide-in contact form */
@media (max-width: 576px) {
    .slide-in-contact {
        max-width: 100%;
        width: 100%;
        right: -100%; /* Start completely off-screen */
        padding: 25px 15px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        -o-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    .slide-in-contact h2 {
        font-size: 1.5rem;
        margin-top: 15px;
    }
    
    .slide-in-contact .form-group {
        margin-bottom: 15px;
    }
    
    .slide-in-contact label {
        font-size: 0.9rem;
    }
    
    .slide-in-contact .form-control {
        height: 44px;
        font-size: 16px; /* Prevents iOS zoom on focus */
        padding: 10px 12px;
        -webkit-appearance: none;
        -moz-appearance: none;
        -ms-appearance: none;
        -o-appearance: none;
        appearance: none;
    }
    
    .slide-in-contact textarea.form-control {
        height: auto;
        min-height: 100px;
    }
    
    .slide-in-contact .submit-btn {
        width: 100%;
        min-height: 50px;
        font-size: 1rem;
        margin-top: 5px;
    }
    
    .slide-in-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        display: -webkit-flex;
        display: -moz-flex-flex;
        display: -ms-flex-flex;
        display: -o-flex-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
    }
}

/* =======================================
   Responsive Styles
   ======================================= */
@media (max-width: 768px) {
    header {
        top: 90px !important;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .navbar {
        padding: 0px 20px;
    }

    .logo {
        margin-top: 0px;
    }

    .logo img {
        height: 50px !important;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 90px);
        flex-direction: column;
        background-color: var(--warm-cream);
        text-align: center;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
        overflow-y: auto;
        padding: 20px 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-links a {
        display: inline-block;
        padding: 10px 20px;
        width: 80%;
    }
    
    .nav-links a:hover {
        background-color: rgba(249, 188, 188, 0.2);
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 101;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(45deg);
        -moz-transform: translateY(8px) rotate(45deg);
        -ms-transform: translateY(8px) rotate(45deg);
        -o-transform: translateY(8px) rotate(45deg);
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
        -moz-transform: translateY(-8px) rotate(-45deg);
        -ms-transform: translateY(-8px) rotate(-45deg);
        -o-transform: translateY(-8px) rotate(-45deg);
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .about-img, .about-content {
        flex: 100%;
    }
    
    .header-social-links {
        display: none;  /* Hide desktop social links on mobile */
    }
    
    .header-social-mobile {
        display: flex;  /* Show mobile social links */
    }
    
    /* Fix for vertical overflow issues */
    .service-card, .event-card, .catering-card {
        overflow: visible;
    }
    
    /* Ensure content fits on mobile screens */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        padding: 20px 15px;
    }
    
    .service-features {
        padding-left: 0;
    }
    
    .service-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-badge {
        margin-left: 0;
        margin-top: 5px;
    }

    /* Slide-in contact form adjustments */
    .slide-in-contact {
        max-width: 100%;
        width: 100%;
    }
}

/* Mobile-friendly adjustments for slide-in contact form */
@media (max-width: 576px) {
    .slide-in-contact {
        max-width: 100%;
        width: 100%;
        right: -100%; /* Start completely off-screen */
        padding: 25px 15px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        -o-box-sizing: border-box;
        box-sizing: border-box;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
    
    /* Fix for sliding animation */
    .slide-in-contact.active {
        right: 0;
        left: auto;
    }
    
    .slide-in-contact h2 {
        font-size: 1.5rem;
        margin-top: 15px;
    }
    
    .slide-in-contact .form-group {
        margin-bottom: 15px;
    }
    
    .slide-in-contact label {
        font-size: 0.9rem;
    }
    
    .slide-in-contact .form-control {
        height: 44px;
        font-size: 16px; /* Prevents iOS zoom on focus */
        padding: 10px 12px;
        -webkit-appearance: none;
        -moz-appearance: none;
        -ms-appearance: none;
        -o-appearance: none;
        appearance: none;
        border-radius: 5px;
        width: 100%;
    }
    
    .slide-in-contact textarea.form-control {
        height: auto;
        min-height: 100px;
    }
    
    .slide-in-contact .submit-btn {
        width: 100%;
        min-height: 50px;
        font-size: 1rem;
        margin-top: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slide-in-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        z-index: 1001;
    }
}

/* Additional mobile-friendly styles for smaller screens */
@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
        word-wrap: break-word;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .business-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .service-icon-decoration {
        display: none; /* Hide decorative elements on very small screens */
    }
    
    .catering-note {
        font-size: 0.8rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-container {
        gap: 20px;
    }
    
    .footer-col {
        min-width: 100%;
    }
    
    .slide-in-contact {
        padding: 20px;
    }
}

/* Print styles */
@media print {
    header, footer, .floating-flower, .floating-element, #accessibility-controls, #toggle-access, .hero-video-container {
        display: none !important;
    }
    
    body, html {
        background: white !important;
        color: black !important;
    }
    
    .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hero {
        padding: 20px 0 !important;
    }
    
    .hero h1 {
        color: black !important;
    }
    
    .hero p {
        color: black !important;
    }
    
    a {
        text-decoration: underline !important;
        color: black !important;
    }
    
    .service-card, .badge {
        break-inside: avoid;
        page-break-inside: avoid;
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
        -ms-box-shadow: none !important;
        -o-box-shadow: none !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
    
    .services, .about, .contact {
        padding: 20px 0 !important;
        margin: 20px 0 !important;
        page-break-inside: avoid;
    }
}
/* Hero section - ensure proper spacing */
.hero {
    padding: 250px 0 180px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Service detail pages */
.service-detail-intro {
    padding: 80px 0 40px;
    background-color: var(--warm-cream);
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.service-detail-image img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.highlight-item i {
    font-size: 2rem;
    color: var(--cosmos-pink);
    margin-bottom: 10px;
}

.highlight-item h3 {
    font-size: 1rem;
    margin: 0;
}

/* Testimonials section */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
    padding-top: 20px;
}

.testimonial-content::before {
    content: """;
    font-size: 60px;
    color: var(--cosmos-pink);
    opacity: 0.2;
    position: absolute;
    top: -15px;
    left: -10px;
}

.testimonial-author h4 {
    margin: 0 0 5px;
    color: var(--earthy-brown);
}

.testimonial-author p {
    margin: 0;
    color: #777;
    font-style: italic;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--earthy-brown);
}

.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    display: none;
    background-color: rgba(255, 255, 255, 0.5);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: -webkit-linear-gradient(135deg, var(--pale-lavender), var(--cosmos-pink));
    background: -moz-linear-gradient(135deg, var(--pale-lavender), var(--cosmos-pink));
    background: -ms-linear-gradient(135deg, var(--pale-lavender), var(--cosmos-pink));
    background: -o-linear-gradient(135deg, var(--pale-lavender), var(--cosmos-pink));
    background: linear-gradient(135deg, var(--pale-lavender), var(--cosmos-pink));
    margin-top: 50px;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: var(--earthy-brown);
}

.cta-content h2 {
    margin-bottom: 20px;
    color: #fff;
}

.cta-content p {
    margin-bottom: 30px;
    color: #fff;
}

.cta-content .btn {
    background: #fff;
    color: var(--earthy-brown);
}

.cta-content .btn:hover {
    background: var(--earthy-brown);
    color: #fff;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .service-detail-intro .row {
        flex-direction: column;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .highlight-item {
        min-width: 100px;
    }
    
    .service-highlights {
        justify-content: center;
    }
    
    .hero {
        padding: 150px 0 100px;
    }
}
.service-card {
    -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    -webkit-transform: translateY(-15px) scale(1.02);
    -moz-transform: translateY(-15px) scale(1.02);
    -ms-transform: translateY(-15px) scale(1.02);
    -o-transform: translateY(-15px) scale(1.02);
    transform: translateY(-15px) scale(1.02);
    -webkit-box-shadow: 0 20px 40px rgba(248, 196, 192, 0.4);
    -moz-box-shadow: 0 20px 40px rgba(248, 196, 192, 0.4);
    -ms-box-shadow: 0 20px 40px rgba(248, 196, 192, 0.4);
    -o-box-shadow: 0 20px 40px rgba(248, 196, 192, 0.4);
    box-shadow: 0 20px 40px rgba(248, 196, 192, 0.4);
}
header.sticky {
    padding: 5px 0;
    background-color: rgba(252, 247, 240, 0.95);
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    -ms-backdrop-filter: blur(10px);
    -o-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-box-shadow: 0 5px 20px rgba(120, 96, 77, 0.15);
    -moz-box-shadow: 0 5px 20px rgba(120, 96, 77, 0.15);
    -ms-box-shadow: 0 5px 20px rgba(120, 96, 77, 0.15);
    -o-box-shadow: 0 5px 20px rgba(120, 96, 77, 0.15);
    box-shadow: 0 5px 20px rgba(120, 96, 77, 0.15);
}

header.sticky .logo img {
    height: 45px;
}

.form-feedback {
    padding: 12px;
    margin-bottom: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

.form-success {
    background-color: rgba(184, 199, 164, 0.2);
    border: 1px solid var(--sage-green);
    color: var(--leaf-green);
}

.form-error {
    background-color: rgba(249, 188, 188, 0.2);
    border: 1px solid var(--cosmos-pink);
    color: #d85050;
}

.error-list {
    margin-top: 10px;
    padding-left: 20px;
}

.error-list li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--earthy-brown);
}

.loading:after {
    content: '';
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 2px solid var(--cosmos-pink);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Add these cross-browser styles to your existing CSS */

/* Slide-in Contact Form */
.slide-in-contact {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: white;
    z-index: 1000;
    -webkit-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    -o-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    -webkit-transition: right 0.3s ease-in-out;
    -moz-transition: right 0.3s ease-in-out;
    -ms-transition: right 0.3s ease-in-out;
    -o-transition: right 0.3s ease-in-out;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    padding: 30px;
}

.slide-in-contact.active {
    right: 0;
}

.slide-in-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.slide-in-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .slide-in-contact {
        max-width: 100%;
        width: 100%;
        right: -100%; /* Start completely off-screen */
        padding: 25px 15px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        -o-box-sizing: border-box;
        box-sizing: border-box;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
    
    /* Fix for sliding animation */
    .slide-in-contact.active {
        right: 0;
        left: auto;
    }
}
/* Add this to your style.css or modify the existing dropdown styles */
.nav-links .has-dropdown {
    position: relative;
}

.nav-links .has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(252, 247, 240, 0.95);
    min-width: 200px;
    -webkit-box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    -ms-box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    -o-box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    -webkit-border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
    -ms-border-radius: 0 0 10px 10px;
    -o-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
    padding: 10px 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    pointer-events: none; /* Add this line */
}

.nav-links .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    pointer-events: auto; /* Add this line */
}

/* Fix for the "Get in Touch" button */
.contact-trigger {
    position: relative;
    z-index: 999; /* Make sure this is higher than dropdown z-index */
}

/* Ensure navbar container has proper z-index handling */
.navbar {
    position: relative;
    z-index: 100;
}

@media (max-width: 768px) {
  /* Fix for logo display on mobile */
  .navbar-brand img, 
  .site-logo img {
    max-width: 85%; /* Reduce logo size on mobile */
    height: auto;
    margin-left: 0; /* Remove any left margin */
  }
  
  /* Ensure proper logo container spacing */
  .navbar-brand,
  .site-logo {
    padding-left: 10px;
    display: flex;
    align-items: center;
  }
}

/* Add this to your style.css or modify the existing dropdown styles */
.nav-links .has-dropdown {
    position: relative;
}

.nav-links .has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(252, 247, 240, 0.95);
    min-width: 200px;
    -webkit-box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    -ms-box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    -o-box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    -webkit-border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
    -ms-border-radius: 0 0 10px 10px;
    -o-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
    padding: 10px 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    pointer-events: none; /* Add this line */
}

.nav-links .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    pointer-events: auto; /* Add this line */
}

/* Fix for the "Get in Touch" button */
.contact-trigger {
    position: relative;
    z-index: 999; /* Make sure this is higher than dropdown z-index */
}

/* Ensure navbar container has proper z-index handling */
.navbar {
    position: relative;
    z-index: 100;
}

/* =======================================
   Custom Scrollbar Styling
   ======================================= */
/* Webkit browsers (Chrome, Safari, newer Edge) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--warm-cream);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--cosmos-pink), var(--pale-lavender));
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border: 3px solid var(--warm-cream);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--pale-lavender), var(--cosmos-pink));
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--cosmos-pink) var(--warm-cream);
}

/* Edge and IE */
@supports (-ms-overflow-style: none) {
    html {
        -ms-overflow-style: auto;
    }
    
    *::-ms-scrollbar {
        width: 12px;
        height: 12px;
    }
    
    *::-ms-scrollbar-track {
        background: var(--warm-cream);
        border-radius: 10px;
    }
    
    *::-ms-scrollbar-thumb {
        background: linear-gradient(135deg, var(--cosmos-pink), var(--pale-lavender));
        border-radius: 10px;
        border: 3px solid var(--warm-cream);
    }
}

/* Mobile device optimization */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }
    
    ::-webkit-scrollbar-thumb {
        border: 2px solid var(--warm-cream);
    }
}

/* Enhanced Services Page Styling */

/* Improved Section Spacing */
.service-intro,
.services-main,
.service-packages,
.google-reviews,
.testimonials {
    padding: 100px 0;
    position: relative;
}

/* Service Cards Enhancement */
.service-card {
    -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 40px;
}

.service-card:hover {
    -webkit-transform: translateY(-15px) scale(1.02);
    -moz-transform: translateY(-15px) scale(1.02);
    -ms-transform: translateY(-15px) scale(1.02);
    -o-transform: translateY(-15px) scale(1.02);
    transform: translateY(-15px) scale(1.02);
    -webkit-box-shadow: 0 20px 40px rgba(248, 196, 192, 0.4);
    -moz-box-shadow: 0 20px 40px rgba(248, 196, 192, 0.4);
    -ms-box-shadow: 0 20px 40px rgba(248, 196, 192, 0.4);
    -o-box-shadow: 0 20px 40px rgba(248, 196, 192, 0.4);
    box-shadow: 0 20px 40px rgba(248, 196, 192, 0.4);
}

.service-content {
    padding: 30px;
}

/* Google Reviews Section */
.google-reviews {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.google-reviews::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' fill='%23F9BCBC' fill-opacity='0.05'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/svg%3E");
    z-index: 0;
    opacity: 0.1;
}

.google-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #555;
    font-size: 1.1rem;
}

.google-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.google-badge a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 15px 25px;
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.google-badge a:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.google-rating {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.google-stars {
    color: #FBBC05;
    font-size: 1.2rem;
    margin-right: 10px;
}

.rating-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.google-review-count {
    color: #666;
    font-size: 0.9rem;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.google-review-card {
    background-color: #fff;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 25px;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: hidden;
    -webkit-animation: fadeInUp 0.5s ease-out forwards;
    -moz-animation: fadeInUp 0.5s ease-out forwards;
    -ms-animation: fadeInUp 0.5s ease-out forwards;
    -o-animation: fadeInUp 0.5s ease-out forwards;
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.google-review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #4285F4, #DB4437, #F4B400, #0F9D58);
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

.google-review-card:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: bold;
    color: #333;
}

.reviewer-name h4 {
    margin: 0 0 3px;
    font-size: 1rem;
    color: #333;
}

.review-date {
    color: #888;
    font-size: 0.8rem;
}

.review-stars {
    color: #FBBC05;
    font-size: 1rem;
}

.review-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.view-more-reviews {
    text-align: center;
    margin-top: 40px;
}

.view-more-reviews .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4285F4, #DB4437, #F4B400, #0F9D58);
    color: white;
    -webkit-box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
    -moz-box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
    -ms-box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
    -o-box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.view-more-reviews .btn:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 10px 25px rgba(66, 133, 244, 0.4);
    -moz-box-shadow: 0 10px 25px rgba(66, 133, 244, 0.4);
    -ms-box-shadow: 0 10px 25px rgba(66, 133, 244, 0.4);
    -o-box-shadow: 0 10px 25px rgba(66, 133, 244, 0.4);
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.4);
}

/* Improved Testimonials Slider Animation */
.testimonials-slider {
    position: relative;
}

.testimonial-item {
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

/* CSS Animation for Google Reviews */
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    from {
        opacity: 0;
        -moz-transform: translateY(30px);
    }
    to {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-ms-keyframes fadeInUp {
    from {
        opacity: 0;
        -ms-transform: translateY(30px);
    }
    to {
        opacity: 1;
        -ms-transform: translateY(0);
    }
}

@-o-keyframes fadeInUp {
    from {
        opacity: 0;
        -o-transform: translateY(30px);
    }
    to {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced CTA Section */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: -webkit-linear-gradient(135deg, rgba(210, 214, 239, 0.5), rgba(247, 185, 192, 0.5));
    background: -moz-linear-gradient(135deg, rgba(210, 214, 239, 0.5), rgba(247, 185, 192, 0.5));
    background: -ms-linear-gradient(135deg, rgba(210, 214, 239, 0.5), rgba(247, 185, 192, 0.5));
    background: -o-linear-gradient(135deg, rgba(210, 214, 239, 0.5), rgba(247, 185, 192, 0.5));
    background: linear-gradient(135deg, rgba(210, 214, 239, 0.5), rgba(247, 185, 192, 0.5));
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1200 800'%3E%3Cdefs%3E%3CradialGradient id='a' cx='0' cy='800' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23F7B9C0'/%3E%3Cstop offset='1' stop-color='%23F7B9C0' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='b' cx='1200' cy='800' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23D2D6EF'/%3E%3Cstop offset='1' stop-color='%23D2D6EF' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect fill='url(%23a)' width='1200' height='800'/%3E%3Crect fill='url(%23b)' width='1200' height='800'/%3E%3C/svg%3E");
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    -ms-backdrop-filter: blur(10px);
    -o-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cta-content h2 {
    margin-bottom: 15px;
    color: var(--earthy-brown);
    font-size: 2rem;
}

.cta-content p {
    margin-bottom: 30px;
    color: #555;
    font-size: 1.1rem;
}

.cta-content .btn {
    font-size: 1.1rem;
    padding: 12px 30px;
    -webkit-box-shadow: 0 8px 20px rgba(248, 196, 192, 0.3);
    -moz-box-shadow: 0 8px 20px rgba(248, 196, 192, 0.3);
    -ms-box-shadow: 0 8px 20px rgba(248, 196, 192, 0.3);
    -o-box-shadow: 0 8px 20px rgba(248, 196, 192, 0.3);
    box-shadow: 0 8px 20px rgba(248, 196, 192, 0.3);
}

/* Responsive Styles with vendor prefixes */
@media (max-width: 992px) {
    .google-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-intro,
    .services-main,
    .service-packages,
    .google-reviews,
    .testimonials {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .google-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .google-review-card {
        padding: 20px;
    }
    
    .service-intro,
    .services-main,
    .service-packages,
    .google-reviews,
    .testimonials {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .google-subtitle {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 576px) {
    .service-intro,
    .services-main,
    .service-packages,
    .google-reviews,
    .testimonials {
        padding: 40px 0;
    }
    
    .google-reviews-grid {
        gap: 15px;
    }
    
    .google-review-card {
        padding: 15px;
    }
    
    .reviewer-avatar {
        width: 35px;
        height: 35px;
    }
    
    .google-stars, .review-stars {
        font-size: 0.9rem;
    }
    
    .cta-content {
        padding: 15px;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Form feedback messages */
.form-feedback {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-out;
}

.form-success {
    background-color: rgba(184, 199, 164, 0.2);
    border: 1px solid var(--sage-green);
    color: var(--leaf-green);
}

.form-error {
    background-color: rgba(249, 188, 188, 0.2);
    border: 1px solid var(--cosmos-pink);
    color: #d85050;
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--earthy-brown);
}

.loading:after {
    content: '';
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 2px solid var(--cosmos-pink);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-radius-info {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    border-left: 4px solid var(--cosmos-pink);
}

.service-radius-info p {
    margin: 5px 0;
    font-size: 0.95rem;
}

.service-radius-info i {
    color: var(--cosmos-pink);
    margin-right: 8px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Update the service-img class */
.service-img {
    height: 200px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: top left;
    border: 1px solid transparent;
    border-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='10' cy='10' r='8' fill='%23F8C4C0' fill-opacity='0.5'/%3E%3Ccircle cx='90' cy='10' r='8' fill='%23C7D5EA' fill-opacity='0.5'/%3E%3Ccircle cx='10' cy='90' r='8' fill='%23F0B697' fill-opacity='0.5'/%3E%3Ccircle cx='90' cy='90' r='8' fill='%23B6C7A4' fill-opacity='0.5'/%3E%3Cpath d='M20,0 L80,0 M0,20 L0,80 M20,100 L80,100 M100,20 L100,80' stroke='%23F0C061' stroke-width='1' stroke-opacity='0.3' stroke-dasharray='2 4'/%3E%3C/svg%3E") 20;
}

/* Hide icon elements */
.service-img i,
.service-icon-decoration {
    display: none;
}

/* Fix iOS form elements */
input, textarea, select {
  -webkit-appearance: none;
  border-radius: 0;
}

/* Fix for iOS transparent inputs */
input {
  opacity: 1;
}