﻿/*
Theme Name: كشف تسربات القصيم
Theme URI: https://example.com/kashf-tasrobat
Author: Developer
Author URI: https://example.com
Description: قالب ووردبريس احترافي لشركة كشف تسربات المياه بالقصيم - يدعم RTL بالكامل
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kashf-tasrobat
Tags: rtl-language-support, custom-menu, custom-logo, featured-images, theme-options

قالب ووردبريس متخصص لشركات كشف تسربات المياه
*/
/* ============================================
   ÙƒØ´Ù ØªØ³Ø±Ø¨Ø§Øª Ø§Ù„Ù…ÙŠØ§Ù‡ Ø¨Ø§Ù„Ù‚ØµÙŠÙ… - Styles
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #0066CC;
    --primary-dark: #004C99;
    --primary-light: #3399FF;
    --secondary-color: #FF6B35;
    --secondary-dark: #E55A2B;
    --accent-color: #00BFA6;
    --dark-color: #1A1A2E;
    --dark-light: #2D2D44;
    --light-color: #F8F9FA;
    --white: #FFFFFF;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --whatsapp-color: #25D366;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-light) 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.3;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Top CTA Bar
   ============================================ */
.top-cta-bar {
    background: var(--gradient-dark);
    padding: 10px 0;
    color: var(--white);
}

.top-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-cta-content span {
    font-size: 14px;
    opacity: 0.9;
}

.top-cta-content i {
    margin-left: 8px;
    color: var(--secondary-color);
}

.top-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.top-phone:hover {
    background: var(--secondary-dark);
    transform: scale(1.05);
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.logo i {
    font-size: 32px;
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--gray-700);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
}

