@charset "utf-8";
/* CSS Document */

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

a {
    text-decoration: none;
    color: #007BFF;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Image */
.header-image {
    background: url('https://serranoscleaningservices.com/images/Mobilehomes/54522285_2675172372509857_5080712871105527808_n') center/cover no-repeat;
    height: 300px;
    position: relative;
}

.header-image h1  {
    position: absolute;
    bottom: 50px;
    left: 30px;
    color: white;
    font-size: 2.5rem;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.header-image p  {
    position: absolute;
    bottom: 10px;
    left: 30px;
    color: white;
    font-size: 1.2rem;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* Menu */
nav {
    background: #fff;
    border-bottom: 1px solid #ccc;
    overflow-x: auto;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 999;
}

nav a {
    display: inline-block;
    padding: 15px 20px;
    color: #333;
    font-weight: bold;
}

nav a:hover {
    background-color: #f0f0f0;
}

/* Section Title */
.section-title {
    font-size: 2rem;
    margin: 40px 0 20px;
    text-align: center;
}

/* Cards Section (Before/After Photos) */
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 300px;
    text-align: center;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card p {
    padding: 15px;
}

/* Reviews Section */
.review-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}

.review-links a img {
    width: 120px;
    transition: transform 0.2s;
}

.review-links a:hover img {
    transform: scale(1.1);
}

@media (min-width: 1000px) {
	.review-links a img {
    width: 85px;
    transition: transform 0.2s;
}
}

/* About Owners / Why Choose Us */
.section-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    padding: 0 10px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
}

/* Floating Text Button */
.floating-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #28a745;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.floating-button:hover {
    background-color: #218838;
}

/* Responsive */
@media (max-width: 768px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .review-links {
        flex-direction: column;
        align-items: center;
    }

    .floating-button {
        padding: 12px 16px;
        font-size: 14px;
    }
}


/* Blog Links Section */
.blog-section {
    padding: 40px 0;
    background-color: #fff;
}

.blog-section .section-title {
    margin-bottom: 20px;
}

.blog-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.blog-card {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    text-align: left;
}

.blog-card:hover {
    transform: translateY(-5px);
    background-color: #eef6ff;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 0.95rem;
    color: #555;
}

.blog-card a {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    color: #007BFF;
}

/* YouTube Video Section */
.video-section {
    padding: 40px 0;
    background-color: #f0f8ff;
    text-align: center;
}

.video-section .section-title {
    margin-bottom: 30px;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.video-grid iframe {
    width: 100%;
    max-width: 500px;
    height: 280px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* YouTube Subscribe Widget Section */
.subscribe-section {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

.subscribe-widget {
    display: inline-block;
    background-color: #ff0000;
    padding: 15px 25px;
    color: #fff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}

.subscribe-widget:hover {
    background-color: #cc0000;
}

.subscribe-widget i {
    margin-right: 10px;
}



/* Product Purchase Section */
.product-section {
    padding: 40px 0;
    background-color: #fff;
    text-align: center;
}

.product-section .section-title {
    margin-bottom: 30px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.product-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 280px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.product-card .price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 15px;
}

.product-card a.buy-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.product-card a.buy-button:hover {
    background-color: #0056b3;
}


/* Booking Cards Section */
.booking-section {
    padding: 40px 0;
    background-color: #f7fafd;
    text-align: center;
}

.booking-section .section-title {
    margin-bottom: 30px;
}

/* Responsive Grid Layout */
.booking-cards {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(2, 1fr); /* Default: 2 columns on mobile */
    padding: 0 20px;
}

@media (min-width: 768px) {
    .booking-cards {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on tablets/desktops */
    }
}

/* Booking Card Styling */
.booking-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 20px;
    text-align: center;
    transition: transform 0.2s;
    border-top: 5px solid #007BFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.booking-card:hover {
    transform: translateY(-5px);
}

.booking-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.booking-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.booking-card a.book-now {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.booking-card a.book-now:hover {
    background-color: #0056b3;
}




/* Reviews Section Wrapper */
#reviews {
  background-color: #fdfdfd;
  padding: 50px 20px;
}

/* Section Title Styling */
#reviews .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

/* Reviews Grid Layout */
.reviews-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(1, 1fr); /* Default: 2 columns (mobile/tablet) */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr); /* Desktop: 4 columns */
  }
}

/* Individual Review Card */
.card2 {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  transition: transform 0.2s ease;
}

.card2:hover {
  transform: translateY(-5px);
}

.card2 img {
  display: inline-block;
  margin-bottom: 10px;
}

.card2 p {
  margin: 0;
}

.card2 strong {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #111;
}

/* Google Map Container */
.map-container {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
}
