/*
Theme Name: LoudIt
Theme URI: https://loudit.com/
Author: Zygo
Author URI: https://loudit.com/
Description: A modern WordPress theme for LoudIt - Sound and Lights Rental Service
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: loudit
Tags: sound-equipment, light-equipment, rental, rtl-language-support, hebrew
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e73be;
    --secondary-color: #0a3d62;
    --accent-color: #ff8c42; /* Orange accent like the example */
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --light-color: #ffffff;
    --font-heading: 'Heebo', sans-serif;
    --font-body: 'Assistant', sans-serif;
    --border-radius: 12px;
    --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, #ff6b1a 100%);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    direction: rtl;
    text-align: right;
    background-color: var(--light-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Modern Style */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    max-height: 50px;
    width: auto;
}

.site-title {
    font-size: 1.8rem;
    margin: 0;
    margin-right: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.main-navigation li {
    margin-right: 2rem;
    position: relative;
}

.main-navigation a {
    color: var(--text-color);
    font-weight: 600;
    padding: 0.75rem 0;
    position: relative;
    transition: var(--transition);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    right: 50%;
    background: var(--gradient-accent);
    transition: var(--transition);
    border-radius: 2px;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after {
    width: 100%;
    right: 0;
}

.main-navigation a:hover {
    color: var(--accent-color);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section - Modern Design */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--bg-dark);
    color: var(--light-color);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(13, 61, 98, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Modern Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--light-color) !important;
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(30, 115, 190, 0.4);
    color: var(--light-color) !important;
    border-color: var(--primary-color);
}

.btn-secondary {
    background: var(--light-color);
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--light-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 115, 190, 0.3);
    border-color: var(--primary-color);
}

/* Section Styling */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    font-size: 2.8rem;
    font-weight: 900;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 2rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

/* About Section */
.about-section {
    background: var(--light-color);
    padding: 8rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-accent);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.1;
}

.about-text h2 {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Services Section */
.services-section {
    background: var(--bg-light);
    position: relative;
    padding: 8rem 0;
}

.services-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient-accent);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    opacity: 0.05;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent-color);
    color: var(--light-color);
    transform: scale(1.1);
}

.service-content {
    padding: 2.5rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Equipment Section */
.equipment-section {
    background: var(--light-color);
    padding: 8rem 0;
}

.equipment-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.category-filter {
    padding: 0.75rem 2rem;
    background: var(--light-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--primary-color);
}

.category-filter.active,
.category-filter:hover {
    background: var(--gradient-accent);
    color: var(--light-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.equipment-item {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.equipment-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--accent-color);
}

.equipment-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-accent);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.equipment-content {
    padding: 2rem;
}

.equipment-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.equipment-specs {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.equipment-price {
    font-weight: 900;
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

/* Pricing Section - Modern Design */
.pricing-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.pricing-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    opacity: 0.05;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    border-top: 4px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--box-shadow-hover);
    border-top-color: var(--accent-color);
}

.pricing-header {
    padding: 3rem 2rem 2rem;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
}

.pricing-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1.2rem;
    opacity: 0.8;
    vertical-align: super;
}

.pricing-period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-content {
    padding: 2.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg-light);
    position: relative;
    padding-right: 2rem;
    transition: var(--transition);
}

.pricing-features li:hover {
    background: var(--bg-light);
    padding-right: 2.5rem;
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    right: 0;
    font-weight: 900;
    font-size: 1.2rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-badge {
    position: absolute;
    top: 5px;
    right: 30px;
    background: var(--gradient-accent);
    color: var(--light-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
    z-index: 2;
}

/* Popular pricing card special styling */
.pricing-card.popular {
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular .pricing-header {
    background: var(--gradient-accent);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--light-color);
    padding: 8rem 0;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    text-align: center;
    padding: 2rem;
}

.testimonial-content {
    font-size: 1.3rem;
    font-style: italic;
    position: relative;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    color: var(--text-color);
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: 10px;
    right: 20px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.testimonial-role {
    color: var(--text-light);
}

/* Recommendations Section - FIXED DESIGN */
.recommendations-section {
    background: var(--bg-light);
    padding: 8rem 0;
    position: relative;
}

.recommendations-section::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--gradient-accent);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    opacity: 0.05;
}

.recommendations-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.recommendation-item {
    background: var(--light-color);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.recommendation-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.recommendation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    transform: scaleX(0);
    transition: var(--transition);
}

.recommendation-item:hover::before {
    transform: scaleX(1);
}

.recommendation-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--light-color);
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
}

