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

:root {
    --primary-color: #2B7A9B;
    --secondary-color: #4A90A4;
    --accent-color: #3AAFA9;
    --dark-blue: #1B5E7E;
    --light-bg: #F0F7FA;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --teal-accent: #265555;
    --border-radius: 15px;
}

body {
    font-family: 'Sora', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Sora', sans-serif;
    font-weight: 600;
}

html {
    scroll-behavior: smooth;
}

/* Header */
.header-top {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 10px 0;
}

.header-top-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.header-contact-items {
    display: flex;
    gap: 30px;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-contact-item svg {
    width: 16px;
    height: 16px;
}

.header-contact-item a {
    color: #fff;
    text-decoration: none;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-main {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 5px 0;
    box-shadow: 0 8px 25px 0 rgb(0 0 0 / 28%);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Navigation with Bottom Border Animation */
nav {
    display: flex;
    gap: 5px;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

nav a:hover {
    color: var(--primary-color);
}

nav a:hover::after {
    width: 80%;
}
        
/* Active menu item */
nav a.active {
    color: var(--primary-color);
}

nav a.active::after {
    width: 80%;
}

/* Scroll offset for fixed header */
section {
    scroll-margin-top: 140px;
}

/* Scroll-triggered fade-in animation */
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Staggered animation for child elements */
.scroll-fade-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade-stagger.visible > *:nth-child(1) { 
    animation: fadeInUp 0.6s ease-out 0.1s forwards; 
}
.scroll-fade-stagger.visible > *:nth-child(2) { 
    animation: fadeInUp 0.6s ease-out 0.2s forwards; 
}
.scroll-fade-stagger.visible > *:nth-child(3) { 
    animation: fadeInUp 0.6s ease-out 0.3s forwards; 
}
.scroll-fade-stagger.visible > *:nth-child(4) { 
    animation: fadeInUp 0.6s ease-out 0.4s forwards; 
}
.scroll-fade-stagger.visible > *:nth-child(5) { 
    animation: fadeInUp 0.6s ease-out 0.5s forwards; 
}
.scroll-fade-stagger.visible > *:nth-child(6) { 
    animation: fadeInUp 0.6s ease-out 0.6s forwards; 
}
.scroll-fade-stagger.visible > *:nth-child(7) { 
    animation: fadeInUp 0.6s ease-out 0.7s forwards; 
}
.scroll-fade-stagger.visible > *:nth-child(8) { 
    animation: fadeInUp 0.6s ease-out 0.8s forwards; 
}
.scroll-fade-stagger.visible > *:nth-child(9) { 
    animation: fadeInUp 0.6s ease-out 0.9s forwards; 
}
.scroll-fade-stagger.visible > *:nth-child(10) { 
    animation: fadeInUp 0.6s ease-out 1.0s forwards; 
}

.mobile-menu-toggle {
    display: none;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Modern Hero with Real Image */
.hero {
    background-image: 
        linear-gradient(135deg, rgb(0 0 0 / 90%) 0%, rgb(65 129 159 / 33%) 100%), url(https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1920&q=80);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(74, 144, 164, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74, 144, 164, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 2.7rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(43, 122, 155, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(43, 122, 155, 0.4);
}

.btn-outline {
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* Modern Stats Section */
.stats-section {
    background-image: linear-gradient(135deg, rgba(43, 122, 155, 0.96) 0%, rgba(27, 94, 126, 0.28) 100%),
        url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 20px;
    color: var(--white);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.03) 50px,
            rgba(255, 255, 255, 0.03) 51px
        );
    pointer-events: none;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 80px;
    height: 80px;
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 20px;
    animation: pulse 3s ease-in-out infinite;
}

.stat-icon svg {
    width: 40px;
    height: 40px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin: 15px 0;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 500;
}

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

section {
    padding: 100px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    background: #333;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 20px;
}

/* Modern Services Section */
#services {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 25px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(43, 122, 155, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(43, 122, 155, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(43, 122, 155, 0.35);
    transition: all 0.4s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* Modern Parallax Section */
.parallax-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    background-image: url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?w=1920&q=80');
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: 1;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(94 127 141 / 96%) 0%, rgba(27, 94, 126, 0.28) 100%);
    z-index: 2;
}

.parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(74, 144, 164, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(74, 144, 164, 0.15) 0%, transparent 50%);
    z-index: 3;
}

.parallax-content {
    position: relative;
    z-index: 4;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: var(--white);
}

.parallax-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 700;
    animation: fadeInUp 1.2s ease-out;
}

.parallax-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease-out 0.3s backwards;
}

.parallax-content .btn {
    animation: fadeInUp 1.2s ease-out 0.6s backwards;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 30px rgba(43, 122, 155, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-content h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Modern Reviews Carousel */
#reviews {
    background: var(--light-bg);
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 30px;
    animation: scroll 40s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    min-width: 385px;
    position: relative;
    /*background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px;
    border-radius: var(--border-radius);
    border-left: 4px solid #a4a4a4;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    
    transition: all 0.3s ease;*/
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 100px;
    font-family: Georgia, serif;
    color: rgba(43, 122, 155, 0.08);
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(43, 122, 155, 0.25);
}

/*.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 55px;
    height: 55px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(38, 85, 85, 0.3);
}
.review-stars {
    color: #ffa500;
    font-size: 1rem;
}
*/

.review-info h4 {
    font-size: 1.15rem;
    color: #333;
}
.review-text {
    /*color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;*/
    font-style: italic;
}

/* Main Reviews Section */
#reviews {
    background: var(--light-bg);
    padding: 100px 20px;
}

/* Review Controls Container */
.review-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0 50px;
    padding: 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Overall Rating Summary */
.review-stats-summary {
    display: flex;
    gap: 40px;
    flex: 1;
    min-width: 300px;
}

.overall-rating {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    color: white;
    min-width: 150px;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.overall-rating .rating-stars {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #FFD700;
}

.rating-count {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Rating Breakdown Bars */
.rating-breakdown {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.star-label {
    font-weight: 600;
    min-width: 35px;
    color: var(--text-dark);
}

.bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    transition: width 1s ease-out;
}

.percentage {
    min-width: 40px;
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Filter Buttons */
.review-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
    min-width: 300px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
}

/* Sort Dropdown */
.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-dropdown label {
    font-weight: 600;
    color: var(--text-dark);
}

.sort-dropdown select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-dropdown select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Reviews Grid Layout */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Individual Review Card */
.review-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #e0e0e0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(43, 122, 155, 0.15);
    border-left-color: var(--primary-color);
}

.review-card.premium {
    border-left-color: #FFD700;
    background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    font-size: 0.85rem;
}

/* Verified Badge */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #10b981;
    font-weight: 600;
}

.verified-badge svg {
    flex-shrink: 0;
}

.review-date {
    color: var(--text-light);
}

.review-source {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--text-light);
}

