/*
Theme Name: Precisi Tile Solutions
Description: A premium WordPress theme for Precisi Tile Solutions featuring TikTok integration, Google Reviews, and modern design.
Version: 1.0
Author: Precisi Tile Solutions
Author URI: https://precisitiles.com
Text Domain: precisitile
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

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

html {
    scroll-behavior: auto; /* Disable smooth scrolling */
    background: transparent; /* Ensure no white background */
    margin: 0;
    padding: 0;
}

/* Ensure body doesn't interfere with fixed elements */
body {
    transform: none !important;
    position: relative !important;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: transparent; /* Ensure no white background */
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 145vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: transparent; /* Removed white background */
    margin-bottom: 0; /* Ensure no bottom margin */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* Removed white background */
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    background-image: url('images/MAIN PIC.jpg');
    background-size: 110% auto;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* Remove the pseudo-element approach */
.hero-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 246, 243, 0.1) 0%, rgba(232, 228, 223, 0.1) 100%);
    /* Remove border-radius so widget's outward curve is visible */
}

/* Top-left navigation */
.top-left-nav {
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: 30;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 58px; /* Match logo height for better alignment */
}

.company-text {
    font-weight: 0;
    font-size: 1.5rem;
    color: white;
    letter-spacing: 0.3px;
}

.logo-link {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.company-logo {
    height: 60px;
    width: auto;
    max-width: 127px;
    object-fit: contain;
    display: block;
    position: relative;
    top: 2.3px; /* Adjust this value to move logo up/down */
}

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

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 700; /* Bold weight like the hero title */
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif; /* Same font as hero title */
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
}

.nav-menu a:hover {
    color: #bbb9b6;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-menu a.active {
    color: #8B7355;
    background: rgba(255, 255, 255, 0.15);
}

/* TikTok Section Styling */
.tiktok-section {
    position: absolute;
    top: 20px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 20;
    max-width: 900px;
}

.tiktok-content h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.tiktok-video {
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tiktok-video iframe {
    display: block;
    width: 100%;
    height: 400px;
    border-radius: 15px;
}

.tiktok-content p {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1rem;
}

.tiktok-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #8B7355;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.tiktok-link:hover {
    color: #A0522D;
}

.tiktok-link i {
    font-size: 1.2rem;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 3rem;
    position: relative;
    z-index: 10; /* Above background, below widgets */
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700; /* Bold weight like navigation links */
    line-height: 1.1;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 15;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: white;
    font-weight: 400;
    line-height: 1.4;
    max-width: 250px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    position: absolute;
    top: 400px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 15;
}

.hero-description p {
    font-size: 1.2rem;
    color: white;
    font-weight: 400;
    line-height: 1.5;
    max-width: 500px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    top: -499px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background: linear-gradient(135deg, #06c0fe 0%, #06c0fe 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-button.secondary:hover {
    background: #ffffff;
    color: white;
    transform: translateY(-2px);
}

.cta-button i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(3px);
}

/* Nature Section */
.nature-section {
    padding: 0 2rem 6rem 2rem; /* Removed top padding */
    background-image: url('images/blacktile.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    margin-top: 0; /* Ensure no top margin */
}

/* Google Reviews Widget */
.google-reviews-widget {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 10px 20px 40px 20px;
    position: relative;
}

/* Reviews Content - Fixed position at top */
.reviews-content {
    position: relative;
    z-index: 10;
    background: transparent;
    padding: 2rem 0 1rem 0;
    margin-top: 0;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 1rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive grid for 6 tiles - wider layout */
@media (min-width: 1400px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1000px) and (max-width: 1399px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 999px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 600px;
    }
}

/* Review Cards */
.review-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, white,);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.1);
}

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

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285f4, #34a853);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.reviewer-details h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.stars {
    color: #fbbc04;
    font-size: 1.1rem;
    margin-top: 0.25rem;
}

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

