/* Flamingo Cleaning Services - Main Stylesheet
   Color Palette:
   - Primary Pink: #f4a1ad (Flamingo pink – hero brand colour)
   - Accent Rose: #b44354 (Deep rose – great for CTAs or headings)
   - Background Blush: #fbe5ea (Soft blush – background + section fills)
   - Clean Neutral White: #ffffff (Clean white – base and contrast colour)
   - Soft Charcoal Text: #333333 (Body text for strong readability)
*/

/* Base Styles and Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #333333;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #b44354;
    transition: all 0.3s ease;
}

a:hover {
    color: #f4a1ad;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: #b44354;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(180, 67, 84, 0.3);
}

.btn-primary:hover {
    background-color: #b44354;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(180, 67, 84, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #b44354;
    border: 2px solid #b44354;
}

.btn-secondary:hover {
    background-color: #b44354;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(180, 67, 84, 0.3);
}

.btn-book {
    background-color: #b44354;
    color: #ffffff !important;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background-color: #f4a1ad;
    color: #333333 !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 161, 173, 0.4);
}

.btn-book::after {
    display: none;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #b44354;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.logo-icon {
    width: 35px;
    height: 35px;
    background-color: transparent;
    border-radius: 0;
    object-fit: contain;
    box-shadow: none;
    mix-blend-mode: multiply;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: #b44354;
    font-weight: 700;
    transition: all 0.3s ease;
}

.header.scrolled .logo h1 {
    font-size: 1.6rem;
}

.nav ul {
    display: flex;
}

.nav ul li {
    margin-left: 40px;
}

.nav ul li a {
    color: #333333;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #b44354;
    transition: width 0.3s ease;
}

.nav ul li a:hover::after,
.nav ul li a.active::after {
    width: 100%;
}

.nav ul li a:hover,
.nav ul li a.active {
    color: #b44354;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #b44354;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Menu Styles */
.nav.active {
    display: block;
    position: fixed;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    overflow-y: auto;
}

.nav.active ul {
    flex-direction: column;
    align-items: center;
}

.nav.active ul li {
    margin: 10px 0;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Hero Section - Redesigned */
.hero {
    padding: 200px 0 120px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #fbe5ea;
    transform: skewX(-15deg) translateX(10%);
    z-index: 0;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.8rem;
    color: #b44354;
    animation: fadeIn 1s ease;
    text-align: left;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeIn 1.3s ease;
    color: #333333;
}

.hero .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    animation: fadeIn 1.5s ease;
}

.trust-badges {
    display: flex;
    gap: 25px;
    margin-top: 2.5rem;
    animation: fadeIn 1.7s ease;
}

.trust-badges span {
    color: #333333;
    font-weight: 600;
}

.hero-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #f4a1ad 0%, #b44354 100%);
    z-index: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    background-color: #fbe5ea;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.feature i {
    font-size: 2rem;
    color: #b44354;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #fbe5ea;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f4a1ad' fill-opacity='0.1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.about-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    position: relative;
}

.about h2 {
    margin-bottom: 15px;
    color: #333333;
    text-align: left;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #b44354;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #b44354;
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.about-text {
    margin-bottom: 40px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 35px 25px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(180, 67, 84, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: #fbe5ea;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    position: relative;
}

.value-icon::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 2px dashed rgba(244, 161, 173, 0.3);
    top: -3px;
    left: -3px;
    animation: rotate 20s linear infinite;
}

.value-icon i {
    font-size: 1.8rem;
    color: #b44354;
}

.value-item h3 {
    margin-bottom: 15px;
    color: #b44354;
    font-size: 1.3rem;
}

.value-item p {
    font-size: 0.95rem;
    color: #333333;
    line-height: 1.7;
}

.about-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-element {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.quote {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 2;
}

.quote i {
    font-size: 2rem;
    color: #f4a1ad;
    margin-bottom: 10px;
    opacity: 0.7;
}

.quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    color: #333333;
}

.flamingo-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4a1ad 0%, #b44354 100%);
    opacity: 0.2;
    top: 70%;
    left: 20%;
    z-index: 1;
}

.flamingo-accent::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px dashed #b44354;
    top: -40px;
    left: 150px;
}

