/* Global Styles */
:root {
    --primary-color: #FFD700; /* Yellow */
    --secondary-color: #FFEB3B; /* Light Yellow */
    --accent-color: #333333;
    --dark-color: #333333;
    --light-color: #ffffff; /* White */
    --text-color: #333333;
    --border-color: #e1e1e1;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f5f5;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Header Styles */
.site-header {
    background-color: var(--light-color);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: var(--dark-color);
    padding: 10px 0;
}

.contact-info {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.contact-info li {
    margin-right: 20px;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.contact-info li i {
    margin-right: 8px;
    color: var(--primary-color);
    font-size: 16px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.social-links li {
    margin-left: 15px;
}

.social-links a {
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.navbar {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--dark-color);
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}

.brand-tagline {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 15px !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 80%;
}

.call-now-btn {
    background-color: var(--primary-color);
    color: #000 !important;
    border-radius: 30px;
    padding: 8px 20px !important;
    margin-left: 15px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.call-now-btn i {
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

.call-now-btn:hover {
    background-color: transparent;
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

.call-now-btn:hover::after {
    width: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Enhanced Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.welcome-text {
    background-color: rgba(255, 215, 0, 0.2);
    color: var(--dark-color);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    border-left: 4px solid var(--primary-color);
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.2;
}

.hero-content .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-content .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 215, 0, 0.3);
    z-index: -1;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-btns .btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-btns .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

.hero-btns .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--dark-color);
    background-color: transparent;
}

.hero-btns .btn-primary:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    color: #fff;
    transform: translateY(-3px);
}

.hero-btns .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

.hero-btns .btn i {
    margin-right: 8px;
}

.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.highlight-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.highlight-item i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 14px;
}

.highlight-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    position: relative;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

.water-drop-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.water-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('../images/wave.png') repeat-x;
    background-size: 1000px 100px;
    animation: wave 10s linear infinite;
    z-index: 1;
}

@keyframes wave {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1000px;
    }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #fff;
}

.feature-item {
    margin-bottom: 30px;
}

.feature-box {
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    background-color: var(--light-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    height: 10px;
    background-color: var(--primary-color);
    transform: translateY(-100%);
    transition: all 0.5s ease;
}

.feature-box:hover::before {
    transform: translateY(0);
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
    font-weight: bold;
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.brands-section .section-title {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.brands-section .section-subtitle {
    color: #00a8e8;
    font-size: 18px;
    margin-bottom: 50px;
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.brand-logo-item {
    max-width: 150px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(0);
    opacity: 1;
    transition: all 0.3s ease;
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.brand-logo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.service-card {
    position: relative;
    height: 100%;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    padding: 30px 20px 30px;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: 1;
}

.service-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
    z-index: -1;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: all 0.4s ease;
    position: relative;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    min-height: 40px;
}

.service-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.service-price .price {
    font-size: 24px;
    font-weight: 700;
    margin-right: 5px;
}

.service-price .label {
    font-size: 14px;
    color: #666;
}

.service-features {
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(248, 249, 250, 0.5);
    border-radius: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    margin-right: 10px;
    font-size: 12px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .feature-item {
    transform: translateX(5px);
}

.btn-view {
    margin-top: 10px;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Service Card Color Variations - Updated */
.service-blue::before {
    background: linear-gradient(to right, #4285F4, #5C9CFF);
}

.service-blue .service-icon {
    color: #4285F4;
    background-color: rgba(66, 133, 244, 0.1);
}

.service-blue h3 {
    color: #4285F4;
}

.service-blue .feature-item i {
    color: #4285F4;
    background-color: rgba(66, 133, 244, 0.1);
}

.service-blue .btn-view {
    background-color: #4285F4;
    color: #fff;
}

.service-green::before {
    background: linear-gradient(to right, #34A853, #5CCA7B);
}

.service-green .service-icon {
    color: #34A853;
    background-color: rgba(52, 168, 83, 0.1);
}

.service-green h3 {
    color: #34A853;
}

.service-green .feature-item i {
    color: #34A853;
    background-color: rgba(52, 168, 83, 0.1);
}

.service-green .btn-view {
    background-color: #34A853;
    color: #fff;
}

.service-purple::before {
    background: linear-gradient(to right, #A142F4, #C282FF);
}

.service-purple .service-icon {
    color: #A142F4;
    background-color: rgba(161, 66, 244, 0.1);
}

.service-purple h3 {
    color: #A142F4;
}

.service-purple .feature-item i {
    color: #A142F4;
    background-color: rgba(161, 66, 244, 0.1);
}

.service-purple .btn-view {
    background-color: #A142F4;
    color: #fff;
}

.service-orange::before {
    background: linear-gradient(to right, #FBBC05, #FCD259);
}

.service-orange .service-icon {
    color: #FBBC05;
    background-color: rgba(251, 188, 5, 0.1);
}

.service-orange h3 {
    color: #FBBC05;
}

.service-orange .feature-item i {
    color: #FBBC05;
    background-color: rgba(251, 188, 5, 0.1);
}

.service-orange .btn-view {
    background-color: #FBBC05;
    color: #fff;
}

.service-red::before {
    background: linear-gradient(to right, #EA4335, #F47C72);
}

.service-red .service-icon {
    color: #EA4335;
    background-color: rgba(234, 67, 53, 0.1);
}

.service-red h3 {
    color: #EA4335;
}

.service-red .feature-item i {
    color: #EA4335;
    background-color: rgba(234, 67, 53, 0.1);
}

.service-red .btn-view {
    background-color: #EA4335;
    color: #fff;
}

.service-teal::before {
    background: linear-gradient(to right, #00BCD4, #4DD0E1);
}

.service-teal .service-icon {
    color: #00BCD4;
    background-color: rgba(0, 188, 212, 0.1);
}

.service-teal h3 {
    color: #00BCD4;
}

.service-teal .feature-item i {
    color: #00BCD4;
    background-color: rgba(0, 188, 212, 0.1);
}

.service-teal .btn-view {
    background-color: #00BCD4;
    color: #fff;
}

/* Button hover effect */
.btn-view:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8));
    opacity: 0;
    transition: all 0.4s ease;
}

.service-blue:hover {
    background: linear-gradient(135deg, #fff, #f0f4ff);
}

.service-green:hover {
    background: linear-gradient(135deg, #fff, #f0fff4);
}

.service-purple:hover {
    background: linear-gradient(135deg, #fff, #f5f0ff);
}

.service-orange:hover {
    background: linear-gradient(135deg, #fff, #fffbf0);
}

.service-red:hover {
    background: linear-gradient(135deg, #fff, #fff0f0);
}

.service-teal:hover {
    background: linear-gradient(135deg, #fff, #f0fcff);
}

/* About Section */
.about-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper img {
    border-radius: 20px;
    transition: all 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background-color: var(--primary-color);
    color: #000;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transform: rotate(-5deg);
    z-index: 2;
}

.experience-badge .years {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.about-content {
    padding-left: 20px;
}

.about-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.about-subtitle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.about-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    margin-bottom: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.feature-icon i {
    color: var(--primary-color);
    font-size: 18px;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.feature-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.about-cta {
    display: flex;
    gap: 15px;
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #000;
}

/* Certification Section */
.certification-section {
    padding: 80px 0;
    background-color: #fff;
}

.certification-box {
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.certification-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cert-image {
    max-height: 100px;
    margin-bottom: 20px;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    position: relative;
}

.booking-section .section-title {
    color: var(--accent-color);
}

.booking-form {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.booking-form .form-control {
    margin-bottom: 15px;
    border-radius: 5px;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.booking-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

.booking-form .btn {
    padding: 12px 15px;
    border-radius: 5px;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--light-color);
    font-weight: bold;
    transition: all 0.3s ease;
}

.booking-form .btn:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    height: 100%;
    color: var(--text-color);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-list li i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.emergency-service {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

.emergency-service h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* Footer */
.site-footer {
    background-color: var(--accent-color);
    color: var(--light-color);
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h3 {
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-social {
    list-style: none;
    padding: 0;
    display: flex;
    margin-top: 20px;
}

.footer-social li {
    margin-right: 15px;
}

.footer-social li a {
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social li a:hover {
    color: var(--primary-color);
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links ul li {
    margin-bottom: 10px;
}

.quick-links ul li a {
    color: #ccc;
    transition: all 0.3s ease;
}

.quick-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact li i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.footer-contact li a {
    color: #ccc;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.footer-bottom-links li {
    margin-left: 20px;
}

.footer-bottom-links li a {
    color: #ccc;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 15px;
    }
    
    .call-btn {
        margin-top: 10px;
        margin-left: 0;
        display: inline-block;
    }
    
    .hero-section {
        padding: 80px 0;
        text-align: center;
    }
    
    .hero-section img {
        margin-top: 30px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .top-contact, .top-social {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .top-social {
        margin-top: 10px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-widget h3 {
        font-size: 1.5rem;
    }
    
    .footer-bottom p, .footer-bottom-links {
        text-align: center;
        justify-content: center;
    }
    
    .footer-bottom-links li {
        margin: 0 10px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section h2 {
        font-size: 1.5rem;
    }
    
    .features-section, .brands-section, .services-section, .about-section, .certification-section, .booking-section {
        padding: 60px 0;
    }
    
    .cta-buttons .btn {
        display: block;
        margin-bottom: 10px;
        width: 100%;
    }
    
    .booking-form, .contact-info {
        padding: 20px;
    }
}

/* Water Animation */
.water-animation {
    position: relative;
    overflow: hidden;
}

.water-animation::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    animation: water-wave 10s infinite linear;
    z-index: 1;
    pointer-events: none;
}

.water-animation::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    animation: water-wave 15s infinite linear;
    animation-delay: -5s;
    z-index: 2;
    pointer-events: none;
}

@keyframes water-wave {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Water Drop Animation */
.water-drop {
    position: relative;
    display: inline-block;
}

.water-drop::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation: water-drop 3s infinite;
    opacity: 0;
}

@keyframes water-drop {
    0% {
        top: -10px;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Auto Animation for Elements */
.animated-element {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Water Ripple Effect */
.water-ripple {
    position: relative;
    overflow: hidden;
}

.water-ripple::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    animation: ripple 2s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

/* Contact Cards Styles */
.contact-cards {
    margin-bottom: 30px;
}

.contact-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.card-icon i {
    font-size: 28px;
}

.card-call .card-icon {
    background-color: rgba(103, 58, 183, 0.1);
    color: #673AB7;
}

.card-visit .card-icon {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
}

.card-email .card-icon {
    background-color: rgba(0, 200, 83, 0.1);
    color: #00C853;
}

.card-follow .card-icon {
    background-color: rgba(255, 193, 7, 0.1);
    color: #FFC107;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-card p {
    margin-bottom: 5px;
    color: #666;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:nth-child(1) {
    background-color: #3b5998;
}

.social-icons a:nth-child(2) {
    background-color: #e1306c;
}

.social-icons a:nth-child(3) {
    background-color: #25d366;
}

.social-icons a:nth-child(4) {
    background-color: #ff0000;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Contact Form Styles */
.contact-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.contact-form .form-control {
    border-radius: 5px;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

.send-message-btn {
    padding: 12px 20px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.send-message-btn i {
    margin-left: 8px;
}

.send-message-btn:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1da851;
    color: #fff;
    transform: scale(1.1);
}

.whatsapp-float i {
    margin-top: 0;
}

/* Call Floating Button */
.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #0088cc;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.call-float:hover {
    background-color: #006699;
    color: #fff;
    transform: scale(1.1);
}

.call-float i {
    margin-top: 0;
}

/* Announcement Bar Styles */
.announcement-bar {
    background: linear-gradient(90deg, #FFD700, #FFC107);
    color: #000;
    padding: 8px 0;
    font-weight: 600;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    display: inline-block;
    padding: 0 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.marquee-content i {
    margin-right: 8px;
    color: #000;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Enhanced Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.feature-card {
    position: relative;
    height: 100%;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    background-color: #fff;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    z-index: -1;
    transition: all 0.4s ease;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.hover-content {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    padding: 15px;
    transition: all 0.4s ease;
    opacity: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover .hover-content {
    bottom: 20px;
    opacity: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(0.8);
}

.feature-card:hover h3,
.feature-card:hover p {
    transform: translateY(-10px);
}

/* Card Color Variations */
.card-blue {
    border-top: 4px solid #4285F4;
}

.card-blue .feature-icon {
    color: #4285F4;
    background-color: rgba(66, 133, 244, 0.1);
}

.card-green {
    border-top: 4px solid #34A853;
}

.card-green .feature-icon {
    color: #34A853;
    background-color: rgba(52, 168, 83, 0.1);
}

.card-orange {
    border-top: 4px solid #FBBC05;
}

.card-orange .feature-icon {
    color: #FBBC05;
    background-color: rgba(251, 188, 5, 0.1);
}

.card-purple {
    border-top: 4px solid #A142F4;
}

.card-purple .feature-icon {
    color: #A142F4;
    background-color: rgba(161, 66, 244, 0.1);
}

.card-red {
    border-top: 4px solid #EA4335;
}

.card-red .feature-icon {
    color: #EA4335;
    background-color: rgba(234, 67, 53, 0.1);
}

.card-teal {
    border-top: 4px solid #00BCD4;
}

.card-teal .feature-icon {
    color: #00BCD4;
    background-color: rgba(0, 188, 212, 0.1);
}

.card-yellow {
    border-top: 4px solid #FFC107;
}

.card-yellow .feature-icon {
    color: #FFC107;
    background-color: rgba(255, 193, 7, 0.1);
}

.card-pink {
    border-top: 4px solid #E91E63;
}

.card-pink .feature-icon {
    color: #E91E63;
    background-color: rgba(233, 30, 99, 0.1);
}

.feature-card .btn {
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-blue:hover {
    background: linear-gradient(135deg, #4285F4, #5C9CFF);
}

.card-green:hover {
    background: linear-gradient(135deg, #34A853, #5CCA7B);
}

.card-orange:hover {
    background: linear-gradient(135deg, #FBBC05, #FCD259);
}

.card-purple:hover {
    background: linear-gradient(135deg, #A142F4, #C282FF);
}

.card-red:hover {
    background: linear-gradient(135deg, #EA4335, #F47C72);
}

.card-teal:hover {
    background: linear-gradient(135deg, #00BCD4, #4DD0E1);
}

.card-yellow:hover {
    background: linear-gradient(135deg, #FFC107, #FFD54F);
}

.card-pink:hover {
    background: linear-gradient(135deg, #E91E63, #F48FB1);
}

.feature-card:hover h3,
.feature-card:hover p {
    color: #fff;
}

/* Enhanced Footer Styles */
.footer-section {
    background-color: #222;
    color: #fff;
    position: relative;
}

.footer-top {
    padding: 70px 0 40px;
    position: relative;
    background: url('../images/wave.png') no-repeat bottom center/100%;
    background-size: 100% 50px;
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.footer-logo h2 {
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-logo h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #FFD700;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-heading {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: #fff;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #FFD700;
}

.footer-social {
    margin-top: 25px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.social-label {
    font-weight: 600;
    margin-right: 15px;
    color: #ddd;
}

.footer-social .social-icons {
    display: flex;
}

.footer-social .social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social .facebook {
    background-color: #3b5998;
}

.footer-social .instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social .whatsapp {
    background-color: #25d366;
}

.footer-social .youtube {
    background-color: #ff0000;
}

.footer-social .social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.footer-link-item {
    display: flex;
    align-items: center;
}

.footer-link-item i {
    color: #FFD700;
    margin-right: 10px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.footer-link-item a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-link-item:hover i {
    transform: translateX(5px);
}

.footer-link-item:hover a {
    color: #FFD700;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-item .icon-box {
    min-width: 40px;
    height: 40px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-item .icon-box i {
    color: #FFD700;
    font-size: 16px;
}

.contact-item .content {
    flex: 1;
}

.contact-item .label {
    display: block;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 5px;
    font-size: 14px;
}

.contact-item a, 
.contact-item p {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    font-size: 15px;
    margin-bottom: 3px;
}

.contact-item a:hover {
    color: #FFD700;
}

.copyright {
    margin: 0;
    color: #ddd;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.payment-label {
    margin-right: 15px;
    color: #ddd;
    font-weight: 600;
    font-size: 14px;
}

.payment-icons {
    display: flex;
    align-items: center;
}

.payment-icons i {
    font-size: 24px;
    margin-left: 10px;
    color: #ddd;
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: #FFD700;
    transform: scale(1.1);
}

/* Reviews Section Styles */
.reviews-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.review-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.4s ease;
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '\201C'; /* Opening quote mark */
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 80px;
    color: rgba(255, 215, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.review-rating {
    margin-bottom: 20px;
}

.review-rating i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 2px;
}

.review-text {
    margin-bottom: 20px;
}

.review-text p {
    color: #555;
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
}

.review-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name-initials {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    line-height: 1;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
    font-weight: 600;
}

.author-info p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.view-all-btn:hover {
    background-color: #000;
    color: var(--primary-color);
    border-color: #000;
    transform: translateY(-5px);
}

.view-all-btn i {
    transition: all 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Reviews Page Styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/header-bg.jpg') no-repeat center center/cover;
    padding: 80px 0;
    color: #fff;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-item, .breadcrumb-item a {
    color: #ddd;
    font-size: 16px;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #ddd;
}

.reviews-content {
    padding: 80px 0;
}

.overall-rating {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.rating-stars {
    margin-bottom: 10px;
}

.rating-stars i {
    color: var(--primary-color);
    font-size: 20px;
    margin: 0 2px;
}

.rating-text {
    font-size: 14px;
    color: #777;
}

.submit-review-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.submit-review-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.submit-review-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.submit-review-card p {
    margin-bottom: 30px;
    color: #666;
}

.rating-select {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.rating-select i {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rating-select i.fas {
    color: var(--primary-color);
}

.rating-select i:hover {
    transform: scale(1.2);
}

.review-form label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
}

.pagination {
    margin-top: 40px;
}

.pagination .page-link {
    color: var(--dark-color);
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.pagination .page-link:hover {
    background-color: rgba(255, 215, 0, 0.2);
    color: var(--dark-color);
}