/*
Theme Name: HundesalonBobi
Description: Professional WordPress theme for pet grooming salon with German interface and Persian admin
Author: Mahboub Hosseinzadeh
Author URI: https://blumita.com
Version: 1.0
License: GPL v2 or later
Text Domain: hundesalonbobi
Domain Path: /languages
*/

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



/* فقط انیمیشن‌های مجاز */
.btn, .service-card, .contact-card, .loading-spinner, .form-loading .btn::after, .gallery-loading.active i {
    animation-duration: initial !important;
    animation-delay: initial !important;
    animation-iteration-count: initial !important;
}

:root {
    --primary-orange: #ff6b35;
    --secondary-orange: #ff8c42;
    --light-orange: #ffb380;
    --dark-orange: #e5552e;
    --glossy-white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #fafafa;
    --shadow-light: rgba(255, 107, 53, 0.2);
    --shadow-dark: rgba(255, 107, 53, 0.4);
    --gradient-primary: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    --gradient-glossy: linear-gradient(145deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    padding-top: 85px; /* Account for fixed header */
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: var(--gradient-primary);
    box-shadow: 0 4px 20px var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glossy);
    pointer-events: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
    z-index: 2;
}

.site-logo img {
    max-height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.site-title {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-decoration: none;
}

/* ============================================================================
   HEADER STYLES - Improved Simple Header
   ============================================================================ */

.site-header {
    background: #ffffff;
    backdrop-filter: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.12);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

/* Site Branding */
.site-branding {
    flex-shrink: 0;
}

.site-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.site-logo img:hover {
    transform: scale(1.05);
}

.site-title-wrapper {
    text-align: left;
}

.site-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
}

