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

html {
    scroll-behavior: smooth;
}

body {
    font-family:Georgia, 'Times New Roman', Times, serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-title-container {
    display: flex;
    flex-direction: column;
}

.logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-title {
    font-weight: 600;
    font-size: 1.3rem;
    color: #AB04E6;
    line-height: 1;
}

.nav-subtitle {
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1;
    margin-top: 2px;
}

.nav-subtitle .by-text {
    color: #000000;
}

.nav-subtitle .company-text {
    color: #000000;
    font-weight: bold;
}

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

.nav-link {
    text-decoration: none;
    color: #6B7280;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #EC4899;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #EC4899, #8B5CF6);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #8B5CF6;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1623387641168-d9803ddd3f35?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, transparent 0%, rgba(255, 255, 255, 0.1) 70%),
        linear-gradient(45deg, rgba(236, 72, 153, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

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

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero-logo-img {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05) rotate(5deg);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    animation: fadeInUp 1.4s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.6s ease-out;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: #8B5CF6; 
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1.8s ease-out;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
    color: #EC4899;
}


/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    background: #FAFAFA;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.95), rgba(139, 92, 246, 0.95));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}

.service-card-overlay span {
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1F2937;
}

.service-card p {
    color: #6B7280;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.gallery-slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide.active {
    display: block;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 30px 20px 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    color: #8B5CF6;
}

.gallery-btn:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.gallery-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #D1D5DB;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
}

/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.service-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

.modal-header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #1F2937;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    font-size: 2rem;
    color: #9CA3AF;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.modal-close:hover {
    color: #EC4899;
}

.modal-body {
    padding: 2rem;
    display: flex;
    gap: 2rem;
}

.modal-icon {
    flex-shrink: 0;
}

.modal-icon i {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.modal-details {
    flex: 1;
}

.modal-details h4 {
    color: #1F2937;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.modal-details p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.modal-features li {
    color: #4B5563;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.modal-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.modal-pricing {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.modal-pricing h4 {
    color: #1F2937;
    margin: 0 0 0.5rem 0;
}

.modal-pricing p {
    color: #6B7280;
    margin: 0;
}

.modal-duration {
    color: #6B7280;
    font-style: italic;
}

.modal-footer {
    padding: 1rem 2rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    border-top: 1px solid #E5E7EB;
}

.modal-book-btn {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.modal-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
    color: white;
}

.modal-close-btn {
    background: #F3F4F6;
    color: #6B7280;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: #E5E7EB;
    color: #4B5563;
}

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

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 20px;
        max-height: calc(100vh - 40px);
    }
    
    .modal-body {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .modal-footer {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
        flex-direction: column;
    }
    
    .modal-icon i {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Team Section */
.team {
    background: #FAFAFA;
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.team-bubbles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.team-bubble {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 30px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.team-bubble.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.team-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, #EC4899, #8B5CF6, #EC4899);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-bubble:hover::before {
    opacity: 1;
}

.team-bubble:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.bubble-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.team-bubble:hover .bubble-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.bubble-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-bubble:hover .bubble-icon::after {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.bubble-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.bubble-quote {
    color: #374151;
    line-height: 1.7;
    font-style: italic;
    font-size: 0.95rem;
    position: relative;
    padding: 0 1rem;
}

.bubble-quote::before {
    content: '"';
    font-size: 3rem;
    color: #EC4899;
    position: absolute;
    top: -10px;
    left: -5px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.bubble-quote::after {
    content: '"';
    font-size: 3rem;
    color: #8B5CF6;
    position: absolute;
    bottom: -30px;
    right: -5px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.bubble-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    top: -20px;
    right: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-bubble:hover .bubble-decoration {
    opacity: 1;
    transform: scale(1.2);
}

/* Removed floating animations for team bubbles */

/* Responsive adjustments for team bubbles */
@media (max-width: 768px) {
    .team-bubbles {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-bubble {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .bubble-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .bubble-title {
        font-size: 1.2rem;
    }
    
    .bubble-quote {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .bubble-decoration {
        width: 40px;
        height: 40px;
        top: -15px;
        right: -15px;
    }
}

@media (max-width: 480px) {
    .team-bubble {
        border-radius: 20px;
        padding: 1.5rem 1rem;
    }
    
    .bubble-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .bubble-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .bubble-quote {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

/* Reviews Section */
.reviews-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    background-clip: padding-box;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    border-radius: 2px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-start;
}

.review-rating .stars {
    color: #FCD34D;
    font-size: 1.3rem;
    display: flex;
    gap: 2px;
}

.rating-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1F2937;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-text {
    flex: 1;
}

.review-text p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 1rem;
}

.review-author {
    color: #8B5CF6;
    font-weight: 600;
    font-size: 0.95rem;
}

.review-author a {
    color: #6B7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.review-author a:hover {
    color: #EC4899;
}

/* Combined Review Actions Section */
.review-actions-section {
    margin-top: 3rem;
}

.review-actions-container {
    background: linear-gradient(135deg, #FDF2F8 0%, #F3E8FF 100%);
    border-radius: 25px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.review-actions-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
    animation: pulse-bg 4s ease-in-out infinite;
}

.review-actions-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.more-reviews-section,
.leave-review-section-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.more-reviews-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4285F4, #34A853);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.3);
}

.more-reviews-section h4,
.leave-review-section-inline h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.more-reviews-section p,
.leave-review-section-inline p {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.read-reviews-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

.read-reviews-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(66, 133, 244, 0.4);
}

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

.divider-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, #D1D5DB, transparent);
}

.divider-text {
    background: white;
    color: #9CA3AF;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #F3F4F6;
}

.leave-review-section-inline .review-icon {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: #FCD34D;
    animation: sparkle 2s ease-in-out infinite;
}

.leave-review-section-inline .review-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.leave-review-section-inline .primary-review-button,
.leave-review-section-inline .secondary-review-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.leave-review-section-inline .primary-review-button {
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

.leave-review-section-inline .secondary-review-button {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
    color: white;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.leave-review-section-inline .primary-review-button:hover,
.leave-review-section-inline .secondary-review-button:hover {
    transform: translateY(-2px);
}

.leave-review-section-inline .primary-review-button:hover {
    box-shadow: 0 12px 30px rgba(66, 133, 244, 0.4);
}

.leave-review-section-inline .secondary-review-button:hover {
    box-shadow: 0 12px 30px rgba(24, 119, 242, 0.4);
}

.review-benefits {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6B7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.benefit-item i {
    color: #EC4899;
    font-size: 1rem;
}

/* Legacy styles for compatibility */
.stars {
    color: #FCD34D;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Enhanced Leave a Review Section - keeping for backward compatibility */
.leave-review-section {
    margin-top: 3rem;
    padding: 0;
}

.review-cta-container {
    background: linear-gradient(135deg, #FDF2F8 0%, #F3E8FF 100%);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.review-cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
    animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.review-cta-content {
    position: relative;
    z-index: 2;
}

.review-icon {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #FCD34D;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.review-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-cta-text {
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.review-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.primary-review-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
    position: relative;
    overflow: hidden;
}

.primary-review-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.primary-review-button:hover::before {
    left: 100%;
}

.primary-review-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(66, 133, 244, 0.4);
}

.primary-review-button i {
    font-size: 1.3rem;
}

.secondary-review-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1877F2, #42A5F5);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
    position: relative;
    overflow: hidden;
}

.secondary-review-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.secondary-review-button:hover::before {
    left: 100%;
}

.secondary-review-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.4);
}

.secondary-review-button i {
    font-size: 1.3rem;
}

/* Reviews Link Styling - removed as it's now integrated */

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #FDF2F8 0%, #F3E8FF 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: #EC4899;
    font-size: 1.5rem;
    margin-top: 5px;
    width: 24px;
    text-align: center;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1F2937;
}

.contact-item p {
    color: #6B7280;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
}

.map-container iframe {
    border-radius: 20px;
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}

/* Responsive iframe styling */
@media (max-width: 768px) {
    .map-container iframe {
        height: 300px !important;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 250px !important;
        border-radius: 10px;
    }
}

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-title-container {
    display: flex;
    flex-direction: column;
}

.footer-logo span {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1;
}

.footer-subtitle {
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1;
    margin-top: 2px;
}

.footer-subtitle .by-text {
    color: #ffffff;
}

.footer-subtitle .company-text {
    color: #22C55E;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #EC4899;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.2);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9CA3AF;
}

/* Floating Social Buttons */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 30px rgba(37, 211, 102, 0.6);
}

.facebook-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 120px;
    right: 40px;
    background: #1877F2;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 20px rgba(24, 119, 242, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-facebook 2s infinite 0.5s;
}

.facebook-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 30px rgba(24, 119, 242, 0.6);
}

.instagram-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 200px;
    right: 40px;
    background: linear-gradient(45deg, #F56040, #E1306C, #C13584, #833AB4);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 20px rgba(225, 48, 108, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-instagram 2s infinite 1s;
}

.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 30px rgba(225, 48, 108, 0.6);
}

@keyframes pulse-whatsapp {
    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);
    }
}

@keyframes pulse-facebook {
    0% {
        box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(24, 119, 242, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(24, 119, 242, 0);
    }
}

@keyframes pulse-instagram {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 48, 108, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(225, 48, 108, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(225, 48, 108, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        backdrop-filter: blur(10px);
        z-index: 999;
    }

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

    .nav-title {
        font-size: 1.1rem;
    }

    .nav-subtitle {
        font-size: 0.8rem;
    }

    .logo {
        height: 50px;
        width: 50px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 20px;
    }

    .hero-logo-img {
        width: 120px;
        height: 120px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
        border-radius: 25px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }

    .service-card {
        padding: 2rem 1.5rem;
        margin: 0;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    /* Gallery Mobile Responsiveness */
    .gallery-container {
        height: 350px;
    }

    .gallery-btn {
        padding: 8px 12px;
        font-size: 1rem;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .dot {
        height: 12px;
        width: 12px;
        margin: 0 3px;
    }

    /* Contact Section Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        margin-bottom: 1.5rem;
    }

    .contact-item i {
        font-size: 1.3rem;
    }

    /* Map responsiveness */
    .contact-content iframe {
        width: 100% !important;
        height: 300px !important;
        border-radius: 15px;
    }

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo img {
        height: 35px;
        width: 35px;
    }

    .footer-title-container span {
        font-size: 1.1rem;
    }

    .footer-subtitle {
        font-size: 0.8rem;
    }

    /* Floating Buttons Mobile Positioning */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 15px;
        font-size: 22px;
    }

    .facebook-float {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 15px;
        font-size: 20px;
    }

    .instagram-float {
        width: 50px;
        height: 50px;
        bottom: 140px;
        right: 15px;
        font-size: 22px;
    }

    /* Enhanced Review Section Mobile Styles */
    .review-cta-container {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }

    .review-cta-title {
        font-size: 1.6rem;
    }

    .review-cta-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .review-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .primary-review-button,
    .secondary-review-button {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .review-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .benefit-item {
        justify-content: center;
        font-size: 0.9rem;
    }

    /* New Combined Review Actions Mobile Styles */
    .review-actions-container {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }

    .review-actions-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .actions-divider {
        order: 2;
    }

    .more-reviews-section {
        order: 1;
    }

    .leave-review-section-inline {
        order: 3;
    }

    .actions-divider .divider-line {
        width: 80%;
        height: 1px;
        background: linear-gradient(90deg, transparent, #D1D5DB, transparent);
    }

    .more-reviews-section h4,
    .leave-review-section-inline h4 {
        font-size: 1.3rem;
    }

    .more-reviews-section p,
    .leave-review-section-inline p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .leave-review-section-inline .review-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .leave-review-section-inline .primary-review-button,
    .leave-review-section-inline .secondary-review-button {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .review-benefits {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .reviews-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-rating {
        justify-content: center;
    }

    .review-rating .stars {
        font-size: 1.2rem;
    }

    .rating-text {
        font-size: 1.1rem;
    }
}

/* Tablet and Medium Devices */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-content {
        padding: 2.5rem 2rem;
    }

    .hero-logo-img {
        width: 160px;
        height: 160px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .team-bubbles {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .reviews-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-content iframe {
        height: 400px !important;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
        font-size: 26px;
    }

    .facebook-float {
        width: 55px;
        height: 55px;
        bottom: 90px;
        right: 25px;
        font-size: 24px;
    }

    .instagram-float {
        width: 55px;
        height: 55px;
        bottom: 155px;
        right: 25px;
        font-size: 26px;
    }
}

/* Large Mobile Devices */
@media (max-width: 640px) and (min-width: 481px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-logo-img {
        width: 110px;
        height: 110px;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .service-card {
        padding: 1.8rem 1.3rem;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .gallery-container {
        height: 320px;
    }

    .contact-content iframe {
        height: 280px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-title {
        font-size: 1rem;
    }

    .nav-subtitle {
        font-size: 0.7rem;
    }

    .logo {
        height: 45px;
        width: 45px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
        border-radius: 15px;
    }

    .hero-logo {
        margin-bottom: 1.5rem;
    }

    .hero-logo-img {
        width: 100px;
        height: 100px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .services-grid {
        gap: 1rem;
        padding: 0 5px;
    }

    .service-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .gallery-container {
        height: 280px;
        border-radius: 15px;
    }

    .gallery-btn {
        display: none; /* Hide navigation buttons on very small screens */
    }

    .slide-caption {
        font-size: 0.9rem;
        padding: 20px 15px 15px;
    }

    .contact-item {
        margin-bottom: 1.2rem;
    }

    .contact-item i {
        font-size: 1.2rem;
    }

    .contact-item h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    .contact-content iframe {
        height: 250px !important;
        border-radius: 10px;
    }

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

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-logo img {
        height: 30px;
        width: 30px;
    }

    .footer-title-container span {
        font-size: 1rem;
    }

    .footer-subtitle {
        font-size: 0.75rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 1.5rem;
    }

    /* Extra small floating buttons */
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 10px;
        font-size: 20px;
    }

    .facebook-float {
        width: 45px;
        height: 45px;
        bottom: 70px;
        right: 10px;
        font-size: 18px;
    }

    .instagram-float {
        width: 45px;
        height: 45px;
        bottom: 125px;
        right: 10px;
        font-size: 20px;
    }

    /* Team bubbles extra small */
    .team-bubble {
        border-radius: 15px;
        padding: 1.2rem 0.8rem;
    }

    .bubble-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .bubble-title {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .bubble-quote {
        font-size: 0.8rem;
        line-height: 1.5;
        padding: 0;
    }

    .bubble-decoration {
        width: 35px;
        height: 35px;
        top: -12px;
        right: -12px;
    }

    /* Review cards extra small */
    .review-card {
        padding: 1.2rem;
        border-radius: 15px;
        gap: 1rem;
    }

    .review-rating .stars {
        font-size: 1rem;
    }

    .rating-text {
        font-size: 1rem;
    }

    .review-text p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .review-author {
        font-size: 0.8rem;
    }
}

/* Base responsive improvements */
img {
    max-width: 100%;
    height: auto;
}

/* Improved button touch targets for mobile */
@media (max-width: 768px) {
    .cta-button,
    .modal-book-btn,
    .modal-close-btn,
    .primary-review-button,
    .secondary-review-button,
    .read-reviews-button {
        min-height: 44px; /* iOS recommended touch target size */
        touch-action: manipulation; /* Prevent double-tap zoom */
    }
}

/* Viewport-based font scaling for better readability */
@media (max-width: 768px) {
    html {
        font-size: 16px;
    }
    
    body {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
}

/* Improved spacing for mobile */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
}

/* Better gallery mobile experience */
@media (max-width: 768px) {
    .gallery-slide {
        /* Add touch swipe capability indication */
        cursor: grab;
    }
    
    .gallery-slide:active {
        cursor: grabbing;
    }
    
    .slide-caption {
        font-size: 0.95rem;
        padding: 25px 15px 15px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    }
}

/* Improved modal responsiveness */
@media (max-width: 640px) {
    .modal-content {
        margin: 10px;
        max-height: calc(100vh - 20px);
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 1.2rem 1.2rem 0.8rem 1.2rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.2rem;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .modal-footer {
        padding: 0.8rem 1.2rem 1.2rem 1.2rem;
        flex-direction: column-reverse;
        gap: 0.8rem;
    }
    
    .modal-book-btn,
    .modal-close-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus states for accessibility */
button:focus,
a:focus {
    outline: 2px solid #EC4899;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .whatsapp-float,
    .gallery-btn,
    .gallery-dots {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    section {
        padding: 2rem 0;
        break-inside: avoid;
    }
}