/* Review Text */
.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
    max-height: 120px !important; /* Fixed height for consistency */
    overflow-y: auto !important; /* Enable scrolling */
    padding-right: 8px; /* Space for scrollbar */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #ccc #f5f5f5; /* Firefox */
    background: linear-gradient(transparent 0%, transparent 85%, rgba(255,255,255,0.8) 100%);
    transition: background 0.3s ease;
    word-wrap: break-word;
    white-space: normal;
}

.review-text:hover {
    background: transparent;
}

/* Custom scrollbar for webkit browsers */
.review-text::-webkit-scrollbar {
    width: 8px;
}

.review-text::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.review-text::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 4px;
}

.review-text::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* ========================================
   MOBILE RESPONSIVE DESIGN
   ======================================== */

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100;
    position: relative;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border-radius: 10px;
    display: block;
    text-align: center;
}

.mobile-menu a:hover {
    color: #8B7355;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.mobile-menu a.active {
    color: #8B7355;
    background: rgba(255, 255, 255, 0.15);
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Mobile Hero Section */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .hero-bg-image {
        background-size: cover;
        background-position: center center;
    }
    
    .top-left-nav {
        top: 15px;
        left: 15px;
        right: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 50;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        font-size: 1.2rem;
        padding: 0.5rem;
    }
    
    .company-logo {
        height: 35px;
        max-width: 80px;
    }
    
    .hero-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .hero-stats {
        display: none; /* Hide stats on mobile for cleaner look */
    }
    
    .hero-description {
        margin: 1rem 0 2rem 0;
    }
    
    .hero-description p {
        font-size: 0.9rem;
        max-width: 100%;
        padding: 0 0.5rem;
        line-height: 1.4;
    }
    
    .bottom-cta {
        padding: 1rem 0 2rem 0;
        text-align: center;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 200px;
        border-radius: 30px;
    }
}

/* Mobile TikTok Section */
@media (max-width: 768px) {
    .tiktok-section {
        position: static;
        margin: 1rem;
        max-width: none;
        border-radius: 12px;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .tiktok-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        text-align: center;
    }
    
    .tiktok-video iframe {
        height: 200px;
        border-radius: 8px;
    }
    
    .tiktok-content p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .tiktok-link {
        font-size: 0.9rem;
        justify-content: center;
        padding: 0.6rem 1rem;
    }
}

/* Mobile Reviews Section */
@media (max-width: 768px) {
    .nature-section {
        padding: 2rem 1rem;
    }
    
    .reviews-content h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        text-align: center;
    }
    
    .reviews-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
    
    .review-card {
        padding: 1.2rem;
        min-height: auto;
        margin: 0;
    }
    
    .review-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .reviewer-info {
        flex: 1;
    }
    
    .google-logo {
        align-self: flex-start;
        margin-top: 0.3rem;
    }
    
    .review-text {
        font-size: 0.85rem;
        max-height: 100px;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .review-date {
        text-align: right;
        font-size: 0.9rem;
    }
    
    .google-link {
        padding: 1rem 2rem;
        font-size: 1rem;
        margin-top: 1rem;
    }
}

/* Mobile Products/Services Section */
@media (max-width: 768px) {
    .products-section {
        padding: 2rem 1rem;
    }
    
    .products-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .products-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .products-header p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 1.2rem;
        text-align: center;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .product-info p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .explore-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 20px;
    }
}

/* Mobile Services Page */
@media (max-width: 768px) {
    .services-overview {
        padding: 2rem 1rem;
    }
    
    .services-intro h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .services-intro p {
        font-size: 1rem;
    }
    
    .schluter-section {
        padding: 2rem 1rem;
    }
    
    .schluter-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .schluter-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .schluter-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .schluter-text ul {
        font-size: 0.9rem;
    }
    
    .schluter-img {
        width: 100%;
        height: auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
}

/* Mobile Gallery Page */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .gallery-overlay h3 {
        font-size: 1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
    
    .no-gallery h3 {
        font-size: 1.3rem;
    }
    
    .no-gallery p {
        font-size: 0.9rem;
    }
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
}

/* Tablet Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        min-height: 80vh;
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.1rem;
        max-width: 80%;
    }
    
    .top-left-nav {
        top: 20px;
        left: 20px;
        right: 20px;
    }
    
    .company-logo {
        height: 45px;
        max-width: 100px;
    }
    
    .tiktok-section {
        margin: 2rem 1.5rem;
        padding: 1.5rem;
    }
    
    .tiktok-video iframe {
        height: 300px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .tiktok-section {
        max-width: 500px;
        right: 25px;
        top: 25px;
        padding: 1.5rem;
    }
    
    .tiktok-video iframe {
        height: 350px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .booking-form {
        padding: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

/* Large Mobile Devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
        max-height: 80px;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .tiktok-video iframe {
        height: 250px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin: 1rem 0;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 2rem;
        margin: 1rem 0;
    }
    
    .tiktok-section {
        position: static;
        margin: 1rem;
    }
    
    .tiktok-video iframe {
        height: 200px;
    }
}

/* Booking Form Styles */
.booking-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B7355;
}