.recommendation-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.recommendation-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: var(--bg-dark);
    color: var(--light-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.1;
    top: -150px;
    right: -150px;
}

.cta-title {
    font-size: 3rem;
    color: var(--light-color);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section - FIXED DESIGN */
.contact-section {
    background: var(--light-color);
    padding: 8rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-detail:hover {
    transform: translateX(-5px);
    box-shadow: var(--box-shadow);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1.5rem;
    color: var(--light-color);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-detail span {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.5;
}

.contact-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--light-color);
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
    transform: translateY(-2px);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Footer - FIXED DESIGN */
.site-footer {
    background: var(--bg-dark);
    color: var(--light-color);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-widget h3 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-widget h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    margin-top: 0.5rem;
    border-radius: 2px;
}

.footer-widget p {
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--light-color);
    opacity: 0.8;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateX(-5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--light-color);
}

.social-link:hover {
    background: var(--gradient-accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
    font-size: 2rem;
    color: white;
}

/* Events Page Styles */
.events-section {
    background: var(--light-color);
    padding: 8rem 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.event-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.event-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.event-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-accent);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 0.9rem;
}

.event-content {
    padding: 2.5rem;
}

.event-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.event-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.event-location,
.event-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* About Page Styles */
.about-page {
    padding: 4rem 0;
}

.about-page-content {
    display: grid;
    grid-template-columns: 15fr 2fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 4rem;
}

.about-featured-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 2rem;
}

.about-text-content {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-section-content {
    margin-bottom: 3rem;
}

.about-section-content h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-section-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-section-content ul {
    list-style: none;
    padding: 0;
}

.about-section-content li {
    margin-bottom: 1rem;
    padding-right: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

.about-section-content li::before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    right: 0;
    font-weight: 900;
    font-size: 1.2rem;
}

.about-cta {
    text-align: center;
    padding: 4rem 0;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    margin-top: 4rem;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 2rem;
    padding: 1rem 0;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.breadcrumbs a {
    color: var(--primary-color);
}

.breadcrumbs span {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* Page Header */
.page-header-wrapper {
    background: var(--bg-light);
    padding: 4rem 0;
    margin-bottom: 3rem;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Animations and Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .contact-container,
    .about-content,
    .about-page-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .recommendations-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .equipment-categories-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-navigation ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }
    
    .main-navigation ul.show {
        display: flex;
    }
    
    .main-navigation li {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .services-grid,
    .equipment-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form,
    .contact-info {
        padding: 2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .equipment-categories {
        gap: 0.5rem;
    }
    
    .category-filter {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .recommendations-container {
        grid-template-columns: 1fr;
    }
    
    .recommendation-item {
        padding: 2rem 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .step-icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }
    
    .testimonials-slider .slick-dots {
        bottom: -50px;
    }
    
    .testimonial-content {
        font-size: 1.1rem;
        padding: 2rem 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.8rem;
    }
    
    .pricing-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .pricing-price {
        font-size: 2.5rem;
    }
    
    .testimonial-content {
        font-size: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-button i {
        font-size: 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-detail {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .process-step {
        padding: 2rem 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin: 1rem auto 1.5rem;
    }
    
    .process-step h3 {
        font-size: 1.2rem;
    }
    
    .equipment-categories {
        justify-content: center;
    }
    
    .category-filter {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .cta-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-lg {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }
}

/* WordPress Required Classes */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    margin-bottom: 1rem;
}

.gallery-icon img {
    width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Gallery Section Styles */
.gallery-section {
    background: var(--light-color);
    padding: 8rem 0;
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    opacity: 0.03;
    z-index: 0;
}

.events-gallery-slider {
    position: relative;
    z-index: 1;
    margin-top: 4rem;
}

.gallery-slide {
    padding: 0 15px;
    position: relative;
}

.gallery-image {
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-image:hover {
    transform: scale(1.02);
}

.gallery-content {
    text-align: center;
    color: var(--light-color);
    padding: 2rem;
}

.gallery-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-color);
    font-weight: 700;
}

.gallery-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.gallery-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    color: var(--light-color);
    font-size: 1.5rem;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
}

.gallery-view-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.6);
    color: var(--light-color);
}

/* Slick Slider Customization for Gallery */
.events-gallery-slider .slick-dots {
    bottom: -60px;
}

.events-gallery-slider .slick-dots li button:before {
    font-size: 14px;
    color: var(--accent-color);
    opacity: 0.5;
}

.events-gallery-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--accent-color);
}

.events-gallery-slider .slick-prev,
.events-gallery-slider .slick-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    border: none;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.events-gallery-slider .slick-prev:hover,
.events-gallery-slider .slick-next:hover {
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(30, 115, 190, 0.4);
}

.events-gallery-slider .slick-prev {
    right: 60px;
    left: auto;
}

.events-gallery-slider .slick-next {
    left: 60px;
    right: auto;
}

.events-gallery-slider .slick-prev:before,
.events-gallery-slider .slick-next:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light-color);
    font-size: 18px;
    opacity: 1;
}

.events-gallery-slider .slick-prev:before {
    content: "\f054";
}

.events-gallery-slider .slick-next:before {
    content: "\f053";
}

/* Enhanced Testimonials Section */
.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-slider .slick-dots {
    bottom: -50px;
    text-align: center;
}

.testimonials-slider .slick-dots li {
    margin: 0 5px;
}

.testimonials-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--accent-color);
    opacity: 0.5;
    transition: var(--transition);
}