/* Media queries for the about section */
@media screen and (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-values {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .visual-element {
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .about-values {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quote {
        padding: 30px;
    }
    
    .quote blockquote {
        font-size: 1.1rem;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    position: relative;
}

/* Replace the old SVG method with actual HTML elements */
/* 
.services::after {
    content: '';
    display: block;
    max-width: 500px;
    margin: 60px auto 0;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 50'%3E%3Ctext x='10' y='30' font-family='Arial' font-size='16' fill='%23b44354'%3E✓ 100% Satisfaction Guarantee%3C/text%3E%3Ctext x='230' y='30' font-family='Arial' font-size='16' fill='%23b44354'%3E✓ Fully Insured%3C/text%3E%3Ctext x='360' y='30' font-family='Arial' font-size='16' fill='%23b44354'%3E✓ Trusted Service%3C/text%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
}
*/

/* New trust badges styling */
.trust-badges-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 60px auto 0;
    max-width: 800px;
    flex-wrap: wrap;
}

.trust-badge {
    color: #b44354;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 15px;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.service-header h3 {
    color: #b44354;
    margin-bottom: 0;
}

.price-indicator {
    background-color: #fbe5ea;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 700;
    color: #b44354;
    font-size: 0.9rem;
}

.service-details {
    margin: 20px 0;
    flex-grow: 1;
}

.service-details h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.service-details ul {
    padding-left: 20px;
}

.service-details ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.service-details ul li:before {
    content: "•";
    color: #f4a1ad;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background-color: #fbe5ea;
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f4a1ad' fill-opacity='0.1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.why-us .container {
    position: relative;
    z-index: 1;
}

.why-us h2 {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
}

.why-us h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #b44354;
}

.reasons-container {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.reasons-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 55px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #f4a1ad 10%, #f4a1ad 90%, transparent);
    z-index: 1;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.reason-item:nth-child(even) {
    transform: translateX(30px);
}

.reason-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.reason-icon {
    width: 110px;
    height: 110px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-right: 30px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(244, 161, 173, 0.2);
    border: 10px solid #fbe5ea;
    flex-shrink: 0;
}

.reason-icon i {
    font-size: 2.2rem;
    color: #b44354;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.reason-content {
    background-color: #ffffff;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    position: relative;
}

.reason-content::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    transform: rotate(45deg);
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.05);
}

.reason-content h3 {
    color: #b44354;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.reason-content p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* Media Queries for the Why Us section */
@media screen and (max-width: 768px) {
    .reasons-container::before {
        left: 45px;
    }
    
    .reason-icon {
        width: 90px;
        height: 90px;
        border-width: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .reason-icon i {
        font-size: 1.8rem;
    }
    
    .reason-content {
        padding: 20px;
    }
}

@media screen and (max-width: 576px) {
    .reasons-container::before {
        display: none;
    }
    
    .reason-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .reason-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .value-icon, .reason-icon {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .value-icon i, .reason-icon i {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }
    
    .reason-content::before {
        display: none;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #fbe5ea;
    position: relative;
}

.testimonial-slider {
    position: relative;
    height: 300px;
    margin-top: 50px;
    overflow: hidden;
}

.testimonial {
    display: flex;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px;
    flex-shrink: 0;
}

.testimonial-photo i {
    font-size: 3rem;
    color: #ffffff;
}

.testimonial-content {
    padding: 30px 30px 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stars {
    margin-bottom: 15px;
}

.stars i {
    color: #f4a1ad;
    margin-right: 3px;
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial cite {
    font-weight: 700;
    color: #b44354;
    display: block;
    text-align: right;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-testimonial,
.next-testimonial {
    background-color: #b44354;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background-color: #f4a1ad;
}

.testimonial-dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #b44354;
    transform: scale(1.2);
}

/* Instagram Feed */
.instagram-feed {
    padding: 80px 0;
    background-color: #ffffff;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    height: 200px;
    background-color: #fbe5ea;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.social-link {
    display: block;
    text-align: center;
    margin-top: 30px;
    font-weight: 700;
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background-color: #fbe5ea;
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f4a1ad' fill-opacity='0.1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

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

.booking-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

.booking-prompt {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.booking-guarantee {
    font-weight: 700;
    color: #b44354;
}

.booking-guarantee i {
    margin-right: 8px;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.booking-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Form Styles Enhancement */
.form-group {
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.form-group.focused label {
    color: #b44354;
    font-size: 0.8rem;
    transform: translateY(-20px);
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #b44354;
    box-shadow: 0 0 0 3px rgba(180, 67, 84, 0.2);
    outline: none;
}

.form-success {
    text-align: center;
    padding: 30px;
}

.success-icon {
    font-size: 3rem;
    color: #b44354;
    margin-bottom: 20px;
}

.form-success h3 {
    margin-bottom: 15px;
    color: #b44354;
}

.form-success .btn {
    margin-top: 20px;
}

button[type="submit"].btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

button[type="submit"].btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.6s ease;
}

button[type="submit"].btn-primary:hover::before {
    left: 100%;
}

/* Service Card Enhancement */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #f4a1ad;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .btn-secondary {
    margin-top: auto;
}

/* Footer */
.footer {
    background-color: #333333;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: #f4a1ad;
    margin-bottom: 15px;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ffffff;
}

.footer-links ul li a:hover {
    color: #f4a1ad;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    color: #ffffff;
    transform: translateY(-5px);
    animation: none;
}

.whatsapp-button i {
    font-size: 1.5rem;
    margin-right: 10px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Scroll to Top */
.scroll-to-top {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.scroll-to-top a {
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness Improvements */
@media screen and (max-width: 992px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero::before {
        width: 100%;
        transform: skewX(0) translateX(0);
        height: 100%;
        opacity: 0.3;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero h2 {
        text-align: center;
        font-size: 2.5rem;
    }
    
    .trust-badges {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
    
    .logo-circle {
        width: 45px;
        height: 45px;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 120px 0 60px;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonial {
        flex-direction: column;
        padding: 30px;
        height: auto;
    }
    
    .testimonial-photo {
        margin: 0 auto 20px;
    }
    
    .testimonial-content {
        padding: 0;
        text-align: center;
    }
    
    .testimonial cite {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 20px;
    }
    
    .image-placeholder {
        height: 250px;
    }
    
    .sticky-cta {
        width: 90%;
    }
    
    .sticky-cta .btn {
        width: 100%;
        text-align: center;
    }
}

/* Animation Classes */
.service-card, .feature, .testimonial {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.visible, .feature.visible, .testimonial.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Value items in About section */
.value-item {
    text-align: center;
    padding: 35px 25px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(180, 67, 84, 0.1);
}

/* Feature items in Why Choose Us section */
.feature {
    text-align: center;
    padding: 35px 25px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(180, 67, 84, 0.1);
}

.feature-icon, .value-icon {
    transition: all 0.3s ease;
}

.feature:hover .feature-icon, .value-item:hover .value-icon {
    transform: scale(1.1);
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation for rotating borders */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.value-icon::after, .feature-icon::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 2px dashed rgba(244, 161, 173, 0.3);
    top: -3px;
    left: -3px;
    animation: rotate 20s linear infinite;
}

/* Animation for rotating icon circle */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.reason-icon {
    width: 110px;
    height: 110px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-right: 30px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(244, 161, 173, 0.2);
    border: 10px solid #fbe5ea;
    flex-shrink: 0;
}

.icon-circle {
    position: absolute;
    width: 105%;
    height: 105%;
    border-radius: 50%;
    border: 2px dashed rgba(244, 161, 173, 0.3);
    animation: rotate 20s linear infinite;
    top: -2.5%;
    left: -2.5%;
}

/* Fallback for Font Awesome icons */
.icon-fallback {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: #b44354;
    border-radius: 50%;
    position: relative;
}

.reason-icon i, .value-icon i {
    font-size: 2.2rem;
    color: #b44354;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

/* If Font Awesome fails, show at least the circles */
.reason-icon, .value-icon {
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Fix Font Awesome icon alignment */
.fas, .fa, .far, .fab {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
}

.reason-icon i, .value-icon i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Ensure icons display properly on all browsers */
.reason-icon, .value-icon {
    text-align: center;
    line-height: 1;
} 