.booking-submit-btn {
    background: linear-gradient(135deg, #8B7355, #A0522D);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.booking-submit-btn:hover {
    background: linear-gradient(135deg, #A0522D, #8B7355);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.booking-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Mobile Form Styles */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1.5rem;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-header p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info h3,
    .scheduler-section h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .contact-details {
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .contact-item i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .scheduler-section {
        padding: 2rem;
    }
    
    .scheduler-section p {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .booking-form {
        padding: 2rem;
        margin-top: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .booking-submit-btn {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
}

.review-date {
    font-size: 0.9rem;
    color: #666;
    text-align: right;
}

/* Reviews Footer */
.reviews-footer {
    text-align: center;
    margin-top: 3rem;
}

.google-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 32px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(66, 133, 244, 0.3);
}

.google-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(66, 133, 244, 0.4);
    background: linear-gradient(135deg, #3367d6, #2d8f47);
}

.google-link i {
    font-size: 1.2rem;
}

.reviews-content h2 {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.reviews-subtitle {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
    font-weight: 400;
}

/* Products Section */
.products-section {
    padding: 4rem 2rem 4rem 2rem;  /* Increased top and bottom padding for more space */
    background: white; /* Changed to white background */
    margin-bottom: 0; /* Ensure no bottom margin */
}

.products-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem; /* Increased bottom margin for more space between text and tiles */
}

.products-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.products-header p {
    font-size: 1.1rem;
    color: #666;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem; /* Increased gap between product cards */
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: none; /* Removed black outline */
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

.product-image {
    height: 280px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.product-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.explore-button {
    background: transparent;
    color: black; /* Changed to black */
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.explore-button:hover {
    color: #333; /* Darker black on hover */
}

.bottom-cta {
    position: absolute;
    bottom: 400px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 20;
}

.bottom-cta .cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 8rem 2rem 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/blacktile.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.services-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.services-overview {
    padding: 6rem 2rem;
    background: white;
}

.services-intro {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.services-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.schluter-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.schluter-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.schluter-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.schluter-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #666;
}

.schluter-text ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.schluter-text li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #555;
}

.schluter-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.schluter-image {
    text-align: center;
}

.schluter-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-grid-section {
    padding: 6rem 2rem;
    background: white;
}

.services-grid-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

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

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.warranty-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.warranty-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.warranty-content h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.warranty-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.warranty-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.warranty-feature {
    text-align: center;
}

.warranty-feature i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.warranty-feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.warranty-feature p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

.services-cta {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .primary-button,
.cta-buttons .secondary-button {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-buttons .primary-button {
    background: #3498db;
    color: white;
    border: 2px solid #3498db;
}

.cta-buttons .primary-button:hover {
    background: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
}

.cta-buttons .secondary-button {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.cta-buttons .secondary-button:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
}

/* Footer Styles */
.footer {
    background: #000;
    color: #fff;
    padding: 1.5rem 0;
    margin-top: 0; /* Removed top margin to eliminate white space */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

.footer-logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    /* Remove the filter to show the actual logo colors */
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #555;
    transform: translateY(-2px);
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-contact {
    text-align: center;
    margin: 1rem 0;
}

.footer-contact p {
    margin: 0.5rem 0;
    color: #fff;
    font-size: 0.9rem;
}

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

.footer-contact a:hover {
    color: #f0f0f0;
}

.footer-copyright {
    display: flex;
    align-items: center;
}

.footer-copyright p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nature-section h2 {
        font-size: 2.5rem;
    }
    
    .story-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-slider-controls {
        display: none;
    }
    
    .hero-stats::before {
        display: none;
    }
    
    /* Adjust background cutoff for mobile */
    .hero-background {
        top: 25px; /* Smaller white margin for mobile */
        left: 25px;
        right: 25px;
        bottom: 25px;
    }
    
    /* Adjust clip-path for mobile */
    .hero-bg-image {
        clip-path: polygon(
            0 0, 0 100%, 100% 100%, 100% 0, 0 0,
            /* Cutout for top-left widget on mobile - exact dimensions */
            25px 25px, 25px 65px, 275px 65px, 275px 25px, 25px 25px
        );
    }
    
    /* Adjust corner effects for mobile */
    .top-left-nav {
        top: 25px; /* Match mobile image margin */
        left: 25px; /* Match mobile image margin */
        width: 250px; /* Smaller for mobile */
        height: 40px; /* Keep same height */
        border-radius: 0 0 20px 0; /* More rounded for mobile */
        padding: 0 1rem; /* Smaller padding for mobile */
    }
    
    .company-name {
        font-size: 0.9rem; /* Smaller for mobile */
        letter-spacing: 0.2px;
    }
    
    .nav-menu {
        gap: 0.8rem; /* Smaller gap for mobile */
    }
    
    .nav-menu a {
        font-size: 0.7rem; /* Smaller for mobile */
    }
    
    .hero::after {
        bottom: 25px; /* Match mobile image margin */
        right: 25px; /* Match mobile image margin */
        width: 60px;
        height: 60px;
        border-radius: 12px 0 0 0; /* Smaller radius for mobile */
    }
    
    .gallery-click {
        bottom: 40px; /* Position relative to image, not screen edge */
        right: 25px; /* Match mobile image margin */
        padding: 10px 15px;
        font-size: 12px;
        z-index: 25; /* Above everything */
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .nature-section h2 {
        font-size: 2rem;
    }
    
    .hero-stats,
    .nature-stats {
        grid-template-columns: 1fr;
    }
    
    .nature-buttons {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Smaller background cutoff for very small screens */
    .hero-background {
        top: 15px; /* Even smaller white margin */
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
    
    /* Adjust clip-path for very small screens */
    .hero-bg-image {
        clip-path: polygon(
            0 0, 0 100%, 100% 100%, 100% 0, 0 0,
            /* Cutout for top-left widget on very small screens - exact dimensions */
            15px 15px, 15px 55px, 195px 55px, 195px 15px, 15px 15px
        );
    }
    
    /* Smaller corner effects for very small screens */
    .top-left-nav {
        top: 15px; /* Match very small screen image margin */
        left: 15px; /* Match very small screen image margin */
        width: 180px; /* Even smaller for very small screens */
        height: 40px; /* Keep same height */
        border-radius: 0 0 15px 0; /* More rounded for very small screens */
        padding: 0 0.8rem; /* Smaller padding for very small screens */
    }
    
    .company-name {
        font-size: 0.8rem; /* Smaller for very small screens */
        letter-spacing: 0.1px;
    }
    
    .nav-menu {
        gap: 0.6rem; /* Smaller gap for very small screens */
    }
    
    .nav-menu a {
        font-size: 0.6rem; /* Smaller for very small screens */
    }
    
    .hero::after {
        bottom: 15px; /* Match very small screen image margin */
        right: 15px; /* Match very small screen image margin */
        width: 40px;
        height: 40px;
        border-radius: 10px 0 0 0; /* Smaller radius for very small screens */
    }
    
    .gallery-click {
        bottom: 25px; /* Position relative to image */
        right: 15px; /* Match very small screen image margin */
        padding: 8px 12px;
        font-size: 11px;
        z-index: 25; /* Above everything */
    }
}

/* Container class for WordPress */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Gallery Grid for Gallery Page */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.no-gallery {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.no-gallery h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}