/* Review Stars */
.review-rating {
    flex-shrink: 0;
}

.review-stars {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Review Tags */
.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.tag {
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(43, 122, 155, 0.1), rgba(74, 144, 164, 0.1));
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(43, 122, 155, 0.2);
}

/* Review Text */
.review-text {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
    margin: 15px 0;
}

/* Review Images Placeholder */
.review-images {
    display: none; /* Hidden as per requirement */
}

/* Review Actions */
.review-actions {
    display: none; /* Hidden as per requirement */
}

/* Business Response */
.business-response {
    display: none; /* Hidden as per requirement */
}

/* Load More Button */
.load-more-container {
    display: none; /* Hidden as per requirement */
}

/* Write Review CTA */
.write-review-cta {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius);
    color: white;
    margin-top: 40px;
}

.write-review-cta h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.write-review-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.write-review-btn {
    padding: 15px 40px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.write-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


/* Modern Contact Section */
#contact {
    background: var(--white);
}

.contact-form {
    backdrop-filter: blur(15px);
    animation: fadeInLeft 0.8s ease-out 0.2s backwards;
    width: 550px;
    margin: 0 auto;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: none;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(43, 122, 155, 0.15);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    max-width: fit-content;
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(43, 122, 155, 0.4);
}

.submit-btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Modern Map Section */
.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 400px;
    position: relative;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #333;
    z-index: 10;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    background: #333;
    color: var(--white);
    padding: 50px 20px 25px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
    position: relative;
}

.footer-links a:hover{
    text-decoration: none;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.copyright {
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.95rem;
    opacity: 0.85;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    cursor: pointer;
    text-decoration: none;
    animation: pulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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


/* Responsive Design */

@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 820px) {
    nav a {
        padding: 10px 5px;
    }
}

@media (max-width: 768px) {

    nav a.active::after {
        width: 45%;
    }

    nav a {
        text-align: center;
    }


    .mobile-menu-toggle {
        display: block;
        background: none;
        color: #000;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .header-contact-items {
        flex-direction: column;
        gap: 10px;
    }

    .hero {
        background-attachment: scroll;
        min-height: 70vh;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-section {
        background-attachment: scroll;
    }

    .review-card {
        min-width: 320px;
    }

    .parallax-section {
        height: 500px;
    }

    .parallax-bg {
        background-attachment: scroll;
    }

    .parallax-content h2 {
        font-size: 2.2rem;
    }

    .parallax-content p {
        font-size: 1.15rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        width: 100%;
    }

    .review-controls {
        flex-direction: column;
        padding: 20px;
    }

    .review-stats-summary {
        flex-direction: column;
        gap: 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 20px;
    }

    .reviewer-info {
        flex-direction: row;
        align-items: center;
    }

    .review-header {
        flex-direction: column;
        gap: 15px;
    }

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

    .write-review-cta h3 {
        font-size: 1.5rem;
    }

    .write-review-cta p {
        font-size: 1rem;
    }

}


@media (max-width: 480px) {

    .header-top{
        display: none;
    }
    
    .parallax-section {
        height: 650px;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .rating-number {
        font-size: 2.5rem;
    }

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