.site-title a {
    color: #333;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.site-title a:hover {
    color: var(--primary-orange, #ff6b35);
}

.site-tagline {
    margin: 5px 0 0;
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

/* Main Navigation */
.main-navigation {
    background: none;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 14px;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a,
.main-navigation .current_page_item a {
    color: white;
    background: var(--primary-orange, #ff6b35);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.phone-link:hover {
    color: var(--primary-orange, #ff6b35);
    background: rgba(255, 107, 53, 0.1);
}

.phone-link i {
    font-size: 14px;
}

.phone-link:hover i {
    transform: scale(1.1);
}

.phone-number {
    font-size: 14px;
    display: none;
}

.header-cta {
    background: var(--primary-orange, #ff6b35) !important;
    color: white !important;
    border: none;
    padding: 10px 16px !important;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px !important;
    transition: all 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-cta:hover {
    background: var(--secondary-orange, #ff8c42) !important;
    transform: translateY(-1px);
}

.header-cta i {
    font-size: 12px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.menu-text {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.menu-toggle:hover .hamburger span {
    background: var(--primary-orange, #ff6b35);
}

.menu-toggle:hover .menu-text {
    color: var(--primary-orange, #ff6b35);
}

/* Hamburger Animation - روتیت حذف شد */
.hamburger.active span:nth-child(1) {
    /* انیمیشن rotate حذف شد */
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    /* انیمیشن rotate حذف شد */
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .header-content {
        padding: 12px 0;
        gap: 15px;
    }
    
    .site-title {
        font-size: 20px;
    }
    
    .site-tagline {
        font-size: 11px;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 15px 15px;
        padding: 20px;
    }
    
    .main-navigation.toggled {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .main-navigation a {
        padding: 15px 20px;
        text-align: center;
        border-radius: 12px;
        border: 2px solid transparent;
    }
    
    .main-navigation a:hover {
        border-color: var(--primary-orange, #ff6b35);
        background: rgba(255, 107, 53, 0.1);
        color: var(--primary-orange, #ff6b35);
        transform: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .phone-number {
        display: inline;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .header-cta {
        padding: 8px 15px !important;
        font-size: 12px;
    }
}

@media (min-width: 769px) {
    .phone-number {
        display: inline;
    }
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><path d="M0,0v50c250,50 750,50 1000,0V0z"/></svg>') repeat-x;
    background-size: 100% 100px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glossy);
    transition: opacity 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--shadow-dark);
}

.btn-white {
    background: white;
    color: var(--primary-orange);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    background: var(--background-light);
    color: var(--dark-orange);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-light);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
    display: block;
}

.service-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: bold;
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--background-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-orange);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

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

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

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.contact-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-top: 2px;
    width: 20px;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-dark);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.booking-form button {
    width: 100%;
    margin-top: 10px;
}

/* Landing Page Specific Styles */
.landing-page {
    overflow-x: hidden;
}

/* Hero Landing Enhanced */
.hero-landing {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

.hero-text {
    color: white;
}

.animated-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: slideInLeft 1s ease-out;
}

.animated-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 18px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.feature-item i {
    color: white;
    font-size: 1.1rem;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-orange);
}

.pulse {
    animation: pulse 2s infinite;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.8s both;
}

.hero-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.hero-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.hero-card img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    display: block;
}

.hero-card-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-orange);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-card-badge i {
    margin-left: 5px;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.floating-paw {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.paw-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.paw-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.paw-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

/* Services Showcase */
.services-showcase {
    padding: 100px 0;
    background: white;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-grid-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card-advanced {
    height: 400px;
    perspective: 1000px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 20px;
}

.service-card-advanced:hover .service-card-inner {
    /* انیمیشن rotate حذف شد */
}

.service-front,
.service-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-front {
    background: white;
    border: 3px solid var(--background-light);
}

.service-back {
    background: var(--gradient-primary);
    color: white;
    /* انیمیشن rotate حذف شد */
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px var(--shadow-light);
}

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

.service-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    background: var(--light-orange);
    color: var(--dark-orange);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-back .service-title {
    color: white;
}

.service-details h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.service-content {
    margin-bottom: 20px;
    line-height: 1.5;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* About Enhanced */
.about-enhanced {
    padding: 100px 0;
    background: var(--background-light);
}

.about-content-advanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-orange);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-orange);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Booking Section Advanced */
.booking-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.05)"><path d="M0,0v50c250,50 750,50 1000,0V0z"/></svg>') repeat-x;
    background-size: 100% 100px;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.booking-info {
    color: white;
}

.booking-info .section-title {
    color: white;
    margin-bottom: 15px;
}

.booking-info .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.contact-info-grid {
    display: grid;
    gap: 25px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-details p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-action {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.contact-action:hover {
    border-color: white;
}

.status-open {
    background: #28a745;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: none;
}

/* Advanced Booking Form */
.booking-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: var(--text-dark);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.advanced-booking-form input,
.advanced-booking-form select,
.advanced-booking-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-dark);
}

.advanced-booking-form input:focus,
.advanced-booking-form select:focus,
.advanced-booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 20px;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 15px;
    background: var(--background-light);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-note i {
    color: var(--primary-orange);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

/* Responsive Design for Landing Page */
@media (max-width: 1200px) {
    .hero-content {
        gap: 40px;
    }
    
    .about-content-advanced {
        gap: 60px;
    }
    
    .booking-wrapper {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .about-content-advanced {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .animated-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-advanced {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card-advanced {
        height: 350px;
    }
    
    .service-front,
    .service-back {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .animated-title {
        font-size: 2rem;
    }
    
    .hero-landing {
        min-height: 90vh;
    }
    
    .booking-form-wrapper,
    .contact-info {
        padding: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
}

/* WordPress Specific */
.alignwide {
    margin-left: auto;
    margin-right: auto;
    clear: both;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

.wp-block-group {
    margin-bottom: 2rem;
}

/* Customizer Styles */
.customize-control-title {
    font-weight: bold;
    margin-bottom: 5px;
}

/* Glossy Effects */
.glossy {
    position: relative;
    overflow: hidden;
}

.glossy::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.glossy:hover::after {
    opacity: 1;
    animation: shine 0.6s ease-in-out;
}

/* کامنت شده keyframes shine حذف شد */

/* Image Placeholder Styles */
.image-placeholder {
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 15px;
    min-height: 200px;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.image-placeholder span {
    font-size: 1.1rem;
    font-weight: 500;
}






/* ============================================================================
   IMPROVED HOVER EFFECTS - Consistent Orange Theme
   ============================================================================ */

/* Links General Hover */
a {
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
}

/* Text Links - Don't change color on hover unless styled */
p a,
.content a,
.entry-content a,
.widget a:not(.btn) {
    color: var(--primary-orange, #ff6b35);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.3s ease;
}

p a:hover,
.content a:hover,
.entry-content a:hover,
.widget a:not(.btn):hover {
    color: var(--secondary-orange, #ff8c42);
    text-decoration-color: var(--secondary-orange, #ff8c42);
    text-shadow: 0 0 1px rgba(255, 107, 53, 0.3);
}

/* Icon Links Hover */
a i,
.icon-link i {
    transition: all 0.3s ease;
}

a:hover i,
.icon-link:hover i {
    color: var(--primary-orange, #ff6b35) !important;
    transform: scale(1.1) translateY(-1px);
    text-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Service Cards Hover */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.service-card:hover .service-icon i {
    color: var(--primary-orange, #ff6b35);
    transform: scale(1.2); /* انیمیشن rotate حذف شد */
}

.service-card:hover h3 {
    color: var(--primary-orange, #ff6b35);
}

/* Footer Links Fix */
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--light-orange, #ffb380) !important;
    text-shadow: 0 0 8px rgba(255, 179, 128, 0.5);
    transform: translateX(3px);
}

.footer-section a:hover i {
    color: var(--light-orange, #ffb380) !important;
    transform: scale(1.15) translateY(-2px);
}

/* Social Icons Hover */
.social-icons a {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-orange, #ff6b35);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.social-icons a:hover i {
    color: white !important;
    transform: scale(1.1);
}

/* Contact Info Hover */
.contact-info a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-orange, #ff6b35);
}

.contact-info a:hover i {
    color: var(--primary-orange, #ff6b35) !important;
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Gallery Images Hover */
.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) saturate(1.2);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: rgba(255, 107, 53, 0.9);
}

/* Form Elements Hover */
input:hover,
textarea:hover,
select:hover {
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Card Elements Hover */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card:hover .card-icon i {
    color: var(--primary-orange, #ff6b35);
    transform: scale(1.15); /* انیمیشن rotate حذف شد */
}

/* Button Icon Hover */
.btn:hover i {
    transform: translateX(2px) scale(1.1);
}

.btn.glossy:hover i {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Breadcrumbs Hover */
.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumbs a:hover {
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* Menu Items Advanced Hover */
.menu-item:hover {
    transform: translateY(-1px);
}

/* Page Title Hover Effects */
.page-title a:hover {
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Logo Animation */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

.site-logo:hover img {
    animation: logoFloat 1s ease-in-out infinite;
}

/* Hover Disable for Active States */
.active:hover,
.current-menu-item:hover {
    transform: none !important;
}

/* Gallery Page Styles */
.gallery-page {
    margin-bottom: 60px;
}

/* Gallery Hero */
.gallery-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glossy);
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
}

.gallery-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.gallery-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gallery Filter */
.gallery-filter {
    margin-bottom: 50px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.filter-container h3 {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.2rem;
    white-space: nowrap;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: center;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid var(--light-orange);
    background: transparent;
    color: var(--primary-orange);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-light);
}

.view-options {
    display: flex;
    gap: 10px;
}

.view-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--light-orange);
    background: transparent;
    color: var(--primary-orange);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover,
.view-btn.active {
    background: var(--primary-orange);
    color: white;
}

/* Gallery Grid */
.gallery-main {
    margin-bottom: 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-grid.masonry-view {
    columns: 3;
    column-gap: 30px;
}

.gallery-grid.masonry-view .gallery-item {
    break-inside: avoid;
    margin-bottom: 30px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Before/After Containers */
.before-after-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 300px;
}

.before-after-image {
    position: relative;
    overflow: hidden;
}

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

.gallery-item:hover .before-after-image img {
    transform: scale(1.05);
}

.image-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.before .image-label {
    background: rgba(220, 53, 69, 0.9);
}

.after .image-label {
    background: rgba(40, 167, 69, 0.9);
}

.placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-orange);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
}

.placeholder i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Single Image Containers */
.single-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.gallery-item:hover .single-image-container img {
    transform: scale(1.05);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
    cursor: pointer;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-orange);
}

.gallery-overlay span {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    padding: 0 20px;
}

/* Load More Button */
.gallery-load-more {
    text-align: center;
}

/* Gallery Stats */
.gallery-stats {
    margin-bottom: 80px;
}

.gallery-stats h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.gallery-stats h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--light-orange);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-orange);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery CTA */
.gallery-cta {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.gallery-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glossy);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.gallery-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.gallery-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary-orange);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-orange);
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.1rem;
}

/* Gallery Responsive Design */
@media (max-width: 1024px) {
    .filter-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .view-options {
        justify-content: center;
    }
    
    .gallery-grid.masonry-view {
        columns: 2;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        padding: 60px 0;
    }
    
    .gallery-title {
        font-size: 2.8rem;
    }
    
    .gallery-subtitle {
        font-size: 1.1rem;
    }
    
    .gallery-filter {
        padding: 20px;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-grid.masonry-view {
        columns: 1;
    }
    
    .before-after-container {
        height: 250px;
    }
    
    .single-image-container {
        height: 250px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-cta {
        padding: 60px 30px;
    }
    
    .gallery-cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .gallery-hero {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .gallery-title {
        font-size: 2.2rem;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
    }
    
    .filter-btn {
        flex-direction: column;
        gap: 5px;
        padding: 12px 10px;
    }
    
    .before-after-container {
        grid-template-columns: 1fr;
        height: 400px;
    }
    
    .before-after-image {
        height: 200px;
    }
    
    .single-image-container {
        height: 200px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .gallery-cta {
        padding: 40px 20px;
    }
    
    .gallery-cta h2 {
        font-size: 1.8rem;
    }
    
    .gallery-cta p {
        font-size: 1.1rem;
    }
}

/* Gallery Animation Effects */
@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-item {
    animation: galleryFadeIn 0.5s ease-out;
}

.gallery-item.filtering {
    animation: galleryFadeIn 0.3s ease-out;
}

/* Lightbox Effect */
.gallery-item.lightbox-active {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 90vw;
    height: 90vh;
    max-width: 1200px;
    max-height: 800px;
}

.lightbox-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9998;
    display: none;
}

.lightbox-backdrop.active {
    display: block;
}



/* Smooth scroll for supported browsers */
html {
    scroll-behavior: smooth;
}

/* Additional responsive fixes */
@media (max-width: 480px) {
    body {
        padding-top: 75px;
    }
    
    .header-content {
        padding: 10px 0;
    }
    
    .site-title {
        font-size: 18px;
    }
    
    .header-cta {
        padding: 6px 12px !important;
        font-size: 11px;
    }
    
    .phone-link {
        padding: 6px 8px;
    }
}

/* Simple Page Styles - Consistent for all pages */
.about-page,
.contact-page,
.gallery-page,
.page {
    padding: 40px 0;
}

.page-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.page-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1.1rem;
    }
    
    .page-header {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
}

/* ===========================================
   LANDING PAGE STYLES
   =========================================== */

.landing-page {
    padding: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--dark-orange);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    padding-right: 20px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-link {
    color: white;
    font-size: 2rem;
    text-decoration: none;
}

.gallery-action {
    text-align: center;
    margin-top: 40px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-form h3,
.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    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: var(--primary-orange);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 20px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-item a {
    color: var(--primary-orange);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-links {
    margin-top: 40px;
}

.social-links h4 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
    font-size: 1.3rem;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-link.telegram {
    background: #0088cc;
}

.social-link.facebook {
    background: #1877f2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-orange);
}

.btn-outline {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: white;
}

.btn-full {
    width: 100%;
}

/* Responsive Design for Landing Page */
@media (max-width: 1024px) {
    .hero-image {
        width: 40%;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-image {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-text {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-section,
    .about-section,
    .gallery-section,
    .contact-section {
        padding: 60px 0;
    }
}
