/* ===== RESET AND BASE STYLES ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    direction: rtl;
    text-align: right;
}

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


/* ===== HEADER NAVIGATION ===== */

.main-header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 5px;
}

.logo span {
    font-size: 0.9rem;
    color: #e74c3c;
    font-weight: 600;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.contact-header-btn {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.contact-header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.contact-header-btn i {
    margin-left: 8px;
}


/* ===== HERO SLIDER ===== */

.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

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

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

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn.primary {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
}

.hero-btn.secondary {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


/* Slider Navigation */

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}


/* Slider Dots */

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}


/* ===== ABOUT SECTION ===== */

.about-section {
    padding: 100px 0;
    background: white;
    display: block;
    visibility: visible;
    opacity: 1;
}

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

.about-header .section-title {
    font-size: 3rem;
    color: #2c3e50;
    font-weight: 900;
    margin-bottom: 10px;
}

.about-header .painter-name {
    font-size: 1.8rem;
    color: #e74c3c;
    font-weight: 700;
}

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

.about-text {
    color: #34495e;
    line-height: 1.8;
}

.intro-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #e74c3c;
}

.detailed-description h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 30px 0 20px;
    font-weight: 700;
}

.detailed-description p {
    margin-bottom: 20px;
    text-align: justify;
}

.services-showcase {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-showcase h4 {
    font-size: 1.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.service-item h5 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-item p {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.5;
}


/* Why Choose Us Section */

.why-choose-us {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.why-choose-us h4 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #f39c12;
    font-weight: 700;
}

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

.advantage-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.advantage-item h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #f39c12;
    font-weight: 600;
}

.advantage-item p {
    line-height: 1.6;
    opacity: 0.9;
}


/* Services Section */

.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.services-header h2 {
    font-size: 3rem;
    color: #2c3e50;
    font-weight: 900;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 35px 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: linear-gradient(45deg, #3498db, #2980b9);
}

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

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

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

.service-card p {
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    color: #5d6d7e;
    position: relative;
    padding-right: 25px;
    text-align: right;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-btn {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}


/* SEO Content Section Styling */

.seo-content-section {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 1px solid #dee2e6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.seo-content-section h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 40px 0 20px;
    padding: 15px 0 15px 20px;
    border-right: 5px solid #e74c3c;
    background: linear-gradient(90deg, rgba(231, 76, 60, 0.1) 0%, transparent 100%);
    border-radius: 8px;
    position: relative;
}

.seo-content-section h4:first-child {
    margin-top: 0;
}

.seo-content-section h4:before {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 30px;
    background: #e74c3c;
    border-radius: 0 5px 5px 0;
}

.seo-content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 25px;
    text-align: justify;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border-left: 3px solid #28a745;
    transition: all 0.3s ease;
}

.seo-content-section p:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.seo-content-section h4[lang="en"] {
    border-right-color: #3498db;
    background: linear-gradient(90deg, rgba(52, 152, 219, 0.1) 0%, transparent 100%);
    direction: ltr;
    text-align: left;
    border-right: none;
    border-left: 5px solid #3498db;
    padding-left: 20px;
    padding-right: 0;
}

.seo-content-section h4[lang="en"]:before {
    left: -5px;
    right: auto;
    background: #3498db;
    border-radius: 5px 0 0 5px;
}

.keyword-highlight {
    background: linear-gradient(120deg, #ffd700 0%, #ffed4e 100%);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    color: #2c3e50;
    display: inline-block;
    margin: 0 2px;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.service-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.service-keywords .keyword-tag {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.service-keywords .keyword-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.content-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e74c3c 50%, transparent 100%);
    margin: 40px 0;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .seo-content-section {
        padding: 30px 20px;
        margin-top: 40px;
    }
    .seo-content-section h4 {
        font-size: 1.5rem;
        padding: 12px 0 12px 15px;
    }
    .seo-content-section p {
        font-size: 1rem;
        padding: 12px 15px;
    }
    .service-keywords {
        padding: 15px;
    }
    .service-keywords .keyword-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
}

.painter-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 30px;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content {
    margin-top: 80px;
}

.detailed-description {
    margin-bottom: 60px;
}

.detailed-description h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 40px 0 20px;
    border-right: 4px solid #e74c3c;
    padding-right: 20px;
}

.detailed-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}


/* Services Showcase */

.services-showcase h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
}

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