.btn-whatsapp {
    background: var(--whatsapp-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-3px);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp-light {
    background: transparent;
    border: 2px solid var(--whatsapp-color);
    color: var(--whatsapp-color);
}

.btn-whatsapp-light:hover {
    background: var(--whatsapp-color);
    color: var(--white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 20px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(135deg, #0066CC 0%, #004080 50%, #002B55 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature i {
    color: var(--accent-color);
    font-size: 20px;
}

.hero-feature span {
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 25px 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-600);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ============================================
   Section Styles
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light {
    color: var(--white);
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card.featured::before {
    background: var(--secondary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.2) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-card.featured .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.service-card.featured .service-link {
    color: var(--white);
}

.service-link i {
    transition: var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(-5px);
}

/* ============================================
   Detailed Services Section
   ============================================ */
.services-detailed {
    padding: 100px 0;
}

.detailed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.detailed-grid.reverse {
    direction: ltr;
}

.detailed-grid.reverse .detailed-content {
    direction: rtl;
}

.detailed-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.detailed-content p {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--gray-600);
}

.check-list {
    margin-bottom: 30px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
}

.check-list li i {
    color: var(--accent-color);
    font-size: 18px;
}

.check-list.light li {
    color: var(--white);
}

.detailed-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   Best Company Section
   ============================================ */
.best-company {
    padding: 100px 0;
    background: var(--light-color);
}

.best-company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.best-company-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.best-company-text h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.best-company-text p {
    color: var(--gray-600);
    line-height: 1.8;
}

.certifications {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.cert-badge i {
    font-size: 32px;
    color: var(--secondary-color);
}

.cert-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.best-company-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   Repair Section
   ============================================ */
.repair-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: var(--white);
}

.repair-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.repair-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.repair-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.repair-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.repair-icon i {
    font-size: 24px;
    color: var(--white);
}

.repair-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
}

.repair-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* ============================================
   Tank Section
   ============================================ */
.tank-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
}

.tank-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tank-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.tank-content h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 20px;
}

.tank-content h3 {
    font-size: 24px;
    color: var(--white);
    margin: 30px 0 15px;
}

.tank-content p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing-section {
    padding: 100px 0;
    background: var(--light-color);
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.ribbon {
    position: absolute;
    top: 20px;
    left: -35px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 40px;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.pricing-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.pricing-card.featured .pricing-icon {
    background: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured .pricing-icon i {
    color: var(--white);
}

.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.pricing-card.featured h3 {
    color: var(--white);
}

.pricing-card p {
    color: var(--gray-600);
    line-height: 1.8;
}

.pricing-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-box {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-box p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Areas Section
   ============================================ */
.areas-section {
    padding: 100px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.area-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.area-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.area-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 102, 204, 0.1) 100%);
}

.area-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.area-icon i {
    font-size: 24px;
    color: var(--white);
}

.area-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.area-card p {
    color: var(--gray-600);
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.area-tag {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    padding: 100px 0;
    background: var(--gradient-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-avatar i {
    color: var(--white);
    font-size: 20px;
}

.customer-info h4 {
    font-size: 16px;
    color: var(--dark-color);
    margin-bottom: 2px;
}

.customer-info span {
    font-size: 13px;
    color: var(--gray-500);
}

.stars {
    margin-bottom: 15px;
}

.stars i {
    color: #FFD700;
    font-size: 14px;
    margin-left: 2px;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-600);
}

.testimonials-cta {
    text-align: center;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.testimonials-cta p {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
}

/* ============================================
   Final CTA Section
   ============================================ */
.final-cta {
    padding: 100px 0;
    background: var(--gradient-dark);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
}

.final-cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item div {
    text-align: right;
}

.contact-item span {
    display: block;
    font-size: 14px;
    opacity: 0.7;
}

.contact-item a {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-color);
    padding: 80px 0 20px;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-brand .logo i {
    color: var(--secondary-color);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer ul li a:hover {
    color: var(--secondary-color);
    padding-right: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ============================================
   Floating CTA Buttons
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.float-btn:hover {
    transform: scale(1.1);
}

.call-btn {
    background: var(--gradient-primary);
}

.whatsapp-btn {
    background: var(--whatsapp-color);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 102, 204, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0);
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
        margin-top: 40px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 30px;
        justify-content: center;
    }

    .services-grid,
    .repair-grid,
    .pricing-features,
    .areas-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detailed-grid,
    .best-company-content,
    .tank-grid {
        grid-template-columns: 1fr;
    }

    .detailed-grid.reverse {
        direction: rtl;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-cta-content {
        justify-content: center;
        text-align: center;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .services-grid,
    .repair-grid,
    .pricing-features,
    .areas-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .certifications {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .final-cta-content h2 {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    .floating-cta {
        bottom: 20px;
        left: 20px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 16px;
    }

    .btn-xl {
        padding: 16px 32px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0 100px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .detailed-content h2,
    .tank-content h2 {
        font-size: 24px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h3 {
        font-size: 22px;
    }
}
/* ============================================
   WordPress Pages Styles
   ============================================ */

/* Page Header Section */
.page-header-section {
    background: var(--gradient-primary);
    padding: 80px 0 60px;
    color: var(--white);
    text-align: center;
}

.page-header-section .page-title {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

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

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs .current {
    color: var(--secondary-color);
}

/* Page Content Section */
.page-content-section,
.single-content-section,
.archive-content-section,
.search-results-section {
    padding: 80px 0;
}

.page-content-section .container,
.single-content-section .container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
}

.content-wrapper {
    max-width: 100%;
}

.entry-content {
    font-size: 17px;
    line-height: 1.9;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin: 30px 0 15px;
}

.entry-content img {
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-right: 30px;
}

.entry-content li {
    margin-bottom: 10px;
}

.featured-image {
    margin-bottom: 30px;
}

.featured-image img {
    border-radius: var(--radius-lg);
    width: 100%;
}

/* Single Post Styles */
.single-post .entry-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 30px;
}

.single-post .entry-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 14px;
}

.single-post .entry-meta i {
    color: var(--primary-color);
}

.post-tags {
    padding: 20px 0;
    border-top: 1px solid var(--gray-200);
    margin-top: 30px;
}

.post-tags i {
    color: var(--primary-color);
    margin-left: 10px;
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid var(--gray-200);
    margin-top: 30px;
}

.post-navigation a {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-navigation a:hover {
    color: var(--primary-dark);
}

.nav-next {
    text-align: left;
    justify-content: flex-end;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.post-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.post-thumbnail {
    overflow: hidden;
    height: 200px;
}

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

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

.post-content {
    padding: 25px;
}

.post-content .entry-header {
    margin-bottom: 15px;
}

.post-content .entry-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.post-content .entry-title a:hover {
    color: var(--primary-color);
}

.post-content .entry-meta {
    font-size: 13px;
    color: var(--gray-500);
}

.post-content .entry-meta i {
    margin-left: 5px;
}

.entry-excerpt {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.read-more:hover {
    color: var(--primary-dark);
}

.read-more i {
    transition: var(--transition-fast);
}

.read-more:hover i {
    transform: translateX(-5px);
}

/* Pagination */
.pagination,
.nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination .page-numbers,
.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    color: var(--gray-700);
    font-weight: 600;
    transition: var(--transition-fast);
}

.pagination .page-numbers:hover,
.pagination a:hover,
.pagination .current {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 80px 20px;
    background: var(--light-color);
    border-radius: var(--radius-lg);
}

.no-posts i {
    font-size: 60px;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.no-posts h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.no-posts p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

/* 404 Page */
.error-404-section {
    padding: 100px 0;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.error-icon i {
    font-size: 50px;
    color: var(--white);
}

.error-code {
    font-size: 120px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
}

.error-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.error-content p {
    color: var(--gray-600);
    font-size: 18px;
    margin-bottom: 30px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Search Form */
.search-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.search-form .search-field {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--gray-300);
    border-radius: 50px 0 0 50px;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: var(--transition-fast);
}

.search-form .search-field:focus {
    border-color: var(--primary-color);
}

.search-form .search-submit {
    padding: 15px 25px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: var(--transition-normal);
}

.search-form .search-submit:hover {
    opacity: 0.9;
}

.search-form-wrapper {
    margin-top: 30px;
}

.search-form-wrapper h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.results-count {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 30px;
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar .widget {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 25px;
}

.sidebar .widget h4 {
    font-size: 18px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.sidebar .contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar .contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition-normal);
}

.sidebar .phone-btn {
    background: var(--gradient-primary);
    color: var(--white);
}

.sidebar .whatsapp-btn {
    background: var(--whatsapp-color);
    color: var(--white);
}

.sidebar .contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.sidebar .services-widget ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar .services-widget li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
}

.sidebar .services-widget i {
    color: var(--accent-color);
}

.sidebar .areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sidebar .area-tag {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* Comments */
.comments-area {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}

.comments-title {
    font-size: 24px;
    margin-bottom: 30px;
}

.comment-list {
    margin-bottom: 40px;
}

.comment-list li {
    margin-bottom: 25px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition-fast);
}

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

.comment-form p {
    margin-bottom: 20px;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.contact-info .contact-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.contact-info .contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info .contact-icon.whatsapp {
    background: var(--whatsapp-color);
}

.contact-info .contact-icon i {
    font-size: 24px;
    color: var(--white);
}

.contact-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-details a,
.contact-details span {
    color: var(--gray-600);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-cta {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.contact-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-cta p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
}

.trust-badge i {
    color: var(--accent-color);
    font-size: 20px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.cta-section .cta-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-section .cta-box h3 {
    color: var(--white);
}

.cta-section .cta-box p {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive WordPress Pages */
@media (max-width: 1024px) {
    .page-content-section .container,
    .single-content-section .container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header-section .page-title {
        font-size: 32px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .nav-next {
        justify-content: center;
    }
    
    .error-code {
        font-size: 80px;
    }
    
    .contact-cta {
        padding: 30px 20px;
    }
    
    .trust-badges {
        gap: 20px;
    }
}