.testimonials-slider .slick-dots li.slick-active button:before,
.testimonials-slider .slick-dots li:hover button:before {
    opacity: 1;
    color: var(--accent-color);
}

.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-accent);
    border: none;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
    top: 50%;
    transform: translateY(-50%);
}

.testimonials-slider .slick-prev:hover,
.testimonials-slider .slick-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(30, 115, 190, 0.4);
}

.testimonials-slider .slick-prev {
    right: -70px;
    left: auto;
}

.testimonials-slider .slick-next {
    left: -70px;
    right: auto;
}

.testimonials-slider .slick-prev:before,
.testimonials-slider .slick-next:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light-color);
    font-size: 16px;
    opacity: 1;
}

.testimonials-slider .slick-prev:before {
    content: "\f054";
}

.testimonials-slider .slick-next:before {
    content: "\f053";
}

/* Fallback simple navigation for testimonials */
.simple-nav {
    text-align: center;
    margin-top: 2rem;
}

.simple-nav button {
    background: var(--gradient-accent);
    border: none;
    color: var(--light-color);
    padding: 1rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
    font-weight: 700;
}

.simple-nav button:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

/* Responsive Design for Gallery */
@media screen and (max-width: 992px) {
    .gallery-image {
        height: 300px;
    }
    
    .events-gallery-slider .slick-prev,
    .events-gallery-slider .slick-next {
        width: 45px;
        height: 45px;
    }
    
    .events-gallery-slider .slick-prev {
        right: 50px;
    }
    
    .events-gallery-slider .slick-next {
        left: 50px;
    }
}

@media screen and (max-width: 768px) {
    .gallery-image {
        height: 250px;
    }
    
    .gallery-title {
        font-size: 1.3rem;
    }
    
    .gallery-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .gallery-view-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .events-gallery-slider .slick-prev,
    .events-gallery-slider .slick-next {
        display: none !important;
    }
    
    .testimonials-slider .slick-prev,
    .testimonials-slider .slick-next {
        display: none !important;
    }
    
    .events-gallery-slider .slick-dots,
    .testimonials-slider .slick-dots {
        bottom: -40px;
    }
}

@media screen and (max-width: 576px) {
    .gallery-image {
        height: 220px;
    }
    
    .gallery-content {
        padding: 1.5rem;
    }
    
    .gallery-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .gallery-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}
.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}