:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --white: #fff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}
.logo-textbottom h1 {
    font-size: 1.5rem;
    color: whitesmoke;
    margin-bottom: 5px;
}
.logo-text p {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 1px;
}
/* Highlighted header tagline */
.logo-text p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.15), rgba(231, 76, 60, 0.15));
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(231, 76, 60, 0.25);
}

.logo-text p::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.6);
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(243, 156, 18, 0); }
    100% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0); }
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

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

nav ul li a:hover {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 20px 50px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

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

.card-img {
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.card-content .btn {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(20px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(20px);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-section .section-title h2 {
    color: var(--white);
}

.contact-section .section-title::after {
    background-color: var(--accent-color);
}

/* Contact Highlights */
.contact-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-color), #e67e22);
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.highlight-item:nth-child(2) {
    animation-delay: 0.5s;
}

.highlight-item:nth-child(3) {
    animation-delay: 1s;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.highlight-item i {
    font-size: 1.2rem;
    color: var(--white);
}

.highlight-item span {
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 20px;
}

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

@keyframes pulse-border {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.phone-icon {
    animation: pulse-border-phone 2s infinite;
}

.phone-icon::before {
    animation: pulse-ring-phone 2s infinite;
}

@keyframes pulse-border-phone {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(231, 76, 60, 0.1);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

@keyframes pulse-ring-phone {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Mobile-optimized animations for better performance */
@keyframes pulse-border-mobile {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.1);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-ring-mobile {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(20px);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.contact-form .btn {
    background-color: var(--secondary-color);
    width: 100%;
}

/* Alternative Contact Buttons */
.alternative-contact {
    margin-top: 20px;
    text-align: center;
}

.alternative-contact p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-btn {
    background-color: #25D366 !important;
    color: var(--white) !important;
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background-color: #20b358 !important;
    transform: translateY(-2px);
}

.email-btn {
    background-color: #4285f4 !important;
    color: var(--white) !important;
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.email-btn:hover {
    background-color: #3367d6 !important;
    transform: translateY(-2px);
}

.contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.contact-info a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Working Hours Specific Styling */
.contact-info .working-hours {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
}

.contact-info .working-hours:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-info .working-hours .day {
    font-weight: 500;
    min-width: 80px;
}

.contact-info .working-hours .time {
    color: var(--accent-color);
    font-weight: 400;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.google-reviews-container {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-top: 50px;
}

.google-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.google-logo i {
    color: #4285f4;
    font-size: 1.5rem;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffc107;
    font-size: 1.2rem;
}

.rating-text {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.review-card {
    background-color: #fafafa;
    border-radius: 8px;
    padding: 25px;
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

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

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

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

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.reviewer-details h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-top: 5px;
}

.review-stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.review-text {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
    text-align: left;
    word-wrap: break-word;
}

.review-text::before {
    content: '"';
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
}

.review-text::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
}

.view-all-reviews {
    text-align: center;
    margin-top: 30px;
}

.view-all-reviews .btn {
    background-color: #4285f4;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.view-all-reviews .btn:hover {
    background-color: #3367d6;
    transform: translateY(-2px);
}

.view-all-reviews .btn i {
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 20px;
}

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

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Floating Icons */
.floating-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    animation: pulse-border 2s infinite;
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.floating-icons a:first-child {
    animation-delay: 0s;
}

.floating-icons a:last-child {
    animation-delay: 1s;
}

.floating-icons a::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: pulse-ring 2s infinite;
}

.whatsapp-icon::before {
    border-color: #25D366;
}

.phone-icon::before {
    border-color: var(--secondary-color);
}

/* Enhanced attention-grabbing effects */
.floating-icons a:hover {
    animation-play-state: paused;
    transform: scale(1.1);
}

.floating-icons a:active {
    transform: scale(0.95);
}

/* Special attention-grabbing animation every 10 seconds */
@keyframes attention-grab {
    0%, 90%, 100% {
        transform: scale(1);
    }
    92% {
        transform: scale(1.2);
    }
    94% {
        transform: scale(0.9);
    }
    96% {
        transform: scale(1.1);
    }
    98% {
        transform: scale(1);
    }
}

.floating-icons a {
    animation: pulse-border 2s infinite, attention-grab 10s infinite;
}

.whatsapp-icon {
    background-color: #25D366;
    color: var(--white);
}

.phone-icon {
    background-color: var(--secondary-color);
    color: var(--white);
}

.floating-icons a i {
    font-size: 1.5rem;
}

.floating-icons a:hover {
    transform: translateY(-5px);
}

.floating-icons a::after {
    content: attr(title);
    position: absolute;
    right: 70px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition);
    white-space: nowrap;
}

.floating-icons a:hover::after {
    opacity: 1;
    right: 80px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.8rem;
    }

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

    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        padding: 10px;
        width: 44px;
        height: 44px;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        transition: var(--transition);
        z-index: 999;
        overflow-y: auto;
        padding-bottom: 20px;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 30px;
        gap: 10px;
    }

    nav ul li {
        margin: 8px 0;
        margin-left: 0;
    }

    .hero {
        padding-top: 80px;
        padding-bottom: 80px;
    }

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

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

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

    .floating-icons {
        bottom: 20px;
        right: 20px;
    }

    .floating-icons a {
        width: 50px;
        height: 50px;
        touch-action: manipulation;
    }

    .floating-icons a i {
        font-size: 1.2rem;
    }

    /* Mobile header compaction */
    .header-container {
        padding: 10px 0;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
        margin-right: 10px;
    }

    .logo-text h1 {
        font-size: 1.4rem;
        margin-bottom: 2px;
    }

    .logo-text p {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}

        @media (max-width: 576px) {
            .logo-text h1 {
                font-size: 1.2rem;
            }

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

            .service-cards, .gallery-grid {
                grid-template-columns: 1fr;
            }

            .card, .gallery-item {
                opacity: 1;
                transform: translateY(0);
            }

            .footer-links {
                flex-direction: column;
                gap: 10px;
            }

            .contact-highlights {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }

            .highlight-item {
                padding: 12px 20px;
                font-size: 0.9rem;
            }

            .highlight-item span {
                font-size: 0.9rem;
            }

            /* Mobile Reviews Section Fixes */
            .google-reviews-container {
                padding: 20px;
                margin-top: 30px;
            }

            .google-reviews-header {
                flex-direction: column;
                gap: 15px;
                text-align: center;
                margin-bottom: 30px;
            }

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

            .review-card {
                padding: 20px;
            }

            .review-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .reviewer-info {
                width: 100%;
            }

            .review-date {
                align-self: flex-end;
            }

            .review-text {
                font-size: 0.9rem;
                line-height: 1.5;
                text-align: left;
            }

            .view-all-reviews .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            /* Mobile Performance Optimizations - Keep attention-grabbing animations */
            .floating-icons a {
                animation: pulse-border-mobile 3s infinite;
            }

            .floating-icons a::before {
                animation: pulse-ring-mobile 3s infinite;
            }

            .highlight-item {
                animation: none;
            }

            .card, .gallery-item, .review-card {
                animation: none;
                opacity: 1;
                transform: none;
            }

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

            .whatsapp-btn, .email-btn {
                width: 100%;
                min-width: auto;
            }
        }

        /* Reduce animations on low-end devices */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

/* Fix: prevent fixed header from overlapping section titles and anchor targets */
section[id] {
    scroll-margin-top: 120px;
}

@media (max-width: 768px) {
    body {
        padding-top: 90px;
    }
    section[id] {
        scroll-margin-top: 140px;
    }
}