.service-item {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    background: white;
    border-color: #e74c3c;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

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

.service-item h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-item p {
    color: #555;
    line-height: 1.6;
}


/* Why Choose Us */

.why-choose-us {
    margin-top: 80px;
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 20px;
}

.why-choose-us h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.advantage {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.advantage i {
    font-size: 2rem;
    color: #e74c3c;
    margin-top: 5px;
    flex-shrink: 0;
}

.advantage-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.advantage-content p {
    color: #555;
    line-height: 1.6;
}


/* ===== WHAT I DO SECTION ===== */

.what-i-do {
    padding: 100px 0;
    background: #ecf0f1;
}

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

.section-subtitle {
    font-size: 1.5rem;
    color: #27ae60;
    font-weight: 600;
    margin-top: 10px;
}

.services-detailed-content {
    max-width: 1000px;
    margin: 0 auto;
}

.services-intro-text {
    margin-bottom: 60px;
}

.services-intro-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

.service-promise {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-promise h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.promise-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.promise-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.promise-list li:hover {
    background: #f8f9fa;
}

.promise-list i {
    color: #27ae60;
    font-size: 1.2rem;
}

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

.detailed-service {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.detailed-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

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

.detailed-service:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-content p {
    color: #555;
    line-height: 1.7;
}


/* ===== PORTFOLIO GALLERY ===== */

.portfolio-gallery {
    padding: 100px 0;
    background: white;
}

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

.gallery-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-top: 15px;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f8f9fa;
    border: 2px solid #ecf0f1;
    color: #2c3e50;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

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

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

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

.overlay-content {
    color: white;
    padding: 20px;
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.overlay-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.overlay-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.view-btn,
.call-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.view-btn:hover,
.call-btn:hover {
    background: white;
    color: #e74c3c;
    transform: scale(1.1);
}

.load-more-container {
    text-align: center;
    margin-bottom: 60px;
}

.load-more-btn {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.services-cta-container {
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
}

.services-cta-container h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.services-cta-container p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

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

.services-btn,
.quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.services-btn {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
}

.quote-btn {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
}

.services-btn:hover,
.quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* ===== BLOG SECTION ===== */

.blog-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.blog-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-top: 15px;
}

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

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(231, 76, 60, 0.9);
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.blog-date .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.blog-date .month {
    display: block;
    font-size: 0.9rem;
}

.blog-content {
    padding: 30px;
}

.blog-category {
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #e74c3c;
}

.blog-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #777;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #c0392b;
    text-decoration: underline;
}

.blog-cta {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.blog-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.blog-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}


/* ===== CONTACT SECTION ===== */

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

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

.contact-header .section-title {
    color: white;
}

.contact-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-top: 15px;
}

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

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-benefits li:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-benefits i {
    color: #f39c12;
    font-size: 1.2rem;
}

.service-areas-contact h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.areas-tags span {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.main-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.phone-contact {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
}

.whatsapp-contact {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.btn-content strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.btn-content span {
    opacity: 0.9;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

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

.feature-item i {
    font-size: 1.5rem;
    color: #f39c12;
}

.feature-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.emergency-contact {
    background: rgba(231, 76, 60, 0.2);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.emergency-contact h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.emergency-contact p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.emergency-btn {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.emergency-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}


/* Customer Reviews */

.customer-reviews {
    background: rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.customer-reviews h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

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

.review-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.stars i {
    color: #f39c12;
    font-size: 1.1rem;
}

.review-item p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
}

.reviewer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviewer .name {
    font-weight: 700;
    font-size: 1.1rem;
}

.reviewer .location {
    opacity: 0.8;
    font-size: 0.9rem;
}


/* ===== FLOATING CONTACTS ===== */

.floating-contacts {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.phone-btn {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.whatsapp-btn {
    background: linear-gradient(45deg, #25d366, #128c7e);
}

.tiktok-btn {
    background: linear-gradient(45deg, #000000, #333333);
}

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


/* ===== FOOTER ===== */

.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-logo p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.contact-item i {
    color: #e74c3c;
    width: 20px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #e74c3c;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: block;
}

.footer-links a:hover {
    color: #e74c3c;
    padding-right: 10px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy p {
    margin-bottom: 5px;
    opacity: 0.8;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn.phone {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.social-btn.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
}

.social-btn.tiktok {
    background: linear-gradient(45deg, #000000, #333333);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


/* ===== ANIMATIONS ===== */

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 1;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


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

@media (max-width: 1024px) {
    .header-content {
        padding: 10px 0;
    }
    .nav-menu {
        gap: 20px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}


/* حركة الأيقونة */

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: #e74c3c;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background: #e74c3c;
}


/* اظهار التوجل في الشاشات الصغيرة + اخفاء القائمة واظهارها */

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    .main-nav .nav-menu {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
    }
    .main-nav.active .nav-menu {
        display: flex;
    }
}


/* Mobile Navigation */

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    padding-top: 80px;
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-menu li {
    margin: 20px 0;
}

.mobile-nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    padding: 15px 30px;
    display: block;
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.mobile-contact-btn {
    margin-top: 30px;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.mobile-contact-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .main-nav {
        display: none;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.4rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .services-grid,
    .detailed-services-grid,
    .portfolio-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .portfolio-filter {
        flex-direction: column;
        align-items: center;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .floating-contacts {
        right: 20px;
        left: auto;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}


/* ===== SPECIALIZED PAGES STYLING ===== */


/* Villa Hero Styling */

.villa-hero,
.kitchen-hero,
.decorations-hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 80px;
}

.villa-keywords,
.kitchen-keywords,
.decorations-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.keyword-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}


/* Villa Services Styling */

.villa-services,
.kitchen-services,
.decorations-services {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.specialty-item,
.challenge-item,
.type-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.specialty-item:hover,
.challenge-item:hover,
.type-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.specialty-icon,
.challenge-icon,
.technique-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}


/* Process Steps */

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

.step {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}


/* Features Grid */

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

.feature-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-box i {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 15px;
}


/* Testimonials Grid */

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

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial .stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.testimonial .stars i {
    color: #f39c12;
}

.client-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}


/* Contact Sections */

.contact-villa,
.contact-kitchen,
.contact-decorations {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

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

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}


/* Kitchen Specific Styles */

.kitchen-types .type-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.type-image {
    flex: 0 0 150px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
}

.type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.type-content {
    flex: 1;
}

.type-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.type-features span {
    background: #e74c3c;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}


/* Color Palette Styling */

.colors-section {
    margin-top: 40px;
}

.color-category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.color-palette {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.color-sample {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 2px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.color-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
}


/* Process Timeline */

.process-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    align-items: center;
    justify-content: center;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.process-arrow {
    font-size: 2rem;
    color: #27ae60;
    font-weight: 700;
}


/* Tips Grid */

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

.tip-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 15px;
}


/* Decorations Specific Styles */

.decoration-types .decoration-type {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.type-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.type-features {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.type-features li {
    padding: 5px 0;
    padding-right: 20px;
    position: relative;
}

.type-features li:before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #27ae60;
    font-weight: 700;
}


/* Room Decorations */

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

.room-decoration {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.room-decoration:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.room-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.room-decoration:hover .room-image img {
    transform: scale(1.1);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.room-content {
    padding: 25px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.room-features span {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}


/* Techniques Grid */

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

.technique-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.technique-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


/* Styles Carousel */

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

.style-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.style-image {
    margin-bottom: 20px;
}

.style-preview {
    width: 100%;
    height: 80px;
    border-radius: 10px;
    margin-bottom: 15px;
}


/* Process Flow */

.process-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 180px;
}

.step-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}


/* Testimonials Masonry */

.testimonials-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.testimonial-block {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-block .stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.testimonial-block .stars i {
    color: #f39c12;
}


/* Contact Specialized */

.contact-wrapper {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-services {
    margin-bottom: 40px;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.service-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(5px);
}

.service-highlight i {
    color: #f39c12;
    font-size: 1.2rem;
}

.consultation-offer {
    background: rgba(46, 204, 113, 0.2);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.decorations-contact-btn,
.kitchen-contact-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.decorations-contact-btn:hover,
.kitchen-contact-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.decorations-contact-btn.phone .btn-icon,
.kitchen-contact-btn.phone .btn-icon {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.decorations-contact-btn.whatsapp .btn-icon,
.kitchen-contact-btn.whatsapp .btn-icon {
    background: linear-gradient(45deg, #25d366, #128c7e);
}

.urgent-service,
.emergency-kitchen {
    text-align: center;
    padding: 15px;
    background: rgba(231, 76, 60, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.urgent-service i,
.emergency-kitchen i {
    color: #f39c12;
    margin-left: 8px;
}

@media (max-width: 768px) {
    .villa-hero,
    .kitchen-hero,
    .decorations-hero {
        height: 70vh;
        padding: 0 20px;
    }
    .specialties-grid,
    .challenges-grid,
    .types-grid,
    .features-grid,
    .testimonials-grid,
    .tips-grid,
    .techniques-grid,
    .styles-carousel,
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .process-timeline,
    .process-flow {
        flex-direction: column;
    }
    .process-arrow {
        transform: rotate(90deg);
    }
    .kitchen-types .type-item {
        flex-direction: column;
    }
    .type-image {
        flex: none;
        width: 100%;
        height: 200px;
    }
    .contact-wrapper {
        padding: 30px 20px;
    }
    .services-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .hero-btn,
    .contact-btn,
    .services-btn,
    .quote-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .slider-btn.prev {
        left: 15px;
    }
    .slider-btn.next {
        right: 15px;
    }
    .keyword-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    .specialty-item,
    .challenge-item,
    .feature-box,
    .tip-item,
    .technique-item {
        padding: 20px;
    }
    .testimonial,
    .testimonial-block {
        padding: 20px;
    }
}


/* Blog Hero Section */

.blog-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.blog-hero h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f39c12;
    margin-bottom: 20px;
}

.blog-hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}


/* Blog Categories Section */

.blog-categories {
    padding: 80px 0;
    background: white;
}

.blog-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.category-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: #3498db;
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.category-card p {
    color: #7f8c8d;
    font-weight: 600;
}


/* Blog Article Styles */

.blog-article {
    padding: 120px 0 80px;
    background: white;
}

.article-header {
    margin-bottom: 50px;
}

.breadcrumb {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 30px;
    color: #7f8c8d;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.image-caption {
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 10px;
    font-style: italic;
}

.article-text {
    line-height: 1.8;
    color: #2c3e50;
}

.article-text .lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 30px;
    line-height: 1.7;
}

.article-text h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin: 40px 0 20px;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
}

.article-text h3 {
    font-size: 1.5rem;
    color: #34495e;
    margin: 30px 0 15px;
}

.article-text p {
    margin-bottom: 20px;
}

.article-text ul {
    margin: 20px 0;
    padding-right: 30px;
}

.article-text li {
    margin-bottom: 10px;
}

.cta-section {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.cta-btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary {
    background: #25d366;
    color: white;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* Related Articles */

.related-articles {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #ecf0f1;
}

.related-articles h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

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

.related-card {
    display: block;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-card h4 {
    padding: 20px;
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.4;
}


/* Contact Section in Blog */

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 18px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-btn.phone {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
}

.contact-btn.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}


/* What I Can Do Section */

.what-i-do {
    padding: 100px 0;
    background: white;
}

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

.section-header .section-title {
    font-size: 3rem;
    color: #2c3e50;
    font-weight: 900;
    margin-bottom: 15px;
}

.section-header .section-subtitle {
    font-size: 1.5rem;
    color: #e74c3c;
    font-weight: 600;
}

.services-detailed-content {
    display: block;
}

.services-intro-text {
    text-align: center;
    margin-bottom: 50px;
}

.services-intro-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-promise {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    border-left: 5px solid #28a745;
}

.service-promise h4 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.promise-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.promise-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.promise-list li:hover {
    transform: translateX(5px);
}

.promise-list li i {
    color: #28a745;
    font-size: 1.2rem;
}

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

.detailed-service {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.detailed-service:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

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

.detailed-service:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-content p {
    color: #7f8c8d;
    line-height: 1.7;
}


/* Portfolio Section */

.portfolio-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.portfolio-header h2 {
    font-size: 3rem;
    color: #2c3e50;
    font-weight: 900;
    margin-bottom: 20px;
}

.portfolio-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    color: #7f8c8d;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #3498db;
    border-color: #3498db;
    color: white;
}

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

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

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

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

.portfolio-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.portfolio-overlay p {
    font-size: 1rem;
    text-align: center;
    padding: 0 20px;
}


/* Blog Section */

.blog-section {
    padding: 100px 0;
    background: white;
}

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

.blog-header h2 {
    font-size: 3rem;
    color: #2c3e50;
    font-weight: 900;
    margin-bottom: 20px;
}

.blog-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}


/* Contact Section */

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

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

.contact-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #f39c12;
    font-weight: 700;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
    color: #f39c12;
    width: 30px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.contact-btn.phone {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
}

.contact-btn.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #f39c12;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ecf0f1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f39c12;
    background: rgba(255, 255, 255, 0.2);
}

.submit-btn {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}


/* Responsive Design */

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .detailed-services-grid {
        grid-template-columns: 1fr;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .section-header .section-title,
    .services-header h2,
    .portfolio-header h2,
    .blog-header h2,
    .contact-header h2 {
        font-size: 2rem;
    }
    .promise-list {
        grid-template-columns: 1fr;
    }
    .contact-buttons {
        justify-content: center;
    }
}


/* Force visibility for all main sections */

.about-section,
.what-i-do,
.portfolio-gallery,
.portfolio-section,
.services-section,
.blog-section,
.contact-section,
section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}


/* Hero slide fixes */

.hero-slide.active {
    opacity: 1 !important;
    display: flex !important;
}

.hero-slide:not(.active) {
    opacity: 1 !important;
    display: none !important;
}

.accordion {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.accordion-item {
    border-bottom: 1px solid #e1e1e1;
    background: #fff;
    transition: background 0.3s ease;
}

.accordion-button {
    background: #fafafa;
    color: #333;
    padding: 18px 20px;
    width: 100%;
    text-align: right;
    cursor: pointer;
    border: none;
    font-weight: 600;
    font-size: 17px;
    position: relative;
    transition: background 0.3s ease;
}

.accordion-button::after {
    content: "▾";
    position: absolute;
    left: 20px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-button::after {
    transform: rotate(180deg);
}

.accordion-item:hover .accordion-button {
    background: #f0f0f0;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #fff;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
    /* أو أعلى حسب المحتوى */
    padding: 15px 20px 20px;
}


/* header base style */

.main-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.2rem;
    margin: 0;
}

.logo span {
    font-size: 0.9rem;
    color: #555;
}

.main-nav .nav-menu {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.main-nav .nav-link {
    text-decoration: none;
    padding: 8px 12px;
    color: #333;
}

.mobile-menu-toggle {
    display: flex !important;
}

\\\\\\\\\\\\
/* ==== NAVBAR الأساسية ==== */

.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 12px 24px;
    border-radius: 0 0 12px 12px;
    transition: all 0.3s ease-in-out;
}


/* ==== روابط التنقل ==== */

.navbar-nav .nav-link {
    color: #2c3e50;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    background-color: #f5f5f5;
    color: #e74c3c;
}


/* active link */

.navbar-nav .nav-link.active {
    color: #e74c3c;
    font-weight: 600;
    background-color: #fceeee;
}


/* Disabled link */

.navbar-nav .nav-link.disabled {
    color: #ccc;
    pointer-events: none;
}


/* ==== DROPDOWN ==== */

.dropdown-menu {
    border-radius: 8px;
    border: none;
    padding: 8px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: #2c3e50;
    transition: all 0.25s ease;
}

.dropdown-item:hover {
    background-color: #f8f8f8;
    color: #e74c3c;
}


/* ==== TOGGLER ==== */

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232c3e50' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3e%3cpath d='M4 6h16M4 12h16M4 18h16'/%3e%3c/svg%3e");
}


/* ==== FORM SEARCH ==== */

form.d-flex {
    gap: 10px;
    align-items: center;
}

.form-control {
    border-radius: 30px;
    padding: 8px 18px;
    border: 1px solid #ccc;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.15rem rgba(231, 76, 60, 0.25);
}


/* زر البحث */

.btn.btn-outline-success {
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
    color: #e74c3c;
    border-color: #e74c3c;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn.btn-outline-success:hover {
    background-color: #e74c3c;
    color: #fff;
}


/* ==== Responsive Adjustments ==== */

@media (max-width: 768px) {
    .navbar-nav {
        margin-top: 10px;
    }
    .dropdown-menu {
        position: static !important;
        float: none;
    }
    form.d-flex {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .intro-description {
        padding: 30px 15px;
    }
    .intro-description p {
        font-size: 1rem;
        line-height: 1.8;
    }
    .intro-description strong {
        font-size: 1.1rem;
    }
}